diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/driver.md b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/driver.md index 223615f467..ce602e9e66 100644 --- a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/driver.md +++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/driver.md @@ -75,6 +75,28 @@ To do so, we'll extend sort `JSON` with some EVM specific syntax, and provide a - `finishTx` is a place-holder for performing necessary cleanup after a transaction. ```k + syntax InternalOp ::= "#deductBlobGas" + // -------------------------------------- + rule #deductBlobGas => .K ... + SCHED + EXCESS_BLOB_GAS + ACCTFROM + + ACCTFROM + BAL => BAL -Int Cblobfee(SCHED, EXCESS_BLOB_GAS, size(TVH)) + ... + + ListItem(TXID:Int) ... + + TXID + TVH + Blob + ... + + requires Ghasblobbasefee << SCHED >> + + rule #deductBlobGas => .K ... [owise] + syntax EthereumCommand ::= "startTx" // ------------------------------------ rule startTx => #finalizeBlock ... @@ -108,6 +130,7 @@ To do so, we'll extend sort `JSON` with some EVM specific syntax, and provide a rule loadTx(ACCTFROM) => #accessAccounts ACCTFROM #newAddr(ACCTFROM, NONCE) #precompiledAccountsSet(SCHED) + ~> #deductBlobGas ~> #loadAccessList(TA) ~> #checkCreate ACCTFROM VALUE ~> #create ACCTFROM #newAddr(ACCTFROM, NONCE) VALUE CODE @@ -128,24 +151,23 @@ To do so, we'll extend sort `JSON` with some EVM specific syntax, and provide a VALUE CODE TA - TVH ... - _ => TVH ACCTFROM BAL => BAL -Int (GLIMIT *Int #effectiveGasPrice(TXID)) NONCE - ACCTCODE ... _ => #if Ghaswarmcoinbase << SCHED >> #then SetItem(MINER) #else .Set #fi _ => SetItem(MINER) requires #hasValidInitCode(lengthBytes(CODE), SCHED) - andBool ACCTCODE ==K .Bytes + andBool #isValidTransaction(TXID, ACCTFROM) + rule loadTx(ACCTFROM) => #accessAccounts ACCTFROM ACCTTO #precompiledAccountsSet(SCHED) + ~> #deductBlobGas ~> #loadAccessList(TA) ~> #checkCall ACCTFROM VALUE ~> #call ACCTFROM ACCTTO ACCTTO VALUE VALUE DATA false @@ -174,16 +196,15 @@ To do so, we'll extend sort `JSON` with some EVM specific syntax, and provide a ACCTFROM BAL => BAL -Int (GLIMIT *Int #effectiveGasPrice(TXID)) NONCE => NONCE +Int 1 - ACCTCODE ... _ => #if Ghaswarmcoinbase << SCHED >> #then SetItem(MINER) #else .Set #fi _ => SetItem(MINER) requires ACCTTO =/=K .Account - andBool ACCTCODE ==K .Bytes + andBool #isValidTransaction(TXID, ACCTFROM) rule loadTx(ACCTFROM) => startTx ... - _ => EVMC_FAILURE + _ => EVMC_INVALID_BLOCK ListItem(_TXID:Int) REST => REST ACCTFROM diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm-types.md b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm-types.md index b401b2f2a4..07c24cb70f 100644 --- a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm-types.md +++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm-types.md @@ -337,8 +337,6 @@ Bytes helper functions - `#asInteger` will interpret a stack of bytes as a single arbitrary-precision integer (with MSB first). - `#asAccount` will interpret a stack of bytes as a single account id (with MSB first). Differs from `#asWord` only in that an empty stack represents the empty account, not account zero. -- `asAccountNotNil` will interpret a stack of bytes as a single account id (with MSB first), but will fail if the - stack is empty. - `#asByteStack` will split a single word up into a `Bytes`. - `#range(WS, N, W)` access the range of `WS` beginning with `N` of width `W`. - `#padToWidth(N, WS)` and `#padRightToWidth` make sure that a `Bytes` is the correct size. @@ -353,13 +351,10 @@ Bytes helper functions rule #asInteger(WS) => Bytes2Int(WS, BE, Unsigned) [concrete] syntax Account ::= #asAccount ( Bytes ) [symbol(#asAccount), function] - syntax AccountNotNil ::= #asAccountNotNil ( Bytes ) [symbol(#asAccountNotNil), function] - // ---------------------------------------------------------------------------------------- + // ---------------------------------------------------------------------------------- rule #asAccount(BS) => .Account requires lengthBytes(BS) ==Int 0 rule #asAccount(BS) => #asWord(BS) [owise] - rule #asAccountNotNil(BS) => #asWord(BS) requires lengthBytes(BS) >Int 0 - syntax Bytes ::= #asByteStack ( Int ) [symbol(#asByteStack), function, total] // ----------------------------------------------------------------------------- rule #asByteStack(W) => Int2Bytes(W, BE, Unsigned) [concrete] @@ -390,8 +385,7 @@ Accounts ```k syntax Account ::= ".Account" | Int - syntax AccountNotNil = Int - // -------------------------- + // ----------------------------------- syntax AccountCode ::= Bytes // ---------------------------- @@ -468,12 +462,12 @@ Productions related to transactions syntax TxData ::= LegacyTx | AccessListTx | DynamicFeeTx | BlobTx // ----------------------------------------------------------------- - syntax LegacyTx ::= LegacyTxData ( nonce: Int, gasPrice: Int, gasLimit: Int, to: Account, value: Int, data: Bytes ) [symbol(LegacyTxData)] - | LegacySignedTxData ( nonce: Int, gasPrice: Int, gasLimit: Int, to: Account, value: Int, data: Bytes, networkChainId: Int ) [symbol(LegacySignedTxData)] - syntax AccessListTx ::= AccessListTxData ( nonce: Int, gasPrice: Int, gasLimit: Int, to: Account, value: Int, data: Bytes, chainId: Int, accessLists: JSONs ) [symbol(AccessListTxData)] - syntax DynamicFeeTx ::= DynamicFeeTxData ( nonce: Int, priorityGasFee: Int, maxGasFee: Int, gasLimit: Int, to: Account, value: Int, data: Bytes, chainId: Int, accessLists: JSONs) [symbol(DynamicFeeTxData)] - syntax BlobTx ::= BlobTxData ( nonce: Int, priorityGasFee: Int, maxGasFee: Int, gasLimit: Int, to: AccountNotNil, value: Int, data: Bytes, chainId: Int, accessLists: JSONs, maxBlobGasFee: Int, blobVersionedHashes: List ) [symbol(BlobTxData)] - // --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + syntax LegacyTx ::= LegacyTxData ( nonce: Int, gasPrice: Int, gasLimit: Int, to: Account, value: Int, data: Bytes ) [symbol(LegacyTxData)] + | LegacySignedTxData ( nonce: Int, gasPrice: Int, gasLimit: Int, to: Account, value: Int, data: Bytes, networkChainId: Int ) [symbol(LegacySignedTxData)] + syntax AccessListTx ::= AccessListTxData ( nonce: Int, gasPrice: Int, gasLimit: Int, to: Account, value: Int, data: Bytes, chainId: Int, accessLists: JSONs ) [symbol(AccessListTxData)] + syntax DynamicFeeTx ::= DynamicFeeTxData ( nonce: Int, priorityGasFee: Int, maxGasFee: Int, gasLimit: Int, to: Account, value: Int, data: Bytes, chainId: Int, accessLists: JSONs) [symbol(DynamicFeeTxData)] + syntax BlobTx ::= BlobTxData ( nonce: Int, priorityGasFee: Int, maxGasFee: Int, gasLimit: Int, to: Account, value: Int, data: Bytes, chainId: Int, accessLists: JSONs, maxBlobGasFee: Int, blobVersionedHashes: List ) [symbol(BlobTxData)] + // --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- endmodule ``` diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm.md b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm.md index b2fd55a98f..1daf019e60 100644 --- a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm.md +++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm.md @@ -95,6 +95,8 @@ In the comments next to each cell, we've marked which component of the YellowPap // I_H* (block information) .List + 0 + 0 0 // I_Hp 0 // I_Ho @@ -635,6 +637,7 @@ After executing a transaction, it's necessary to have the effect of the substate MINER GAVAIL GUSED => GUSED +Gas GLIMIT -Gas GAVAIL + BLOB_GAS_USED => #if TXTYPE ==K Blob #then BLOB_GAS_USED +Int Ctotalblob(SCHED, size(TVH)) #else BLOB_GAS_USED #fi GPRICE 0 @@ -647,66 +650,15 @@ After executing a transaction, it's necessary to have the effect of the substate MINBAL => MINBAL +Int (GLIMIT -Int GAVAIL) *Int (GPRICE -Int BFEE) ... - ListItem(TXID:Int) REST => REST + ListItem(MSGID:Int) REST => REST - TXID - GLIMIT - ... - - requires ORG =/=Int MINER andBool notBool Ghasblobbasefee << SCHED >> - - rule #finalizeTx(false => true) ... - true - BFEE - SCHED - ORG - MINER - GAVAIL - GUSED => GUSED +Gas GLIMIT -Gas GAVAIL - GPRICE - 0 - EXCESS_BLOB_GAS - - ORG - ORGBAL => ORGBAL +Int GAVAIL *Int GPRICE -Int #calcBlobFee(EXCESS_BLOB_GAS, size(TVH)) - ... - - - MINER - MINBAL => MINBAL +Int (GLIMIT -Int GAVAIL) *Int (GPRICE -Int BFEE) - ... - - ListItem(TXID:Int) REST => REST - - TXID + MSGID GLIMIT TVH + TXTYPE ... - requires ORG =/=Int MINER andBool Ghasblobbasefee << SCHED >> - - rule #finalizeTx(false => true) ... - true - SCHED - BFEE - ACCT - ACCT - GAVAIL - GUSED => GUSED +Gas GLIMIT -Gas GAVAIL - GPRICE - 0 - - ACCT - BAL => BAL +Int GLIMIT *Int GPRICE -Int (GLIMIT -Int GAVAIL) *Int BFEE - ... - - ListItem(MsgId:Int) REST => REST - - MsgId - GLIMIT - ... - - requires notBool Ghasblobbasefee << SCHED >> + requires ORG =/=Int MINER rule #finalizeTx(false => true) ... true @@ -716,28 +668,28 @@ After executing a transaction, it's necessary to have the effect of the substate ACCT GAVAIL GUSED => GUSED +Gas GLIMIT -Gas GAVAIL + BLOB_GAS_USED => #if TXTYPE ==K Blob #then BLOB_GAS_USED +Int Ctotalblob(SCHED, size(TVH)) #else BLOB_GAS_USED #fi GPRICE 0 - EXCESS_BLOB_GAS ACCT - BAL => BAL +Int GLIMIT *Int GPRICE -Int (GLIMIT -Int GAVAIL) *Int BFEE -Int #calcBlobFee(EXCESS_BLOB_GAS, size(TVH)) + BAL => BAL +Int GLIMIT *Int GPRICE -Int (GLIMIT -Int GAVAIL) *Int BFEE ... - ListItem(MsgId:Int) REST => REST + ListItem(MSGID:Int) REST => REST - MsgId + MSGID GLIMIT TVH + TXTYPE ... - requires Ghasblobbasefee << SCHED >> rule #finalizeTx(false => true) ... false - ListItem(MsgId:Int) REST => REST + ListItem(MSGID:Int) REST => REST - MsgId + MSGID ... @@ -762,6 +714,63 @@ After executing a transaction, it's necessary to have the effect of the substate rule #deleteAccounts(.List) => .K ... ``` +### Blobs + +- `#validateBlockBlobs COUNT TXIDS`: Iterates through the transactions of the current block in order, counting up total versioned hashes (blob commitments) in the block. +Fails block validation by setting EVMC_INVALID_BLOCK if either: + 1. Total blob count exceeds maximum allowed (`Gmaxblobgas`) + 2. Calculated block excess blob gas doesn't match the expected value. +Terminates validation successfully when all conditions are met or when blob validation doesn't apply. +- `#checkTxVersionedHashes`: Validates versioned hashes recursively by checking if each hash starts with version byte `1`. +- `#finalizeBlockBlobs`:Updates state at block finalization by: + 1. Storing current excess blob gas and blob gas used for next block. + 2. Check if blob gas used is within limits. + +```k + syntax InternalOp ::= "#validateBlockBlobs" Int List [symbol(#validateBlockBlobs)] + // ---------------------------------------------------------------------------------- + rule #validateBlockBlobs COUNT (ListItem(IDX) TXIDS) => #validateBlockBlobs (COUNT +Int size(TVH)) TXIDS ... + SCHED + + IDX + TVH + ... + + requires Ghasblobbasefee << SCHED >> + + rule #validateBlockBlobs COUNT .List => .K ... + _ => EVMC_INVALID_BLOCK + _ => .List + SCHED + EXCESS_BLOB_GAS + PREV_EXCESS_BLOB_GAS + PREV_BLOB_GAS_USED + requires Ghasblobbasefee << SCHED >> + andBool ( Ctotalblob(SCHED, COUNT) >Int Gmaxblobgas < SCHED > + orBool notBool EXCESS_BLOB_GAS ==Int Cexcessblob(SCHED, PREV_EXCESS_BLOB_GAS, PREV_BLOB_GAS_USED)) + + rule #validateBlockBlobs _COUNT _TXIDS => .K ... [owise] + + syntax InternalOp ::= "#finalizeBlockBlobs" [symbol(#finalizeBlockBlobs)] + // ------------------------------------------------------------------------- + rule #finalizeBlockBlobs => .K ... + SCHED + BLOB_GAS_USED + EXCESS_BLOB_GAS + _ => EXCESS_BLOB_GAS + _ => BLOB_GAS_USED + requires ( Ghasblobbasefee << SCHED >> andBool BLOB_GAS_USED <=Int Gmaxblobgas < SCHED > ) + orBool notBool Ghasblobbasefee << SCHED >> + + rule #finalizeBlockBlobs => #end EVMC_INVALID_BLOCK ... [owise] + + syntax Bool ::= #checkTxVersionedHashes (List) [function, symbol(#checkTxVersionedHashes)] + // ------------------------------------------------------------------------------------------ + rule #checkTxVersionedHashes (.List) => true + rule #checkTxVersionedHashes ( ListItem(VH:Bytes) TVH) => #checkTxVersionedHashes(TVH) requires VH[0] ==Int 1 + rule #checkTxVersionedHashes ( ListItem(VH:Bytes) _ ) => false requires notBool VH[0] ==Int 1 +``` + ### Block processing - `#startBlock` is used to signal that we are about to start mining a block and block initialization should take place (before transactions are executed). @@ -771,15 +780,19 @@ After executing a transaction, it's necessary to have the effect of the substate ```k syntax EthereumCommand ::= "#startBlock" // ---------------------------------------- - rule #startBlock => #executeBeaconRoots ... + rule #startBlock => #validateBlockBlobs 0 TXS ~> #executeBeaconRoots ... _ => 0 + _ => 0 _ => .List _ => #padToWidth(256, .Bytes) + TXS syntax EthereumCommand ::= "#finalizeBlock" | #rewardOmmers ( JSONs ) [symbol(#rewardOmmers)] // -------------------------------------------------------------------------- - rule #finalizeBlock => #if Ghaswithdrawals << SCHED >> #then #finalizeWithdrawals #else .K #fi ~> #rewardOmmers(OMMERS) ... + rule #finalizeBlock => #if Ghaswithdrawals << SCHED >> #then #finalizeWithdrawals #else .K #fi + ~> #rewardOmmers(OMMERS) + ~> #finalizeBlockBlobs ... SCHED [ OMMERS ] MINER @@ -985,43 +998,6 @@ These are just used by the other operators for shuffling local execution state a andBool Gemptyisnonexistent << SCHED >> ``` -- `#calcBlobFee` will compute the blob fee as specified by EIPs 4844 and will be deducted from the sender balance before transaction execution -```k - syntax Int ::= #calcBlobFee( Int, Int ) [symbol(#calcBlobFee), function] - // ------------------------------------------------------------------------ - rule #calcBlobFee(EXCESS_BLOBGAS, BLOB_VERSIONED_HASHES_SIZE) => #totalBlobGas(BLOB_VERSIONED_HASHES_SIZE) *Int #baseFeePerBlobGas(EXCESS_BLOBGAS) -``` - -- `#totalBlobGas` will compute the total gas used by the blob as specified by EIPs 4844 - -```k - syntax Int ::= #totalBlobGas( Int ) [symbol(#totalBlobGas), function] - // --------------------------------------------------------------------- - syntax Int ::= "GAS_PER_BLOB" [macro] - rule GAS_PER_BLOB => 131072 - rule #totalBlobGas(BLOB_VERSIONED_HASHES_SIZE) => GAS_PER_BLOB *Int BLOB_VERSIONED_HASHES_SIZE -``` - -- `#baseFeePerBlobGas` will compute the blob base fee as specified by EIPs 4844 and 7516 - -```k - syntax Int ::= #baseFeePerBlobGas( Int ) [symbol(#baseFeePerBlobGas), function] - // ------------------------------------------------------------------------------- - rule #baseFeePerBlobGas(EXCESS_BLOBGAS) => #fakeExponential(MIN_BASE_FEE_PER_BLOB_GAS, EXCESS_BLOBGAS, BLOB_BASE_FEE_UPDATE_FRACTION) - syntax Int ::= "MIN_BASE_FEE_PER_BLOB_GAS" [macro] | "BLOB_BASE_FEE_UPDATE_FRACTION" [macro] - rule MIN_BASE_FEE_PER_BLOB_GAS => 1 - rule BLOB_BASE_FEE_UPDATE_FRACTION => 3338477 - - syntax Int ::= #fakeExponential(Int, Int, Int) [symbol(#fakeExponential), function] - | #fakeExponential(Int, Int, Int, Int, Int) [function] - // ------------------------------------------------------------------- - rule #fakeExponential(FACTOR, NUMER, DENOM) => #fakeExponential(1, 0, FACTOR *Int DENOM, NUMER, DENOM) - - rule #fakeExponential(I, OUTPUT, ACCUM, NUMER, DENOM) - => #fakeExponential(I +Int 1, OUTPUT +Int ACCUM, ACCUM *Int NUMER /Int (DENOM *Int I), NUMER, DENOM) requires ACCUM >Int 0 - rule #fakeExponential(_, OUTPUT, _, _, DENOM) => OUTPUT /Int DENOM [owise] -``` - ### Invalid Operator We use `INVALID` both for marking the designated invalid operator, and `UNDEFINED(_)` for garbage bytes in the input program. @@ -1159,7 +1135,7 @@ These operators make queries about the current execution state. rule GASPRICE => GPRICE ~> #push ... GPRICE rule GASLIMIT => GLIMIT ~> #push ... GLIMIT rule BASEFEE => BFEE ~> #push ... BFEE - rule BLOBBASEFEE => #baseFeePerBlobGas(EXCESS_BLOB_GAS) ~> #push ... EXCESS_BLOB_GAS requires notBool #rangeNegUInt64(EXCESS_BLOB_GAS) + rule BLOBBASEFEE => Cbasefeeperblob(SCHED, EXCESS_BLOB_GAS) ~> #push ... EXCESS_BLOB_GAS SCHED requires notBool #rangeNegUInt64(EXCESS_BLOB_GAS) syntax NullStackOp ::= "COINBASE" | "TIMESTAMP" | "NUMBER" | "DIFFICULTY" | "PREVRANDAO" // ---------------------------------------------------------------------------------------- diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/gas.md b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/gas.md index acc5e7ca06..bd081d6360 100644 --- a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/gas.md +++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/gas.md @@ -121,6 +121,10 @@ module GAS-FEES | Cbalance ( Schedule ) [symbol(Cbalance), function, total, smtlib(gas_Cbalance) ] | Cmodexp ( Schedule , Bytes , Int , Int , Int ) [symbol(Cmodexp), function, total, smtlib(gas_Cmodexp) ] | Cinitcode ( Schedule , Int ) [symbol(Cinitcode), function, total, smtlib(gas_Cinitcode) ] + | Ctotalblob ( Schedule , Int ) [symbol(Ctotalblob), function, total, smtlib(gas_Ctotalblob) ] + | Cbasefeeperblob( Schedule , Int ) [symbol(Cbasefeeperblob),function, total, smtlib(gas_Cbasefeeperblob) ] + | Cblobfee ( Schedule , Int , Int ) [symbol(Cblobfee), function, total, smtlib(gas_Cblobfee) ] + | Cexcessblob ( Schedule , Int , Int ) [symbol(Cexcessblob), function, total, smtlib(gas_Cexcessblob) ] // ------------------------------------------------------------------------------------------------------------------------------------------ rule [Cgascap]: Cgascap(SCHED, GCAP:Int, GAVAIL:Int, GEXTRA) @@ -208,6 +212,24 @@ module GAS-FEES rule [Cinitcode.new]: Cinitcode(SCHED, INITCODELEN) => Ginitcodewordcost < SCHED > *Int ( INITCODELEN up/Int 32 ) requires Ghasmaxinitcodesize << SCHED >> [concrete] rule [Cinitcode.old]: Cinitcode(SCHED, _) => 0 requires notBool Ghasmaxinitcodesize << SCHED >> [concrete] + rule [Ctotalblob]: Ctotalblob(SCHED, BLOB_VERSIONED_HASHES_SIZE) => Gperblob < SCHED > *Int BLOB_VERSIONED_HASHES_SIZE + + rule [Cbasefeeperblob]: Cbasefeeperblob(SCHED, EXCESS_BLOB_GAS) => #fakeExponential(Gminbasefee < SCHED >, EXCESS_BLOB_GAS, Blobbasefeeupdatefraction < SCHED >) + + rule [Cblobfee]: Cblobfee(SCHED, EXCESS_BLOB_GAS, BLOB_VERSIONED_HASHES_SIZE) => Ctotalblob(SCHED, BLOB_VERSIONED_HASHES_SIZE) *Int Cbasefeeperblob(SCHED, EXCESS_BLOB_GAS) + + rule [Cexcessblob]: Cexcessblob(SCHED, EXCESS_BLOB_GAS, BLOB_GAS_USED) => EXCESS_BLOB_GAS +Int BLOB_GAS_USED -Int Gtargetblobgas < SCHED > requires Gtargetblobgas < SCHED > <=Int EXCESS_BLOB_GAS +Int BLOB_GAS_USED + rule [Cexcessblob.owise]: Cexcessblob(_, _, _ )=> 0 [owise] + + syntax Int ::= #fakeExponential(Int, Int, Int) [symbol(#fakeExponential), function] + | #fakeExponential(Int, Int, Int, Int, Int) [function] + // ------------------------------------------------------------------- + rule #fakeExponential(FACTOR, NUMER, DENOM) => #fakeExponential(1, 0, FACTOR *Int DENOM, NUMER, DENOM) + + rule #fakeExponential(I, OUTPUT, ACCUM, NUMER, DENOM) + => #fakeExponential(I +Int 1, OUTPUT +Int ACCUM, ACCUM *Int NUMER /Int (DENOM *Int I), NUMER, DENOM) requires ACCUM >Int 0 + rule #fakeExponential(_, OUTPUT, _, _, DENOM) => OUTPUT /Int DENOM [owise] + syntax Bool ::= #accountEmpty ( AccountCode , Int , Int ) [function, total, symbol(accountEmpty)] // ------------------------------------------------------------------------------------------------- rule #accountEmpty(CODE, NONCE, BAL) => CODE ==K .Bytes andBool NONCE ==Int 0 andBool BAL ==Int 0 diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/network.md b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/network.md index 8480b3e720..df5a88dc69 100644 --- a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/network.md +++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/network.md @@ -32,6 +32,7 @@ The following codes all indicate that the VM ended execution with an exception, - `EVMC_STATIC_MODE_VIOLATION` indicates that a `STATICCALL` tried to change state. **TODO:** Avoid `_ERROR` suffix that suggests fatal error. - `EVMC_PRECOMPILE_FAILURE` indicates an errors in the precompiled contracts (eg. invalid points handed to elliptic curve functions). +- `EVMC_INVALID_BLOCK` indicates malformed or wrong transaction data or block data ```k syntax ExceptionalStatusCode ::= "EVMC_FAILURE" @@ -46,6 +47,7 @@ The following codes all indicate that the VM ended execution with an exception, | "EVMC_STATIC_MODE_VIOLATION" | "EVMC_PRECOMPILE_FAILURE" | "EVMC_NONCE_EXCEEDED" + | "EVMC_INVALID_BLOCK" // ------------------------------------------------------------- rule StatusCode2String(EVMC_FAILURE) => "EVMC_FAILURE" rule StatusCode2String(EVMC_INVALID_INSTRUCTION) => "EVMC_INVALID_INSTRUCTION" @@ -59,6 +61,7 @@ The following codes all indicate that the VM ended execution with an exception, rule StatusCode2String(EVMC_STATIC_MODE_VIOLATION) => "EVMC_STATIC_MODE_VIOLATION" rule StatusCode2String(EVMC_PRECOMPILE_FAILURE) => "EVMC_PRECOMPILE_FAILURE" rule StatusCode2String(EVMC_NONCE_EXCEEDED) => "EVMC_NONCE_EXCEEDED" + rule StatusCode2String(EVMC_INVALID_BLOCK) => "EVMC_INVALID_BLOCK" ``` ### Ending Codes diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/schedule.md b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/schedule.md index b1d01a4b14..be0de4cd77 100644 --- a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/schedule.md +++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/schedule.md @@ -48,8 +48,8 @@ A `ScheduleConst` is a constant determined by the fee schedule. | "Gblockhash" | "Gquadcoeff" | "maxCodeSize" | "Rb" | "Gquaddivisor" | "Gecadd" | "Gecmul" | "Gecpairconst" | "Gecpaircoeff" | "Gfround" | "Gcoldsload" | "Gcoldaccountaccess" | "Gwarmstorageread" | "Gaccesslistaddress" | "Gaccessliststoragekey" | "Rmaxquotient" | "Ginitcodewordcost" | "maxInitCodeSize" | "Gwarmstoragedirtystore" - | "Gpointeval" - // ---------------------------------------------------------------------------------------------------------------------------------------------------- + | "Gpointeval" | "Gmaxblobgas" | "Gminbasefee" | "Gtargetblobgas" | "Gperblob" | "Blobbasefeeupdatefraction" + // ------------------------------------------------------------------------------------------------------------------------------------------------------- ``` ### Default Schedule @@ -118,7 +118,12 @@ A `ScheduleConst` is a constant determined by the fee schedule. rule [GwarmstoragereadDefault]: Gwarmstorageread < DEFAULT > => 0 rule [GwarmstoragedirtystoreDefault]: Gwarmstoragedirtystore < DEFAULT > => 0 - rule [GpointevalDefault]: Gpointeval < DEFAULT > => 0 + rule [GpointevalDefault]: Gpointeval < DEFAULT > => 0 + rule [GmaxblobgasDefault]: Gmaxblobgas < DEFAULT > => 0 + rule [GtargetblobgasDefault]: Gtargetblobgas < DEFAULT > => 0 + rule [GminbasefeeDefault]: Gminbasefee < DEFAULT > => 0 + rule [BlobbasefeeupdatefractionDefault]: Blobbasefeeupdatefraction < DEFAULT > => 0 + rule [GperblobDefault]: Gperblob < DEFAULT > => 0 rule [GaccessliststoragekeyDefault]: Gaccessliststoragekey < DEFAULT > => 0 rule [GaccesslistaddressDefault]: Gaccesslistaddress < DEFAULT > => 0 @@ -393,11 +398,21 @@ A `ScheduleConst` is a constant determined by the fee schedule. ```k syntax Schedule ::= "CANCUN" [symbol(CANCUN_EVM), smtlib(schedule_CANCUN)] // -------------------------------------------------------------------------- - rule [GwarmstoragedirtystoreCancun]: Gwarmstoragedirtystore < CANCUN > => Gwarmstorageread < CANCUN > - rule [GpointevalCancun]: Gpointeval < CANCUN > => 50000 - rule [SCHEDCONSTCancun]: SCHEDCONST < CANCUN > => SCHEDCONST < SHANGHAI > + rule [GwarmstoragedirtystoreCancun]: Gwarmstoragedirtystore < CANCUN > => Gwarmstorageread < CANCUN > + rule [GpointevalCancun]: Gpointeval < CANCUN > => 50000 + rule [GmaxblobgasCancun]: Gmaxblobgas < CANCUN > => 786432 + rule [GtargetblobgasCancun]: Gtargetblobgas < CANCUN > => 393216 + rule [GminbasefeeCancun]: Gminbasefee < CANCUN > => 1 + rule [BlobbasefeeupdatefractionCancun]: Blobbasefeeupdatefraction < CANCUN > => 3338477 + rule [GperblobCancun]: Gperblob < CANCUN > => 131072 // 2 ** 17 + rule [SCHEDCONSTCancun]: SCHEDCONST < CANCUN > => SCHEDCONST < SHANGHAI > requires notBool ( SCHEDCONST ==K Gwarmstoragedirtystore orBool SCHEDCONST ==K Gpointeval + orBool SCHEDCONST ==K Gmaxblobgas + orBool SCHEDCONST ==K Gtargetblobgas + orBool SCHEDCONST ==K Gminbasefee + orBool SCHEDCONST ==K Blobbasefeeupdatefraction + orBool SCHEDCONST ==K Gperblob ) rule [GhastransientCancun]: Ghastransient << CANCUN >> => true diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/serialization.md b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/serialization.md index 2884d5e99d..cbff2e887d 100644 --- a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/serialization.md +++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/serialization.md @@ -411,7 +411,7 @@ Encoding => #rlpEncode( [ TC, TN, TF, TM, TG, #addrBytes(TT), TV, DATA, [TA] ] ) rule #rlpEncodeTxData( BlobTxData(TN, TF, TM, TG, TT, TV, DATA, CID, [TA], TB, TVH) ) - => #rlpEncode( [ CID, TN, TF, TM, TG, #addrBytes({TT}:>Account), TV, DATA, [TA], TB, [#parseList2JSONs(TVH)] ] ) + => #rlpEncode( [ CID, TN, TF, TM, TG, #addrBytes(TT), TV, DATA, [TA], TB, [#parseList2JSONs(TVH)] ] ) syntax Bytes ::= #rlpEncodeMerkleTree ( MerkleTree ) [symbol(#rlpEncodeMerkleTree), function] // --------------------------------------------------------------------------------------------- diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/state-utils.md b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/state-utils.md index 590505e22c..4e02210e21 100644 --- a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/state-utils.md +++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/state-utils.md @@ -51,6 +51,7 @@ module STATE-UTILS _ => .Set _ => .Set _ => .Set + _ => .List syntax EthereumCommand ::= "clearBLOCK" // --------------------------------------- @@ -251,6 +252,8 @@ The `"rlp"` key loads the block information. rule load "genesisRLP": [ [ HP, HO, HC, HR, HT, HE, HB, HD, HI, HL, HG, HS, HX, HM, HN, HF, WR, UB, EB, BR, .JSONs ], _, _, _, .JSONs ] => .K ... .List => ListItem(#blockHeaderHash(HP, HO, HC, HR, HT, HE, HB, HD, HI, HL, HG, HS, HX, HM, HN, HF, WR, UB, EB, BR)) ListItem(#asWord(HP)) + 0 => #asWord(EB) + 0 => #asWord(UB) rule load "genesisRLP": [ [ HP, HO, HC, HR, HT, HE:Bytes, HB, HD, HI, HL, HG, HS, HX, HM, HN, HF, WR, .JSONs ], _, _, _, .JSONs ] => .K ... .List => ListItem(#blockHeaderHash(HP, HO, HC, HR, HT, HE, HB, HD, HI, HL, HG, HS, HX, HM, HN, HF, WR)) ListItem(#asWord(HP)) ... @@ -545,6 +548,106 @@ The `"rlp"` key loads the block information. ``` +- `#isValidTransaction(TXID, SENDER)` - validate each defined transaction type. + 1. Check if the tx nonce matches the nonce of the sender. + 2. Check that the gas fees are properly structured and that the fee caps are not higher than the max amount. + 3. Check that there is enough balance for gas, value and blob fees (where applicable) and that the gas limit is within the block limits. + +```k + syntax Bool ::= #isValidTransaction( Int , Account ) [symbol(#isValidTransaction), function] + // -------------------------------------------------------------------------------------------- + rule [[ #isValidTransaction (TXID, ACCTFROM) => true ]] + SCHED + BASE_FEE + EXCESS_BLOB_GAS + BLOCK_GAS_LIMIT + + ACCTFROM + BAL + ACCTCODE + ACCTNONCE + ... + + + TXID + TX_NONCE + TX_GAS_LIMIT + ACCTTO + VALUE + TX_MAX_PRIORITY_FEE + TX_MAX_FEE + TX_MAX_BLOB_FEE + TVH + Blob + ... + + requires ACCTCODE ==K .Bytes + andBool notBool ACCTTO ==K .Account + andBool ACCTNONCE ==Int TX_NONCE + andBool BASE_FEE <=Int TX_MAX_FEE + andBool TX_MAX_PRIORITY_FEE <=Int TX_MAX_FEE + andBool size(TVH) >Int 0 andBool #checkTxVersionedHashes(TVH) + andBool TX_MAX_BLOB_FEE >=Int Cbasefeeperblob(SCHED, EXCESS_BLOB_GAS) + andBool BAL >=Int TX_GAS_LIMIT *Int TX_MAX_FEE +Int (Ctotalblob(SCHED, size(TVH)) *Int TX_MAX_BLOB_FEE) +Int VALUE + andBool TX_GAS_LIMIT <=Int BLOCK_GAS_LIMIT + andBool Ctotalblob(SCHED, size(TVH)) <=Int Gmaxblobgas < SCHED> + + rule [[ #isValidTransaction (TXID, ACCTFROM) => true ]] + BASE_FEE + BLOCK_GAS_LIMIT + + ACCTFROM + BAL + ACCTCODE + ACCTNONCE + ... + + + TXID + TX_NONCE + TX_GAS_LIMIT + VALUE + TX_MAX_PRIORITY_FEE + TX_MAX_FEE + DynamicFee + ... + + requires ACCTCODE ==K .Bytes + andBool ACCTNONCE ==Int TX_NONCE + andBool BASE_FEE <=Int TX_MAX_FEE + andBool TX_MAX_PRIORITY_FEE <=Int TX_MAX_FEE + andBool BAL >=Int TX_GAS_LIMIT *Int TX_MAX_FEE +Int VALUE + andBool TX_GAS_LIMIT <=Int BLOCK_GAS_LIMIT + + rule [[ #isValidTransaction (TXID, ACCTFROM) => true ]] + BASE_FEE + BLOCK_GAS_LIMIT + + ACCTFROM + BAL + ACCTCODE + ACCTNONCE + ... + + + TXID + TX_NONCE + TX_GAS_PRICE + TX_GAS_LIMIT + VALUE + TXTYPE + ... + + requires #dasmTxPrefix(TXTYPE) =Int TX_GAS_LIMIT *Int TX_GAS_PRICE +Int VALUE + andBool TX_GAS_LIMIT <=Int BLOCK_GAS_LIMIT + + rule #isValidTransaction (_, _) => false [owise] +``` + ### Block Identifiers ```k diff --git a/tests/execution-spec-tests/failing.llvm b/tests/execution-spec-tests/failing.llvm index 976195c469..91e7cd53ad 100644 --- a/tests/execution-spec-tests/failing.llvm +++ b/tests/execution-spec-tests/failing.llvm @@ -500,7 +500,134 @@ blockchain_tests/cancun/eip4788_beacon_root/beacon_root_contract/tx_to_beacon_ro blockchain_tests/cancun/eip4788_beacon_root/beacon_root_contract/tx_to_beacon_root_contract.json,tests/cancun/eip4788_beacon_root/test_beacon_root_contract.py::test_tx_to_beacon_root_contract[fork_Prague-tx_type_3-blockchain_test-call_beacon_root_contract_True-auto_access_list_False] blockchain_tests/cancun/eip4788_beacon_root/beacon_root_contract/tx_to_beacon_root_contract.json,tests/cancun/eip4788_beacon_root/test_beacon_root_contract.py::test_tx_to_beacon_root_contract[fork_Prague-tx_type_3-blockchain_test-call_beacon_root_contract_True-auto_access_list_True] blockchain_tests/cancun/eip4844_blobs/blob_txs_full/reject_valid_full_blob_in_block_rlp.json,* -blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,* +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-max_blobs-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_1-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_gas_subtraction_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_gas_subtraction_tx[fork_Prague-single_blob-blockchain_test_from_state_test--100_wei_mid_execution--tx_max_fee_per_blob_gas_multiplier_100-single_non_zero_byte_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_tx_attribute_calldata_opcodes.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_tx_attribute_calldata_opcodes[fork_Prague-blockchain_test_from_state_test-tx_gas_500000-empty-opcode_CALLDATACOPY] blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_tx_attribute_calldata_opcodes.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_tx_attribute_calldata_opcodes[fork_Prague-blockchain_test_from_state_test-tx_gas_500000-empty-opcode_CALLDATALOAD] blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_tx_attribute_calldata_opcodes.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_tx_attribute_calldata_opcodes[fork_Prague-blockchain_test_from_state_test-tx_gas_500000-empty-opcode_CALLDATASIZE] @@ -519,16 +646,414 @@ blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_tx_attribute_opcodes.json,te blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_tx_attribute_value_opcode.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_tx_attribute_value_opcode[fork_Prague-blockchain_test_from_state_test-tx_gas_500000-tx_value_0-opcode_CALLVALUE] blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_tx_attribute_value_opcode.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_tx_attribute_value_opcode[fork_Prague-blockchain_test_from_state_test-tx_gas_500000-tx_value_1-opcode_CALLVALUE] blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_tx_attribute_value_opcode.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_tx_attribute_value_opcode[fork_Prague-blockchain_test_from_state_test-tx_gas_500000-tx_value_1000000000000000000-opcode_CALLVALUE] -blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_type_tx_pre_fork.json,* -blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,* -blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,* -blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_blob_hash_versioning_multiple_txs.json,* -blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_blob_hash_versioning_single_tx.json,* -blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_blob_tx_contract_creation.json,* -blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,* -blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_normal_gas.json,* -blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_tx_blob_count.json,* -blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_tx_max_fee_per_blob_gas.json,* +blockchain_tests/cancun/eip4844_blobs/blob_txs/blob_type_tx_pre_fork.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_blob_type_tx_pre_fork[fork_ShanghaiToCancunAtTime15k-blockchain_test_from_state_test-one_blob_tx] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 1, 1, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 1, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 1, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 2, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 5)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 2, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 2, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 2, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 3, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 5)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1, 6)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 2, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 2, 2, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 2, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 2, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 2, 5)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 3, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 3, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 5)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 6)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1, 7)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 2, 2, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 2, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 2, 2, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 2, 2, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 2, 3, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 2, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 2, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 2, 5)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 2, 6)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 3, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 3, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 3, 5)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 4, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 5)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 6)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 7)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1, 8)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(1,)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 1, 1, 1, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 1, 1, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 1, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 1, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 2, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 2, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 2, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 2, 2, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 2, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2, 5)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 3, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 3, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 5)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 6)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2, 7)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(2,)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 1, 1, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 1, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 2, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 2, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 2, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 2, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 2, 2, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 2, 2, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 2, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 3, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 3, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 3, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 3, 2, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 3, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 3, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 5)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3, 6)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(3,)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 1, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 2, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 2, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 2, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 2, 2, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 3, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 3, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 3, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 4, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4, 5)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(4,)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(5, 1, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(5, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(5, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(5, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(5, 2, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(5, 2, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(5, 2, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(5, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(5, 3, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(5, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(5, 4)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(5,)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(6, 1, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(6, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(6, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(6, 2, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(6, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(6, 3)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(6,)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(7, 1, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(7, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(7, 2)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(7,)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(8, 1)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(8,)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx_combinations.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx_combinations[fork_Prague-blobs_per_tx_(9,)-blockchain_test--exact_balance_minus_1]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_1-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_100-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-no_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_one_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_0-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_14-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/insufficient_balance_blob_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_insufficient_balance_blob_tx[fork_Prague-blockchain_test_from_state_test--exact_balance_minus_1-tx_max_fee_per_blob_gas_multiplier_10000-single_zero_calldata-tx_value_1-tx_max_priority_fee_per_gas_7-tx_max_fee_per_gas_7-no_access_list] +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_blob_hash_versioning_multiple_txs.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_blob_hash_versioning_multiple_txs[fork_Prague-blockchain_test--multiple_blobs_single_bad_hash_1] +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_blob_hash_versioning_multiple_txs.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_blob_hash_versioning_multiple_txs[fork_Prague-blockchain_test--multiple_blobs_single_bad_hash_2] +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_blob_hash_versioning_multiple_txs.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_blob_hash_versioning_multiple_txs[fork_Prague-blockchain_test--multiple_blobs] +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_blob_hash_versioning_multiple_txs.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_blob_hash_versioning_multiple_txs[fork_Prague-blockchain_test--single_blob] +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_blob_hash_versioning_single_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_blob_hash_versioning_single_tx[fork_Prague-blockchain_test_from_state_test--multiple_blobs_single_bad_hash_1] +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_blob_hash_versioning_single_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_blob_hash_versioning_single_tx[fork_Prague-blockchain_test_from_state_test--multiple_blobs_single_bad_hash_2] +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_blob_hash_versioning_single_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_blob_hash_versioning_single_tx[fork_Prague-blockchain_test_from_state_test--multiple_blobs] +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_blob_hash_versioning_single_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_blob_hash_versioning_single_tx[fork_Prague-blockchain_test_from_state_test--single_blob] +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_blob_tx_contract_creation.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_blob_tx_contract_creation[fork_Prague-blockchain_test-] +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 1, 1, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 1, 1, 1, 2)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 1, 1, 3)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 1, 2, 2)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 1, 4)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 2, 3)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 1, 5)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 2, 2, 2)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 2, 4)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 3, 3)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 1, 6)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 2, 2, 3)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 2, 5)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 3, 4)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 1, 7)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 2, 2, 2, 2)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 2, 2, 4)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 2, 3, 3)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 2, 6)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 3, 5)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 4, 4)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 1, 8)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 2, 2, 2, 3)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 2, 2, 5)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 2, 3, 4)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 2, 7)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 3, 3, 3)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 3, 6)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 4, 5)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(1, 9)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(10,)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(2, 1, 1, 1, 1, 1, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(2, 2, 1, 1, 1, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(2, 2, 2, 1, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(2, 2, 2, 2, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(2, 2, 2, 2, 2)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(2, 2, 2, 4)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(2, 2, 3, 3)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(2, 2, 6)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(2, 3, 5)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(2, 4, 4)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(2, 8)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(3, 1, 1, 1, 1, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(3, 2, 1, 1, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(3, 2, 2, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(3, 2, 2, 2, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(3, 3, 1, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(3, 3, 2, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(3, 3, 2, 2)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(3, 3, 3, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(3, 3, 4)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(3, 7)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(4, 1, 1, 1, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(4, 2, 1, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(4, 2, 2, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(4, 2, 2, 2)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(4, 3, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(4, 3, 2, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(4, 3, 3)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(4, 4, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(4, 4, 2)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(4, 6)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(5, 1, 1, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(5, 2, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(5, 2, 2, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(5, 3, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(5, 3, 2)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(5, 4, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(5, 5)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(6, 1, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(6, 2, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(6, 2, 2)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(6, 3, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(6, 4)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(7, 1, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(7, 2, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(7, 3)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(8, 1, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(8, 2)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_block_blob_count.json,"tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_block_blob_count[fork_Prague-blobs_per_tx_(9, 1)-blockchain_test-]" +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_normal_gas.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_normal_gas[fork_Prague-blockchain_test_from_state_test-insufficient_max_fee_per_gas] +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_tx_blob_count.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_tx_blob_count[fork_Prague-too_few_blobs-blockchain_test_from_state_test] +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_tx_blob_count.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_tx_blob_count[fork_Prague-too_many_blobs-blockchain_test_from_state_test] +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_tx_max_fee_per_blob_gas.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_tx_max_fee_per_blob_gas[fork_Prague-insufficient_max_fee_per_blob_gas-blockchain_test-account_balance_modifier_1000000000] +blockchain_tests/cancun/eip4844_blobs/blob_txs/invalid_tx_max_fee_per_blob_gas.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_invalid_tx_max_fee_per_blob_gas[fork_Prague-invalid_max_fee_per_blob_gas-blockchain_test-account_balance_modifier_1000000000] blockchain_tests/cancun/eip4844_blobs/blob_txs/sufficient_balance_blob_tx_pre_fund_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_sufficient_balance_blob_tx_pre_fund_tx[fork_Prague-max_blobs-blockchain_test-sender_initial_balance_0-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-access_list] blockchain_tests/cancun/eip4844_blobs/blob_txs/sufficient_balance_blob_tx_pre_fund_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_sufficient_balance_blob_tx_pre_fund_tx[fork_Prague-max_blobs-blockchain_test-sender_initial_balance_0-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_14-no_access_list] blockchain_tests/cancun/eip4844_blobs/blob_txs/sufficient_balance_blob_tx_pre_fund_tx.json,tests/cancun/eip4844_blobs/test_blob_txs.py::test_sufficient_balance_blob_tx_pre_fund_tx[fork_Prague-max_blobs-blockchain_test-sender_initial_balance_0-tx_max_fee_per_blob_gas_multiplier_1-no_calldata-tx_value_0-tx_max_priority_fee_per_gas_0-tx_max_fee_per_gas_7-access_list] @@ -1406,14 +1931,445 @@ blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/correct_increasing_blob_ga blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/correct_increasing_blob_gas_costs.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_correct_increasing_blob_gas_costs[fork_Prague-parent_blobs_7-parent_excess_blobs_397-blockchain_test-new_blobs_1] blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/correct_increasing_blob_gas_costs.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_correct_increasing_blob_gas_costs[fork_Prague-parent_blobs_7-parent_excess_blobs_847-blockchain_test-new_blobs_1] blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_blob_gas_used_in_header.json,* -blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_above_target_change.json,* -blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,* -blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,* -blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,* -blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_non_multiple_excess_blob_gas.json,* -blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas_from_zero_on_blobs_above_target.json,* -blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,* -blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,* +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_above_target_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_above_target_change[fork_Prague-max_blobs_increase_more_than_expected-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_above_target_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_above_target_change[fork_Prague-zero_blobs_decrease_more_than_expected-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_0-header_excess_blobs_delta_-1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_0-header_excess_blobs_delta_-2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_0-header_excess_blobs_delta_-3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_0-header_excess_blobs_delta_-4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_0-header_excess_blobs_delta_-5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_0-header_excess_blobs_delta_-6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_0-header_excess_blobs_delta_1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_0-header_excess_blobs_delta_2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_0-header_excess_blobs_delta_3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_0-header_excess_blobs_delta_4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_0-header_excess_blobs_delta_5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_0-header_excess_blobs_delta_6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_1-header_excess_blobs_delta_-1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_1-header_excess_blobs_delta_-2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_1-header_excess_blobs_delta_-3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_1-header_excess_blobs_delta_-4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_1-header_excess_blobs_delta_-5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_1-header_excess_blobs_delta_-6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_1-header_excess_blobs_delta_1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_1-header_excess_blobs_delta_2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_1-header_excess_blobs_delta_3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_1-header_excess_blobs_delta_4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_1-header_excess_blobs_delta_5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_1-header_excess_blobs_delta_6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_2-header_excess_blobs_delta_-1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_2-header_excess_blobs_delta_-2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_2-header_excess_blobs_delta_-3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_2-header_excess_blobs_delta_-4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_2-header_excess_blobs_delta_-5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_2-header_excess_blobs_delta_-6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_2-header_excess_blobs_delta_1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_2-header_excess_blobs_delta_2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_2-header_excess_blobs_delta_3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_2-header_excess_blobs_delta_4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_2-header_excess_blobs_delta_5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_2-header_excess_blobs_delta_6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_3-header_excess_blobs_delta_-1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_3-header_excess_blobs_delta_-2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_3-header_excess_blobs_delta_-3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_3-header_excess_blobs_delta_-4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_3-header_excess_blobs_delta_-5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_3-header_excess_blobs_delta_-6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_3-header_excess_blobs_delta_1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_3-header_excess_blobs_delta_2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_3-header_excess_blobs_delta_3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_3-header_excess_blobs_delta_4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_3-header_excess_blobs_delta_5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_3-header_excess_blobs_delta_6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_4-header_excess_blobs_delta_-1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_4-header_excess_blobs_delta_-2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_4-header_excess_blobs_delta_-3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_4-header_excess_blobs_delta_-4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_4-header_excess_blobs_delta_-5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_4-header_excess_blobs_delta_-6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_4-header_excess_blobs_delta_1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_4-header_excess_blobs_delta_2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_4-header_excess_blobs_delta_3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_4-header_excess_blobs_delta_4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_4-header_excess_blobs_delta_5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_4-header_excess_blobs_delta_6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_5-header_excess_blobs_delta_-1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_5-header_excess_blobs_delta_-2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_5-header_excess_blobs_delta_-3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_5-header_excess_blobs_delta_-4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_5-header_excess_blobs_delta_-5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_5-header_excess_blobs_delta_-6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_5-header_excess_blobs_delta_1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_5-header_excess_blobs_delta_2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_5-header_excess_blobs_delta_3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_5-header_excess_blobs_delta_4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_5-header_excess_blobs_delta_5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_5-header_excess_blobs_delta_6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_6-header_excess_blobs_delta_-1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_6-header_excess_blobs_delta_-2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_6-header_excess_blobs_delta_-3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_6-header_excess_blobs_delta_-4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_6-header_excess_blobs_delta_-5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_6-header_excess_blobs_delta_-6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_6-header_excess_blobs_delta_1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_6-header_excess_blobs_delta_2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_6-header_excess_blobs_delta_3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_6-header_excess_blobs_delta_4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_6-header_excess_blobs_delta_5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_6-header_excess_blobs_delta_6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_7-header_excess_blobs_delta_-1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_7-header_excess_blobs_delta_-2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_7-header_excess_blobs_delta_-3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_7-header_excess_blobs_delta_-4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_7-header_excess_blobs_delta_-5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_7-header_excess_blobs_delta_-6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_7-header_excess_blobs_delta_1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_7-header_excess_blobs_delta_2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_7-header_excess_blobs_delta_3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_7-header_excess_blobs_delta_4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_7-header_excess_blobs_delta_5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_7-header_excess_blobs_delta_6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_8-header_excess_blobs_delta_-1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_8-header_excess_blobs_delta_-2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_8-header_excess_blobs_delta_-3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_8-header_excess_blobs_delta_-4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_8-header_excess_blobs_delta_-5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_8-header_excess_blobs_delta_-6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_8-header_excess_blobs_delta_1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_8-header_excess_blobs_delta_2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_8-header_excess_blobs_delta_3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_8-header_excess_blobs_delta_4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_8-header_excess_blobs_delta_5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_8-header_excess_blobs_delta_6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_9-header_excess_blobs_delta_-1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_9-header_excess_blobs_delta_-2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_9-header_excess_blobs_delta_-3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_9-header_excess_blobs_delta_-4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_9-header_excess_blobs_delta_-5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_9-header_excess_blobs_delta_-6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_9-header_excess_blobs_delta_1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_9-header_excess_blobs_delta_2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_9-header_excess_blobs_delta_3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_9-header_excess_blobs_delta_4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_9-header_excess_blobs_delta_5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_change.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_change[fork_Prague-parent_blobs_9-header_excess_blobs_delta_6-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_0-header_excess_blobs_delta_1-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_0-header_excess_blobs_delta_2-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_0-header_excess_blobs_delta_3-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_0-header_excess_blobs_delta_4-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_0-header_excess_blobs_delta_5-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_0-header_excess_blobs_delta_6-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_0-header_excess_blobs_delta_7-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_0-header_excess_blobs_delta_8-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_1-header_excess_blobs_delta_1-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_1-header_excess_blobs_delta_2-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_1-header_excess_blobs_delta_3-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_1-header_excess_blobs_delta_4-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_1-header_excess_blobs_delta_5-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_1-header_excess_blobs_delta_6-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_1-header_excess_blobs_delta_7-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_1-header_excess_blobs_delta_8-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_2-header_excess_blobs_delta_1-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_2-header_excess_blobs_delta_2-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_2-header_excess_blobs_delta_3-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_2-header_excess_blobs_delta_4-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_2-header_excess_blobs_delta_5-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_2-header_excess_blobs_delta_6-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_2-header_excess_blobs_delta_7-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_2-header_excess_blobs_delta_8-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_3-header_excess_blobs_delta_1-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_3-header_excess_blobs_delta_2-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_3-header_excess_blobs_delta_3-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_3-header_excess_blobs_delta_4-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_3-header_excess_blobs_delta_5-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_3-header_excess_blobs_delta_6-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_3-header_excess_blobs_delta_7-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_3-header_excess_blobs_delta_8-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_4-header_excess_blobs_delta_1-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_4-header_excess_blobs_delta_2-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_4-header_excess_blobs_delta_3-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_4-header_excess_blobs_delta_4-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_4-header_excess_blobs_delta_5-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_4-header_excess_blobs_delta_6-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_4-header_excess_blobs_delta_7-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_4-header_excess_blobs_delta_8-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_5-header_excess_blobs_delta_1-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_5-header_excess_blobs_delta_2-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_5-header_excess_blobs_delta_3-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_5-header_excess_blobs_delta_4-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_5-header_excess_blobs_delta_5-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_5-header_excess_blobs_delta_6-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_5-header_excess_blobs_delta_7-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_5-header_excess_blobs_delta_8-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_6-header_excess_blobs_delta_1-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_6-header_excess_blobs_delta_2-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_6-header_excess_blobs_delta_3-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_6-header_excess_blobs_delta_4-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_6-header_excess_blobs_delta_5-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_6-header_excess_blobs_delta_6-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_6-header_excess_blobs_delta_7-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_excess_blob_gas_target_blobs_increase_from_zero[fork_Prague-parent_blobs_6-header_excess_blobs_delta_8-blockchain_test-new_blobs_1-parent_excess_blobs_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_0-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_0-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_0-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_0-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_0-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_0-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_1-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_1-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_1-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_1-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_1-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_1-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_2-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_2-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_2-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_2-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_2-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_2-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_3-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_3-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_3-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_3-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_3-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_3-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_4-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_4-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_4-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_4-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_4-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_4-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_5-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_5-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_5-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_5-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_5-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_0-parent_blobs_5-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_0-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_0-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_0-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_0-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_0-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_0-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_1-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_1-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_1-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_1-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_1-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_1-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_2-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_2-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_2-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_2-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_2-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_2-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_3-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_3-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_3-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_3-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_3-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_3-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_4-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_4-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_4-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_4-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_4-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_4-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_5-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_5-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_5-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_5-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_5-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_5-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_0-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_0-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_0-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_0-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_0-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_0-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_1-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_1-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_1-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_1-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_1-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_1-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_2-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_2-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_2-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_2-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_2-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_2-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_3-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_3-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_3-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_3-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_3-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_3-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_4-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_4-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_4-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_4-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_4-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_4-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_5-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_5-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_5-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_5-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_5-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_2-parent_blobs_5-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_0-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_0-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_0-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_0-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_0-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_0-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_1-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_1-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_1-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_1-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_1-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_1-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_2-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_2-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_2-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_2-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_2-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_2-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_3-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_3-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_3-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_3-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_3-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_3-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_4-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_4-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_4-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_4-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_4-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_4-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_5-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_5-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_5-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_5-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_5-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_3-parent_blobs_5-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_0-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_0-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_0-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_0-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_0-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_0-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_1-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_1-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_1-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_1-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_1-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_1-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_2-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_2-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_2-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_2-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_2-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_2-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_3-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_3-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_3-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_3-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_3-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_3-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_4-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_4-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_4-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_4-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_4-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_4-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_5-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_5-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_5-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_5-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_5-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_4-parent_blobs_5-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_0-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_0-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_0-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_0-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_0-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_0-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_1-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_1-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_1-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_1-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_1-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_1-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_2-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_2-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_2-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_2-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_2-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_2-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_3-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_3-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_3-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_3-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_3-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_3-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_4-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_4-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_4-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_4-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_4-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_4-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_5-header_excess_blob_gas_18446744073708765184-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_5-header_excess_blob_gas_18446744073708896256-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_5-header_excess_blob_gas_18446744073709027328-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_5-header_excess_blob_gas_18446744073709158400-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_5-header_excess_blob_gas_18446744073709289472-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_negative_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_negative_excess_blob_gas[fork_Prague-parent_excess_blobs_5-parent_blobs_5-header_excess_blob_gas_18446744073709420544-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_non_multiple_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_non_multiple_excess_blob_gas[fork_Prague-parent_excess_blobs_7-parent_blobs_5-header_excess_blob_gas_delta_-1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_non_multiple_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_non_multiple_excess_blob_gas[fork_Prague-parent_excess_blobs_7-parent_blobs_5-header_excess_blob_gas_delta_-131071-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_non_multiple_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_non_multiple_excess_blob_gas[fork_Prague-parent_excess_blobs_7-parent_blobs_7-header_excess_blob_gas_delta_1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_non_multiple_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_non_multiple_excess_blob_gas[fork_Prague-parent_excess_blobs_7-parent_blobs_7-header_excess_blob_gas_delta_131071-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas_from_zero_on_blobs_above_target.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas_from_zero_on_blobs_above_target[fork_Prague-parent_blobs_7-blockchain_test-new_blobs_1-parent_excess_blobs_0-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas_from_zero_on_blobs_above_target.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas_from_zero_on_blobs_above_target[fork_Prague-parent_blobs_8-blockchain_test-new_blobs_1-parent_excess_blobs_0-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas_from_zero_on_blobs_above_target.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas_from_zero_on_blobs_above_target[fork_Prague-parent_blobs_9-blockchain_test-new_blobs_1-parent_excess_blobs_0-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_0-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_7-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_8-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_1-parent_blobs_9-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_6-parent_blobs_0-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_6-parent_blobs_1-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_6-parent_blobs_2-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_6-parent_blobs_3-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_6-parent_blobs_4-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_6-parent_blobs_5-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_6-parent_blobs_7-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_6-parent_blobs_8-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_static_excess_blob_gas.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_static_excess_blob_gas[fork_Prague-parent_excess_blobs_6-parent_blobs_9-blockchain_test-new_blobs_1] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_0-blockchain_test-new_blobs_0-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_0-blockchain_test-new_blobs_1-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_1-blockchain_test-new_blobs_0-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_1-blockchain_test-new_blobs_1-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_2-blockchain_test-new_blobs_0-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_2-blockchain_test-new_blobs_1-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_3-blockchain_test-new_blobs_0-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_3-blockchain_test-new_blobs_1-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_4-blockchain_test-new_blobs_0-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_4-blockchain_test-new_blobs_1-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_5-blockchain_test-new_blobs_0-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_5-blockchain_test-new_blobs_1-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_6-blockchain_test-new_blobs_0-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_6-blockchain_test-new_blobs_1-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_7-blockchain_test-new_blobs_0-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_7-blockchain_test-new_blobs_1-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_8-blockchain_test-new_blobs_0-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_8-blockchain_test-new_blobs_1-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_9-blockchain_test-new_blobs_0-header_excess_blob_gas_0] +blockchain_tests/cancun/eip4844_blobs/excess_blob_gas/invalid_zero_excess_blob_gas_in_header.json,tests/cancun/eip4844_blobs/test_excess_blob_gas.py::test_invalid_zero_excess_blob_gas_in_header[fork_Prague-parent_blobs_9-blockchain_test-new_blobs_1-header_excess_blob_gas_0] blockchain_tests/cancun/eip4844_blobs/point_evaluation_precompile_gas/point_evaluation_precompile_gas_usage.json,tests/cancun/eip4844_blobs/test_point_evaluation_precompile_gas.py::test_point_evaluation_precompile_gas_usage[fork_Prague-blockchain_test_from_state_test-proof_correct-exact_gas-call_type_CALL] blockchain_tests/cancun/eip4844_blobs/point_evaluation_precompile_gas/point_evaluation_precompile_gas_usage.json,tests/cancun/eip4844_blobs/test_point_evaluation_precompile_gas.py::test_point_evaluation_precompile_gas_usage[fork_Prague-blockchain_test_from_state_test-proof_correct-exact_gas-call_type_CALLCODE] blockchain_tests/cancun/eip4844_blobs/point_evaluation_precompile_gas/point_evaluation_precompile_gas_usage.json,tests/cancun/eip4844_blobs/test_point_evaluation_precompile_gas.py::test_point_evaluation_precompile_gas_usage[fork_Prague-blockchain_test_from_state_test-proof_correct-exact_gas-call_type_DELEGATECALL] diff --git a/tests/failing.llvm b/tests/failing.llvm index 8176867b1c..fdd390007e 100644 --- a/tests/failing.llvm +++ b/tests/failing.llvm @@ -1,31 +1,9 @@ -BlockchainTests/GeneralStateTests/Cancun/stEIP4844-blobtransactions/blobhashListBounds7.json,* -BlockchainTests/GeneralStateTests/Cancun/stEIP4844-blobtransactions/createBlobhashTx.json,* -BlockchainTests/GeneralStateTests/Cancun/stEIP4844-blobtransactions/emptyBlobhashList.json,* -BlockchainTests/GeneralStateTests/Cancun/stEIP4844-blobtransactions/wrongBlobhashVersion.json,* BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4788_beacon_root/beacon_root_transition.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/blob_gas_subtraction_tx.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/blob_type_tx_pre_fork.json,* +BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/blob_type_tx_pre_fork.json,src/GeneralStateTestsFiller/Pyspecs/cancun/eip4844_blobs/test_blob_txs.py::test_blob_type_tx_pre_fork[fork_ShanghaiToCancunAtTime15k-blockchain_test-one_blob_tx] BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/fork_transition_excess_blob_gas.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx_combinations.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx.json,* BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_blob_gas_used_in_header.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_multiple_txs.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_single_tx.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_blob_tx_contract_creation.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_block_blob_count.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_above_target_change.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_change.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_target_blobs_increase_from_zero.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_negative_excess_blob_gas.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_non_multiple_excess_blob_gas.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_normal_gas.json,* BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_post_fork_block_without_blob_fields.json,* BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_pre_fork_block_with_blob_fields.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas_from_zero_on_blobs_above_target.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_tx_blob_count.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_tx_max_fee_per_blob_gas.json,* -BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/invalid_zero_excess_blob_gas_in_header.json,* BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/precompile_before_fork.json,* BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/precompile_during_fork.json,* BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip4844_blobs/reject_valid_full_blob_in_block_rlp.json,* @@ -37,8 +15,3 @@ BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip6780_selfdestruct/self_destr BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_pre_existing.json,* BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_before_fork.json,* BlockchainTests/GeneralStateTests/Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_during_fork.json,* -BlockchainTests/GeneralStateTests/stEIP1559/lowFeeCap.json,* -BlockchainTests/GeneralStateTests/stEIP1559/lowGasLimit.json,lowGasLimit_d0g0v0_Cancun -BlockchainTests/GeneralStateTests/stEIP1559/lowGasPriceOldTypes.json,* -BlockchainTests/GeneralStateTests/stEIP1559/tipTooHigh.json,* -BlockchainTests/GeneralStateTests/stEIP1559/transactionIntinsicBug_Paris.json,* diff --git a/tests/failing/ContractCreationSpam_d0g0v0.json.expected b/tests/failing/ContractCreationSpam_d0g0v0.json.expected index af6b319865..2ebbf5ddc2 100644 --- a/tests/failing/ContractCreationSpam_d0g0v0.json.expected +++ b/tests/failing/ContractCreationSpam_d0g0v0.json.expected @@ -108,6 +108,12 @@ ListItem ( 16571357051919171647812252688150536926893680553418066239369932048252618811190 ) ListItem ( 0 ) + + 0 + + + 0 + 16571357051919171647812252688150536926893680553418066239369932048252618811190 diff --git a/tests/failing/static_callcodecallcodecall_110_OOGMAfter_2_d0g0v0.json.expected b/tests/failing/static_callcodecallcodecall_110_OOGMAfter_2_d0g0v0.json.expected index 8daec9ae0d..0936fd7513 100644 --- a/tests/failing/static_callcodecallcodecall_110_OOGMAfter_2_d0g0v0.json.expected +++ b/tests/failing/static_callcodecallcodecall_110_OOGMAfter_2_d0g0v0.json.expected @@ -108,6 +108,12 @@ ListItem ( 4746051719422293590722610549793911264493366370041112137154393734119990786967 ) ListItem ( 0 ) + + 0 + + + 0 + 4746051719422293590722610549793911264493366370041112137154393734119990786967 diff --git a/tests/specs/benchmarks/address00-spec.k b/tests/specs/benchmarks/address00-spec.k index 9ba1c43d59..05e69f0731 100644 --- a/tests/specs/benchmarks/address00-spec.k +++ b/tests/specs/benchmarks/address00-spec.k @@ -67,6 +67,7 @@ module ADDRESS00-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/bytes00-spec.k b/tests/specs/benchmarks/bytes00-spec.k index 496f5f41db..07449975f2 100644 --- a/tests/specs/benchmarks/bytes00-spec.k +++ b/tests/specs/benchmarks/bytes00-spec.k @@ -67,6 +67,7 @@ module BYTES00-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/dynamicarray00-spec.k b/tests/specs/benchmarks/dynamicarray00-spec.k index cc3a9b19fa..00dcc6a1c5 100644 --- a/tests/specs/benchmarks/dynamicarray00-spec.k +++ b/tests/specs/benchmarks/dynamicarray00-spec.k @@ -67,6 +67,7 @@ module DYNAMICARRAY00-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/ecrecover00-siginvalid-spec.k b/tests/specs/benchmarks/ecrecover00-siginvalid-spec.k index de36cac6f6..5adb54c051 100644 --- a/tests/specs/benchmarks/ecrecover00-siginvalid-spec.k +++ b/tests/specs/benchmarks/ecrecover00-siginvalid-spec.k @@ -67,6 +67,7 @@ module ECRECOVER00-SIGINVALID-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/ecrecover00-sigvalid-spec.k b/tests/specs/benchmarks/ecrecover00-sigvalid-spec.k index ced775b4b5..ec6189b1cc 100644 --- a/tests/specs/benchmarks/ecrecover00-sigvalid-spec.k +++ b/tests/specs/benchmarks/ecrecover00-sigvalid-spec.k @@ -67,6 +67,7 @@ module ECRECOVER00-SIGVALID-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/ecrecoverloop00-sig0-invalid-spec.k b/tests/specs/benchmarks/ecrecoverloop00-sig0-invalid-spec.k index 4978daa97b..72d85c1a8a 100644 --- a/tests/specs/benchmarks/ecrecoverloop00-sig0-invalid-spec.k +++ b/tests/specs/benchmarks/ecrecoverloop00-sig0-invalid-spec.k @@ -70,6 +70,7 @@ module ECRECOVERLOOP00-SIG0-INVALID-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/ecrecoverloop00-sig1-invalid-spec.k b/tests/specs/benchmarks/ecrecoverloop00-sig1-invalid-spec.k index cbdfbf79ea..dee7c1d776 100644 --- a/tests/specs/benchmarks/ecrecoverloop00-sig1-invalid-spec.k +++ b/tests/specs/benchmarks/ecrecoverloop00-sig1-invalid-spec.k @@ -70,6 +70,7 @@ module ECRECOVERLOOP00-SIG1-INVALID-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/ecrecoverloop00-sigs-valid-spec.k b/tests/specs/benchmarks/ecrecoverloop00-sigs-valid-spec.k index 76490afec7..e78c06c9bf 100644 --- a/tests/specs/benchmarks/ecrecoverloop00-sigs-valid-spec.k +++ b/tests/specs/benchmarks/ecrecoverloop00-sigs-valid-spec.k @@ -70,6 +70,7 @@ module ECRECOVERLOOP00-SIGS-VALID-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/ecrecoverloop02-sig0-invalid-spec.k b/tests/specs/benchmarks/ecrecoverloop02-sig0-invalid-spec.k index bfcc1f5a44..9dd7eafdd6 100644 --- a/tests/specs/benchmarks/ecrecoverloop02-sig0-invalid-spec.k +++ b/tests/specs/benchmarks/ecrecoverloop02-sig0-invalid-spec.k @@ -71,6 +71,7 @@ module ECRECOVERLOOP02-SIG0-INVALID-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/ecrecoverloop02-sig1-invalid-spec.k b/tests/specs/benchmarks/ecrecoverloop02-sig1-invalid-spec.k index 99469ca4e0..770c190962 100644 --- a/tests/specs/benchmarks/ecrecoverloop02-sig1-invalid-spec.k +++ b/tests/specs/benchmarks/ecrecoverloop02-sig1-invalid-spec.k @@ -71,6 +71,7 @@ module ECRECOVERLOOP02-SIG1-INVALID-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/ecrecoverloop02-sigs-valid-spec.k b/tests/specs/benchmarks/ecrecoverloop02-sigs-valid-spec.k index cf5cc13b37..8500ac2aa0 100644 --- a/tests/specs/benchmarks/ecrecoverloop02-sigs-valid-spec.k +++ b/tests/specs/benchmarks/ecrecoverloop02-sigs-valid-spec.k @@ -71,6 +71,7 @@ module ECRECOVERLOOP02-SIGS-VALID-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/encode-keccak00-spec.k b/tests/specs/benchmarks/encode-keccak00-spec.k index 1351846a29..1f90bdd962 100644 --- a/tests/specs/benchmarks/encode-keccak00-spec.k +++ b/tests/specs/benchmarks/encode-keccak00-spec.k @@ -67,6 +67,7 @@ module ENCODE-KECCAK00-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/encodepacked-keccak01-spec.k b/tests/specs/benchmarks/encodepacked-keccak01-spec.k index 7e1325a476..54ade387d3 100644 --- a/tests/specs/benchmarks/encodepacked-keccak01-spec.k +++ b/tests/specs/benchmarks/encodepacked-keccak01-spec.k @@ -67,6 +67,7 @@ module ENCODEPACKED-KECCAK01-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/keccak00-spec.k b/tests/specs/benchmarks/keccak00-spec.k index 8268f55e1c..20337bb720 100644 --- a/tests/specs/benchmarks/keccak00-spec.k +++ b/tests/specs/benchmarks/keccak00-spec.k @@ -67,6 +67,7 @@ module KECCAK00-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/overflow00-nooverflow-spec.k b/tests/specs/benchmarks/overflow00-nooverflow-spec.k index ccbf7c6319..5351c6d8db 100644 --- a/tests/specs/benchmarks/overflow00-nooverflow-spec.k +++ b/tests/specs/benchmarks/overflow00-nooverflow-spec.k @@ -67,6 +67,7 @@ module OVERFLOW00-NOOVERFLOW-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/overflow00-overflow-spec.k b/tests/specs/benchmarks/overflow00-overflow-spec.k index 4b1487d7cd..2a54debc01 100644 --- a/tests/specs/benchmarks/overflow00-overflow-spec.k +++ b/tests/specs/benchmarks/overflow00-overflow-spec.k @@ -67,6 +67,7 @@ module OVERFLOW00-OVERFLOW-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/requires01-a0gt0-spec.k b/tests/specs/benchmarks/requires01-a0gt0-spec.k index 0b2b8d51c5..d273af3b1a 100644 --- a/tests/specs/benchmarks/requires01-a0gt0-spec.k +++ b/tests/specs/benchmarks/requires01-a0gt0-spec.k @@ -67,6 +67,7 @@ module REQUIRES01-A0GT0-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/requires01-a0le0-spec.k b/tests/specs/benchmarks/requires01-a0le0-spec.k index d3bb0cc20d..36794c9989 100644 --- a/tests/specs/benchmarks/requires01-a0le0-spec.k +++ b/tests/specs/benchmarks/requires01-a0le0-spec.k @@ -67,6 +67,7 @@ module REQUIRES01-A0LE0-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/staticarray00-spec.k b/tests/specs/benchmarks/staticarray00-spec.k index dcadd9f133..53d1c0d93c 100644 --- a/tests/specs/benchmarks/staticarray00-spec.k +++ b/tests/specs/benchmarks/staticarray00-spec.k @@ -67,6 +67,7 @@ module STATICARRAY00-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/staticloop00-a0lt10-spec.k b/tests/specs/benchmarks/staticloop00-a0lt10-spec.k index 3e7f313f51..0679d4f60f 100644 --- a/tests/specs/benchmarks/staticloop00-a0lt10-spec.k +++ b/tests/specs/benchmarks/staticloop00-a0lt10-spec.k @@ -67,6 +67,7 @@ module STATICLOOP00-A0LT10-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/storagevar00-spec.k b/tests/specs/benchmarks/storagevar00-spec.k index d178b20aea..69086a4ae0 100644 --- a/tests/specs/benchmarks/storagevar00-spec.k +++ b/tests/specs/benchmarks/storagevar00-spec.k @@ -67,6 +67,7 @@ module STORAGEVAR00-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/storagevar01-spec.k b/tests/specs/benchmarks/storagevar01-spec.k index f58d32567b..19ae76c18e 100644 --- a/tests/specs/benchmarks/storagevar01-spec.k +++ b/tests/specs/benchmarks/storagevar01-spec.k @@ -67,6 +67,7 @@ module STORAGEVAR01-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/storagevar02-nooverflow-spec.k b/tests/specs/benchmarks/storagevar02-nooverflow-spec.k index ba90ba93c5..6f1a37072d 100644 --- a/tests/specs/benchmarks/storagevar02-nooverflow-spec.k +++ b/tests/specs/benchmarks/storagevar02-nooverflow-spec.k @@ -67,6 +67,7 @@ module STORAGEVAR02-NOOVERFLOW-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/storagevar02-overflow-spec.k b/tests/specs/benchmarks/storagevar02-overflow-spec.k index ca906a9067..28c56a1ef8 100644 --- a/tests/specs/benchmarks/storagevar02-overflow-spec.k +++ b/tests/specs/benchmarks/storagevar02-overflow-spec.k @@ -67,6 +67,7 @@ module STORAGEVAR02-OVERFLOW-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/storagevar03-spec.k b/tests/specs/benchmarks/storagevar03-spec.k index a28f913d3c..410bffc04e 100644 --- a/tests/specs/benchmarks/storagevar03-spec.k +++ b/tests/specs/benchmarks/storagevar03-spec.k @@ -67,6 +67,7 @@ module STORAGEVAR03-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/structarg00-spec.k b/tests/specs/benchmarks/structarg00-spec.k index 6fe5ee1f08..aec0f567ca 100644 --- a/tests/specs/benchmarks/structarg00-spec.k +++ b/tests/specs/benchmarks/structarg00-spec.k @@ -67,6 +67,7 @@ module STRUCTARG00-SPEC _ _ + ... _ diff --git a/tests/specs/benchmarks/structarg01-spec.k b/tests/specs/benchmarks/structarg01-spec.k index 33b731e532..a0d61b7fb0 100644 --- a/tests/specs/benchmarks/structarg01-spec.k +++ b/tests/specs/benchmarks/structarg01-spec.k @@ -67,6 +67,7 @@ module STRUCTARG01-SPEC _ _ + ... _ diff --git a/tests/specs/erc20/ds/allowance-spec.k b/tests/specs/erc20/ds/allowance-spec.k index c94f767926..505abc33d9 100644 --- a/tests/specs/erc20/ds/allowance-spec.k +++ b/tests/specs/erc20/ds/allowance-spec.k @@ -78,6 +78,7 @@ module ALLOWANCE-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/approve-failure-spec.k b/tests/specs/erc20/ds/approve-failure-spec.k index 377edde866..1356f61fa1 100644 --- a/tests/specs/erc20/ds/approve-failure-spec.k +++ b/tests/specs/erc20/ds/approve-failure-spec.k @@ -78,6 +78,7 @@ module APPROVE-FAILURE-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/approve-success-spec.k b/tests/specs/erc20/ds/approve-success-spec.k index 6570ac3740..9f1d076ea4 100644 --- a/tests/specs/erc20/ds/approve-success-spec.k +++ b/tests/specs/erc20/ds/approve-success-spec.k @@ -78,6 +78,7 @@ module APPROVE-SUCCESS-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/balanceOf-spec.k b/tests/specs/erc20/ds/balanceOf-spec.k index a2092eab45..1ef6f5e4d8 100644 --- a/tests/specs/erc20/ds/balanceOf-spec.k +++ b/tests/specs/erc20/ds/balanceOf-spec.k @@ -78,6 +78,7 @@ module BALANCEOF-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/totalSupply-spec.k b/tests/specs/erc20/ds/totalSupply-spec.k index 87b3f25780..3ff1711860 100644 --- a/tests/specs/erc20/ds/totalSupply-spec.k +++ b/tests/specs/erc20/ds/totalSupply-spec.k @@ -78,6 +78,7 @@ module TOTALSUPPLY-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transfer-failure-1-a-spec.k b/tests/specs/erc20/ds/transfer-failure-1-a-spec.k index 1cb58a4d84..d4a67c6693 100644 --- a/tests/specs/erc20/ds/transfer-failure-1-a-spec.k +++ b/tests/specs/erc20/ds/transfer-failure-1-a-spec.k @@ -78,6 +78,7 @@ module TRANSFER-FAILURE-1-A-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transfer-failure-1-b-spec.k b/tests/specs/erc20/ds/transfer-failure-1-b-spec.k index 18a528b603..703c36e6af 100644 --- a/tests/specs/erc20/ds/transfer-failure-1-b-spec.k +++ b/tests/specs/erc20/ds/transfer-failure-1-b-spec.k @@ -78,6 +78,7 @@ module TRANSFER-FAILURE-1-B-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transfer-failure-1-c-spec.k b/tests/specs/erc20/ds/transfer-failure-1-c-spec.k index eb1f9be55f..cb40c03d84 100644 --- a/tests/specs/erc20/ds/transfer-failure-1-c-spec.k +++ b/tests/specs/erc20/ds/transfer-failure-1-c-spec.k @@ -78,6 +78,7 @@ module TRANSFER-FAILURE-1-C-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transfer-failure-2-a-spec.k b/tests/specs/erc20/ds/transfer-failure-2-a-spec.k index 3bfdc46ec2..e88d9587b6 100644 --- a/tests/specs/erc20/ds/transfer-failure-2-a-spec.k +++ b/tests/specs/erc20/ds/transfer-failure-2-a-spec.k @@ -78,6 +78,7 @@ module TRANSFER-FAILURE-2-A-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transfer-failure-2-b-spec.k b/tests/specs/erc20/ds/transfer-failure-2-b-spec.k index bf3004388e..c6fddfda75 100644 --- a/tests/specs/erc20/ds/transfer-failure-2-b-spec.k +++ b/tests/specs/erc20/ds/transfer-failure-2-b-spec.k @@ -78,6 +78,7 @@ module TRANSFER-FAILURE-2-B-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transfer-success-1-spec.k b/tests/specs/erc20/ds/transfer-success-1-spec.k index 77b545a4dc..c939ced968 100644 --- a/tests/specs/erc20/ds/transfer-success-1-spec.k +++ b/tests/specs/erc20/ds/transfer-success-1-spec.k @@ -78,6 +78,7 @@ module TRANSFER-SUCCESS-1-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transfer-success-2-spec.k b/tests/specs/erc20/ds/transfer-success-2-spec.k index 387911ba90..2034e33c9e 100644 --- a/tests/specs/erc20/ds/transfer-success-2-spec.k +++ b/tests/specs/erc20/ds/transfer-success-2-spec.k @@ -78,6 +78,7 @@ module TRANSFER-SUCCESS-2-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transferFrom-failure-1-a-spec.k b/tests/specs/erc20/ds/transferFrom-failure-1-a-spec.k index 1720895273..88bfff0b83 100644 --- a/tests/specs/erc20/ds/transferFrom-failure-1-a-spec.k +++ b/tests/specs/erc20/ds/transferFrom-failure-1-a-spec.k @@ -78,6 +78,7 @@ module TRANSFERFROM-FAILURE-1-A-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transferFrom-failure-1-b-spec.k b/tests/specs/erc20/ds/transferFrom-failure-1-b-spec.k index 59deff730f..28c8aa254f 100644 --- a/tests/specs/erc20/ds/transferFrom-failure-1-b-spec.k +++ b/tests/specs/erc20/ds/transferFrom-failure-1-b-spec.k @@ -78,6 +78,7 @@ module TRANSFERFROM-FAILURE-1-B-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transferFrom-failure-1-c-spec.k b/tests/specs/erc20/ds/transferFrom-failure-1-c-spec.k index cc0c7b559f..b9777c8030 100644 --- a/tests/specs/erc20/ds/transferFrom-failure-1-c-spec.k +++ b/tests/specs/erc20/ds/transferFrom-failure-1-c-spec.k @@ -78,6 +78,7 @@ module TRANSFERFROM-FAILURE-1-C-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transferFrom-failure-1-d-spec.k b/tests/specs/erc20/ds/transferFrom-failure-1-d-spec.k index 7adb3ef89f..95d54ee243 100644 --- a/tests/specs/erc20/ds/transferFrom-failure-1-d-spec.k +++ b/tests/specs/erc20/ds/transferFrom-failure-1-d-spec.k @@ -78,6 +78,7 @@ module TRANSFERFROM-FAILURE-1-D-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transferFrom-failure-2-a-spec.k b/tests/specs/erc20/ds/transferFrom-failure-2-a-spec.k index c18dcd5554..6332aae764 100644 --- a/tests/specs/erc20/ds/transferFrom-failure-2-a-spec.k +++ b/tests/specs/erc20/ds/transferFrom-failure-2-a-spec.k @@ -78,6 +78,7 @@ module TRANSFERFROM-FAILURE-2-A-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transferFrom-failure-2-b-spec.k b/tests/specs/erc20/ds/transferFrom-failure-2-b-spec.k index c0ee341c74..dfa9c2dd60 100644 --- a/tests/specs/erc20/ds/transferFrom-failure-2-b-spec.k +++ b/tests/specs/erc20/ds/transferFrom-failure-2-b-spec.k @@ -78,6 +78,7 @@ module TRANSFERFROM-FAILURE-2-B-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transferFrom-failure-2-c-spec.k b/tests/specs/erc20/ds/transferFrom-failure-2-c-spec.k index 932d5fb35e..bc266bb6dc 100644 --- a/tests/specs/erc20/ds/transferFrom-failure-2-c-spec.k +++ b/tests/specs/erc20/ds/transferFrom-failure-2-c-spec.k @@ -78,6 +78,7 @@ module TRANSFERFROM-FAILURE-2-C-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transferFrom-success-1-spec.k b/tests/specs/erc20/ds/transferFrom-success-1-spec.k index e797a4c029..a5a74d2f00 100644 --- a/tests/specs/erc20/ds/transferFrom-success-1-spec.k +++ b/tests/specs/erc20/ds/transferFrom-success-1-spec.k @@ -78,6 +78,7 @@ module TRANSFERFROM-SUCCESS-1-SPEC _ _ + ... diff --git a/tests/specs/erc20/ds/transferFrom-success-2-spec.k b/tests/specs/erc20/ds/transferFrom-success-2-spec.k index 67b127f5bd..91f84e45fb 100644 --- a/tests/specs/erc20/ds/transferFrom-success-2-spec.k +++ b/tests/specs/erc20/ds/transferFrom-success-2-spec.k @@ -78,6 +78,7 @@ module TRANSFERFROM-SUCCESS-2-SPEC _ _ + ... diff --git a/tests/specs/erc20/hkg/allowance-spec.k b/tests/specs/erc20/hkg/allowance-spec.k index 047f02c278..8c1ad2af85 100644 --- a/tests/specs/erc20/hkg/allowance-spec.k +++ b/tests/specs/erc20/hkg/allowance-spec.k @@ -78,6 +78,7 @@ module ALLOWANCE-SPEC _ _ + ... diff --git a/tests/specs/erc20/hkg/approve-spec.k b/tests/specs/erc20/hkg/approve-spec.k index a81e5c52bf..271fb8605b 100644 --- a/tests/specs/erc20/hkg/approve-spec.k +++ b/tests/specs/erc20/hkg/approve-spec.k @@ -78,6 +78,7 @@ module APPROVE-SPEC _ _ + ... diff --git a/tests/specs/erc20/hkg/balanceOf-spec.k b/tests/specs/erc20/hkg/balanceOf-spec.k index bd7cf63ec5..8787ed1550 100644 --- a/tests/specs/erc20/hkg/balanceOf-spec.k +++ b/tests/specs/erc20/hkg/balanceOf-spec.k @@ -78,6 +78,7 @@ module BALANCEOF-SPEC _ _ + ... diff --git a/tests/specs/erc20/hkg/totalSupply-spec.k b/tests/specs/erc20/hkg/totalSupply-spec.k index dc19621835..f9c53a48e3 100644 --- a/tests/specs/erc20/hkg/totalSupply-spec.k +++ b/tests/specs/erc20/hkg/totalSupply-spec.k @@ -78,6 +78,7 @@ module TOTALSUPPLY-SPEC _ _ + ... diff --git a/tests/specs/erc20/hkg/transfer-failure-1-spec.k b/tests/specs/erc20/hkg/transfer-failure-1-spec.k index d30f0e1a46..0a3512f6e1 100644 --- a/tests/specs/erc20/hkg/transfer-failure-1-spec.k +++ b/tests/specs/erc20/hkg/transfer-failure-1-spec.k @@ -78,6 +78,7 @@ module TRANSFER-FAILURE-1-SPEC _ _ + ... diff --git a/tests/specs/erc20/hkg/transfer-failure-2-spec.k b/tests/specs/erc20/hkg/transfer-failure-2-spec.k index 075985dd99..52d1726e90 100644 --- a/tests/specs/erc20/hkg/transfer-failure-2-spec.k +++ b/tests/specs/erc20/hkg/transfer-failure-2-spec.k @@ -78,6 +78,7 @@ module TRANSFER-FAILURE-2-SPEC _ _ + ... diff --git a/tests/specs/erc20/hkg/transfer-success-1-spec.k b/tests/specs/erc20/hkg/transfer-success-1-spec.k index 20e8651643..bdddefb509 100644 --- a/tests/specs/erc20/hkg/transfer-success-1-spec.k +++ b/tests/specs/erc20/hkg/transfer-success-1-spec.k @@ -78,6 +78,7 @@ module TRANSFER-SUCCESS-1-SPEC _ _ + ... diff --git a/tests/specs/erc20/hkg/transfer-success-2-spec.k b/tests/specs/erc20/hkg/transfer-success-2-spec.k index 963eb5cf8f..48e1d4bf40 100644 --- a/tests/specs/erc20/hkg/transfer-success-2-spec.k +++ b/tests/specs/erc20/hkg/transfer-success-2-spec.k @@ -78,6 +78,7 @@ module TRANSFER-SUCCESS-2-SPEC _ _ + ... diff --git a/tests/specs/erc20/hkg/transferFrom-failure-1-spec.k b/tests/specs/erc20/hkg/transferFrom-failure-1-spec.k index bbd69bcbad..3652807ecc 100644 --- a/tests/specs/erc20/hkg/transferFrom-failure-1-spec.k +++ b/tests/specs/erc20/hkg/transferFrom-failure-1-spec.k @@ -78,6 +78,7 @@ module TRANSFERFROM-FAILURE-1-SPEC _ _ + ... diff --git a/tests/specs/erc20/hkg/transferFrom-failure-2-spec.k b/tests/specs/erc20/hkg/transferFrom-failure-2-spec.k index 33ee7b1d72..f3abb85177 100644 --- a/tests/specs/erc20/hkg/transferFrom-failure-2-spec.k +++ b/tests/specs/erc20/hkg/transferFrom-failure-2-spec.k @@ -78,6 +78,7 @@ module TRANSFERFROM-FAILURE-2-SPEC _ _ + ... diff --git a/tests/specs/erc20/hkg/transferFrom-success-1-spec.k b/tests/specs/erc20/hkg/transferFrom-success-1-spec.k index e771d5fecc..bb4872b39a 100644 --- a/tests/specs/erc20/hkg/transferFrom-success-1-spec.k +++ b/tests/specs/erc20/hkg/transferFrom-success-1-spec.k @@ -78,6 +78,7 @@ module TRANSFERFROM-SUCCESS-1-SPEC _ _ + ... diff --git a/tests/specs/erc20/hkg/transferFrom-success-2-spec.k b/tests/specs/erc20/hkg/transferFrom-success-2-spec.k index 31c533d43b..68c6934c5c 100644 --- a/tests/specs/erc20/hkg/transferFrom-success-2-spec.k +++ b/tests/specs/erc20/hkg/transferFrom-success-2-spec.k @@ -78,6 +78,7 @@ module TRANSFERFROM-SUCCESS-2-SPEC _ _ + ... diff --git a/tests/specs/mcd-structured/cat-exhaustiveness-spec.k b/tests/specs/mcd-structured/cat-exhaustiveness-spec.k index 3e802b29e0..012e4681f0 100644 --- a/tests/specs/mcd-structured/cat-exhaustiveness-spec.k +++ b/tests/specs/mcd-structured/cat-exhaustiveness-spec.k @@ -67,7 +67,8 @@ module CAT-EXHAUSTIVENESS-SPEC _ _ - + ... + VChainId _ diff --git a/tests/specs/mcd-structured/cat-file-addr-pass-rough-spec.k b/tests/specs/mcd-structured/cat-file-addr-pass-rough-spec.k index 2f28d9f151..29693f4c96 100644 --- a/tests/specs/mcd-structured/cat-file-addr-pass-rough-spec.k +++ b/tests/specs/mcd-structured/cat-file-addr-pass-rough-spec.k @@ -67,7 +67,8 @@ module CAT-FILE-ADDR-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/dai-adduu-fail-rough-spec.k b/tests/specs/mcd-structured/dai-adduu-fail-rough-spec.k index 24631ef5c3..1e012165ac 100644 --- a/tests/specs/mcd-structured/dai-adduu-fail-rough-spec.k +++ b/tests/specs/mcd-structured/dai-adduu-fail-rough-spec.k @@ -67,7 +67,8 @@ module DAI-ADDUU-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/dai-symbol-pass-spec.k b/tests/specs/mcd-structured/dai-symbol-pass-spec.k index 536ca1099e..fade7b60a8 100644 --- a/tests/specs/mcd-structured/dai-symbol-pass-spec.k +++ b/tests/specs/mcd-structured/dai-symbol-pass-spec.k @@ -67,7 +67,8 @@ module DAI-SYMBOL-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/dstoken-approve-fail-rough-spec.k b/tests/specs/mcd-structured/dstoken-approve-fail-rough-spec.k index be02d76279..6ce4672d70 100644 --- a/tests/specs/mcd-structured/dstoken-approve-fail-rough-spec.k +++ b/tests/specs/mcd-structured/dstoken-approve-fail-rough-spec.k @@ -67,7 +67,8 @@ module DSTOKEN-APPROVE-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/dsvalue-peek-pass-rough-spec.k b/tests/specs/mcd-structured/dsvalue-peek-pass-rough-spec.k index 37a889a968..ee685919ff 100644 --- a/tests/specs/mcd-structured/dsvalue-peek-pass-rough-spec.k +++ b/tests/specs/mcd-structured/dsvalue-peek-pass-rough-spec.k @@ -67,7 +67,8 @@ module DSVALUE-PEEK-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/dsvalue-read-pass-spec.k b/tests/specs/mcd-structured/dsvalue-read-pass-spec.k index 6d82916bbd..32c1060f76 100644 --- a/tests/specs/mcd-structured/dsvalue-read-pass-spec.k +++ b/tests/specs/mcd-structured/dsvalue-read-pass-spec.k @@ -67,7 +67,8 @@ module DSVALUE-READ-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/end-cash-pass-rough-spec.k b/tests/specs/mcd-structured/end-cash-pass-rough-spec.k index a4aef2143a..b0c18b935c 100644 --- a/tests/specs/mcd-structured/end-cash-pass-rough-spec.k +++ b/tests/specs/mcd-structured/end-cash-pass-rough-spec.k @@ -67,7 +67,8 @@ module END-CASH-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -214,7 +215,8 @@ module END-CASH-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -322,7 +324,8 @@ module END-CASH-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -427,7 +430,8 @@ module END-CASH-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/end-pack-pass-rough-spec.k b/tests/specs/mcd-structured/end-pack-pass-rough-spec.k index aac6db25bf..e491cafff1 100644 --- a/tests/specs/mcd-structured/end-pack-pass-rough-spec.k +++ b/tests/specs/mcd-structured/end-pack-pass-rough-spec.k @@ -67,7 +67,8 @@ module END-PACK-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -222,7 +223,8 @@ module END-PACK-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -327,7 +329,8 @@ module END-PACK-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -432,7 +435,8 @@ module END-PACK-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/end-subuu-pass-spec.k b/tests/specs/mcd-structured/end-subuu-pass-spec.k index 21c3f2b4ba..91833a5bd7 100644 --- a/tests/specs/mcd-structured/end-subuu-pass-spec.k +++ b/tests/specs/mcd-structured/end-subuu-pass-spec.k @@ -67,7 +67,8 @@ module END-SUBUU-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/flapper-yank-pass-rough-spec.json b/tests/specs/mcd-structured/flapper-yank-pass-rough-spec.json index ce530a65eb..03a5ef66e1 100644 --- a/tests/specs/mcd-structured/flapper-yank-pass-rough-spec.json +++ b/tests/specs/mcd-structured/flapper-yank-pass-rough-spec.json @@ -1 +1 @@ -{"moduleList": {"node": "KFlatModuleList", "mainModule": "FLAPPER-YANK-PASS-ROUGH-SPEC", "term": [{"node": "KFlatModule", "name": "FLAPPER-YANK-PASS-ROUGH-SPEC", "localSentences": [{"node": "KClaim", "body": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "execute", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}, "rhs": {"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "halt", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}}], "arity": 1, "variable": false}, {"node": "KVariable", "name": "_DotVar1", "sort": {"node": "KSort", "name": "ExitCodeCell"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "ISTANBUL_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Bytes_BYTES-HOOKED_Bytes", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen0", "sort": {"node": "KSort", "name": "StatusCode"}}, "rhs": {"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_VCallStack", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen1", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen2", "sort": {"node": "KSort", "name": "Set"}}, "rhs": {"node": "KVariable", "name": "?_Gen3", "sort": {"node": "KSort", "name": "Set"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "parseByteStack", "params": []}, "args": [{"node": "KToken", "token": "\"0x608060405234801561001057600080fd5b50600436106101735760003560e01c80637a9e5e4b116100de578063b753a98c11610097578063bf7e214f11610071578063bf7e214f14610684578063daea85c5146106ce578063dd62ed3e1461072a578063f2d5d56b146107a257610173565b8063b753a98c146105be578063bb35783b1461060c578063be9a65551461067a57610173565b80637a9e5e4b146104305780638da5cb5b1461047457806395d89b41146104be5780639dc29fac146104dc578063a0712d681461052a578063a9059cbb1461055857610173565b8063313ce56711610130578063313ce567146102ee57806340c10f191461030c57806342966c681461035a5780635ac801fe1461038857806370a08231146103b657806375f12b211461040e57610173565b806306fdde031461017857806307da68f514610196578063095ea7b3146101a057806313af40351461020657806318160ddd1461024a57806323b872dd14610268575b600080fd5b6101806107f0565b6040518082815260200191505060405180910390f35b61019e6107f6565b005b6101ec600480360360408110156101b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610970565b604051808215151515815260200191505060405180910390f35b6102486004803603602081101561021c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a07565b005b610252610b50565b6040518082815260200191505060405180910390f35b6102d46004803603606081101561027e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b59565b604051808215151515815260200191505060405180910390f35b6102f66110f1565b6040518082815260200191505060405180910390f35b6103586004803603604081101561032257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110f7565b005b6103866004803603602081101561037057600080fd5b810190808035906020019092919050505061130a565b005b6103b46004803603602081101561039e57600080fd5b8101908080359060200190929190505050611317565b005b6103f8600480360360208110156103cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113c1565b6040518082815260200191505060405180910390f35b61041661140a565b604051808215151515815260200191505060405180910390f35b6104726004803603602081101561044657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141d565b005b61047c611566565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104c661158c565b6040518082815260200191505060405180910390f35b610528600480360360408110156104f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611592565b005b6105566004803603602081101561054057600080fd5b8101908080359060200190929190505050611b30565b005b6105a46004803603604081101561056e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b3d565b604051808215151515815260200191505060405180910390f35b61060a600480360360408110156105d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b52565b005b6106786004803603606081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b62565b005b610682611b73565b005b61068c611ced565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610710600480360360208110156106e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d13565b604051808215151515815260200191505060405180910390f35b61078c6004803603604081101561074057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dc9565b6040518082815260200191505060405180910390f35b6107ee600480360360408110156107b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e50565b005b60075481565b610824336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610896576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46001600460146101000a81548160ff021916908315150217905550505050565b6000600460149054906101000a900460ff16156109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b6109ff83836120bb565b905092915050565b610a35336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610aa7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fce241d7ca1f669fee44b6fc00b8eba2df3bb514eed0f6f668f8f89096e81ed9460405160405180910390a250565b60008054905090565b6000600460149054906101000a900460ff1615610bde576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610cb657507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b15610eb45781600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610dad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b610e33600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610f69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b610fb2600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061103e600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612230565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b60065481565b611125336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611197576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff161561121a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611263600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482612230565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112b260005482612230565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885826040518082815260200191505060405180910390a25050565b6113143382611592565b50565b611345336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b8060078190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600460149054906101000a900460ff1681565b61144b336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f1abebea81bfa2637f28358c371278fb15ede7ea8dd28d2e03b112ff6d936ada460405160405180910390a250565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b6115c0336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff16156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561178d57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b1561198b5780600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b61190a600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b611a89600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ad8600054826121ad565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a25050565b611b3a33826110f7565b50565b6000611b4a338484610b59565b905092915050565b611b5d338383610b59565b505050565b611b6d838383610b59565b50505050565b611ba1336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611c13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46000600460146101000a81548160ff021916908315150217905550505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460149054906101000a900460ff1615611d98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611dc2827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6120bb565b9050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e5b823383610b59565b505050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e9f57600190506120b5565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611efe57600190506120b5565b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f5e57600090506120b5565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b70096138430856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168152602001935050505060206040518083038186803b15801561207757600080fd5b505afa15801561208b573d6000803e3d6000fd5b505050506040513d60208110156120a157600080fd5b810190808051906020019092919050505090505b92915050565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b600082828403915081111561222a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f64732d6d6174682d7375622d756e646572666c6f77000000000000000000000081525060200191505060405180910390fd5b92915050565b60008282840191508110156122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d6d6174682d6164642d6f766572666c6f7700000000000000000000000081525060200191505060405180910390fd5b9291505056fea265627a7a7231582042e4b52e52d434217b55a1ee90f412a7c49b1fd0406bb9ec1168e2a7c1fbad0e64736f6c634300050c0032\"", "sort": {"node": "KSort", "name": "String"}}], "arity": 1, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "computeValidJumpDests", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "parseByteStack", "params": []}, "args": [{"node": "KToken", "token": "\"0x608060405234801561001057600080fd5b50600436106101735760003560e01c80637a9e5e4b116100de578063b753a98c11610097578063bf7e214f11610071578063bf7e214f14610684578063daea85c5146106ce578063dd62ed3e1461072a578063f2d5d56b146107a257610173565b8063b753a98c146105be578063bb35783b1461060c578063be9a65551461067a57610173565b80637a9e5e4b146104305780638da5cb5b1461047457806395d89b41146104be5780639dc29fac146104dc578063a0712d681461052a578063a9059cbb1461055857610173565b8063313ce56711610130578063313ce567146102ee57806340c10f191461030c57806342966c681461035a5780635ac801fe1461038857806370a08231146103b657806375f12b211461040e57610173565b806306fdde031461017857806307da68f514610196578063095ea7b3146101a057806313af40351461020657806318160ddd1461024a57806323b872dd14610268575b600080fd5b6101806107f0565b6040518082815260200191505060405180910390f35b61019e6107f6565b005b6101ec600480360360408110156101b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610970565b604051808215151515815260200191505060405180910390f35b6102486004803603602081101561021c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a07565b005b610252610b50565b6040518082815260200191505060405180910390f35b6102d46004803603606081101561027e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b59565b604051808215151515815260200191505060405180910390f35b6102f66110f1565b6040518082815260200191505060405180910390f35b6103586004803603604081101561032257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110f7565b005b6103866004803603602081101561037057600080fd5b810190808035906020019092919050505061130a565b005b6103b46004803603602081101561039e57600080fd5b8101908080359060200190929190505050611317565b005b6103f8600480360360208110156103cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113c1565b6040518082815260200191505060405180910390f35b61041661140a565b604051808215151515815260200191505060405180910390f35b6104726004803603602081101561044657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141d565b005b61047c611566565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104c661158c565b6040518082815260200191505060405180910390f35b610528600480360360408110156104f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611592565b005b6105566004803603602081101561054057600080fd5b8101908080359060200190929190505050611b30565b005b6105a46004803603604081101561056e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b3d565b604051808215151515815260200191505060405180910390f35b61060a600480360360408110156105d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b52565b005b6106786004803603606081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b62565b005b610682611b73565b005b61068c611ced565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610710600480360360208110156106e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d13565b604051808215151515815260200191505060405180910390f35b61078c6004803603604081101561074057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dc9565b6040518082815260200191505060405180910390f35b6107ee600480360360408110156107b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e50565b005b60075481565b610824336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610896576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46001600460146101000a81548160ff021916908315150217905550505050565b6000600460149054906101000a900460ff16156109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b6109ff83836120bb565b905092915050565b610a35336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610aa7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fce241d7ca1f669fee44b6fc00b8eba2df3bb514eed0f6f668f8f89096e81ed9460405160405180910390a250565b60008054905090565b6000600460149054906101000a900460ff1615610bde576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610cb657507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b15610eb45781600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610dad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b610e33600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610f69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b610fb2600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061103e600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612230565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b60065481565b611125336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611197576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff161561121a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611263600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482612230565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112b260005482612230565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885826040518082815260200191505060405180910390a25050565b6113143382611592565b50565b611345336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b8060078190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600460149054906101000a900460ff1681565b61144b336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f1abebea81bfa2637f28358c371278fb15ede7ea8dd28d2e03b112ff6d936ada460405160405180910390a250565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b6115c0336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff16156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561178d57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b1561198b5780600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b61190a600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b611a89600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ad8600054826121ad565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a25050565b611b3a33826110f7565b50565b6000611b4a338484610b59565b905092915050565b611b5d338383610b59565b505050565b611b6d838383610b59565b50505050565b611ba1336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611c13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46000600460146101000a81548160ff021916908315150217905550505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460149054906101000a900460ff1615611d98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611dc2827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6120bb565b9050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e5b823383610b59565b505050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e9f57600190506120b5565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611efe57600190506120b5565b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f5e57600090506120b5565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b70096138430856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168152602001935050505060206040518083038186803b15801561207757600080fd5b505afa15801561208b573d6000803e3d6000fd5b505050506040513d60208110156120a157600080fd5b810190808051906020019092919050505090505b92915050565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b600082828403915081111561222a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f64732d6d6174682d7375622d756e646572666c6f77000000000000000000000081525060200191505060405180910390fd5b92915050565b60008282840191508110156122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d6d6174682d6164642d6f766572666c6f7700000000000000000000000081525060200191505060405180910390fd5b9291505056fea265627a7a7231582042e4b52e52d434217b55a1ee90f412a7c49b1fd0406bb9ec1168e2a7c1fbad0e64736f6c634300050c0032\"", "sort": {"node": "KSort", "name": "String"}}], "arity": 1, "variable": false}], "arity": 1, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_+Bytes__BYTES-HOOKED_Bytes_Bytes_Bytes", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "abiCallData", "params": []}, "args": [{"node": "KToken", "token": "\"move\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "typedArgs", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "abi_type_address", "params": []}, "args": [{"node": "KVariable", "name": "ABI_src", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "typedArgs", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "abi_type_address", "params": []}, "args": [{"node": "KVariable", "name": "ABI_dst", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "typedArgs", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "abi_type_uint256", "params": []}, "args": [{"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"typedArgs\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "CD", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 2, "variable": false}, "rhs": {"node": "KVariable", "name": "?_Gen4", "sort": {"node": "KSort", "name": "Bytes"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "VCallValue", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}, "rhs": {"node": "KVariable", "name": "?_Gen5", "sort": {"node": "KSort", "name": "WordStack"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": ".Bytes_BYTES-HOOKED_Bytes", "params": []}, "args": [], "arity": 0, "variable": false}, "rhs": {"node": "KVariable", "name": "?_Gen6", "sort": {"node": "KSort", "name": "Bytes"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen7", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": "infGas", "params": []}, "args": [{"node": "KVariable", "name": "VGas", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, "rhs": {"node": "KApply", "label": {"node": "KLabel", "name": "ite", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_==Int_", "params": []}, "args": [{"node": "KVariable", "name": "Allowance", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KToken", "token": "115792089237316195423570985008687907853269984665640564039457584007913129639935", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "infGas", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "VGas", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "Csstore", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "ISTANBUL_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_s", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Gem_s", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Junk_1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 4, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "Csstore", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "ISTANBUL_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_d", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Gem_d", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Junk_2", "sort": {"node": "KSort", "name": "Int"}}], "arity": 4, "variable": false}], "arity": 2, "variable": false}, {"node": "KToken", "token": "-7281", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "infGas", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "VGas", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "Csstore", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "ISTANBUL_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "Allowance", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Allowance", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Junk_0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 4, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "Csstore", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "ISTANBUL_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_s", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Gem_s", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Junk_1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 4, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "Csstore", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "ISTANBUL_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_d", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Gem_d", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Junk_2", "sort": {"node": "KSort", "name": "Int"}}], "arity": 4, "variable": false}], "arity": 2, "variable": false}, {"node": "KToken", "token": "-9538", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 1, "variable": false}], "arity": 3, "variable": false}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen8", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen9", "sort": {"node": "KSort", "name": "Gas"}}, "rhs": {"node": "KVariable", "name": "?_Gen10", "sort": {"node": "KSort", "name": "Gas"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "VCallDepth", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_VSelfDestruct", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen11", "sort": {"node": "KSort", "name": "List"}}, "rhs": {"node": "KVariable", "name": "?_Gen12", "sort": {"node": "KSort", "name": "List"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Vrefund", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen13", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen14", "sort": {"node": "KSort", "name": "Set"}}, "rhs": {"node": "KVariable", "name": "?_Gen15", "sort": {"node": "KSort", "name": "Set"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen16", "sort": {"node": "KSort", "name": "Map"}}, "rhs": {"node": "KVariable", "name": "?_Gen17", "sort": {"node": "KSort", "name": "Map"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen18", "sort": {"node": "KSort", "name": "Set"}}, "rhs": {"node": "KVariable", "name": "?_Gen19", "sort": {"node": "KSort", "name": "Set"}}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen20", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen21", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen22", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen23", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen24", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen25", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen26", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen27", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen28", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen29", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_BLOCK_NUMBER", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen30", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen31", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIME", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen32", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen33", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen34", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen35", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen37", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen38", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen39", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen40", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen36", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 21, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "VChainId", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID_balance", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "parseByteStack", "params": []}, "args": [{"node": "KToken", "token": "\"0x608060405234801561001057600080fd5b50600436106101735760003560e01c80637a9e5e4b116100de578063b753a98c11610097578063bf7e214f11610071578063bf7e214f14610684578063daea85c5146106ce578063dd62ed3e1461072a578063f2d5d56b146107a257610173565b8063b753a98c146105be578063bb35783b1461060c578063be9a65551461067a57610173565b80637a9e5e4b146104305780638da5cb5b1461047457806395d89b41146104be5780639dc29fac146104dc578063a0712d681461052a578063a9059cbb1461055857610173565b8063313ce56711610130578063313ce567146102ee57806340c10f191461030c57806342966c681461035a5780635ac801fe1461038857806370a08231146103b657806375f12b211461040e57610173565b806306fdde031461017857806307da68f514610196578063095ea7b3146101a057806313af40351461020657806318160ddd1461024a57806323b872dd14610268575b600080fd5b6101806107f0565b6040518082815260200191505060405180910390f35b61019e6107f6565b005b6101ec600480360360408110156101b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610970565b604051808215151515815260200191505060405180910390f35b6102486004803603602081101561021c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a07565b005b610252610b50565b6040518082815260200191505060405180910390f35b6102d46004803603606081101561027e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b59565b604051808215151515815260200191505060405180910390f35b6102f66110f1565b6040518082815260200191505060405180910390f35b6103586004803603604081101561032257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110f7565b005b6103866004803603602081101561037057600080fd5b810190808035906020019092919050505061130a565b005b6103b46004803603602081101561039e57600080fd5b8101908080359060200190929190505050611317565b005b6103f8600480360360208110156103cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113c1565b6040518082815260200191505060405180910390f35b61041661140a565b604051808215151515815260200191505060405180910390f35b6104726004803603602081101561044657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141d565b005b61047c611566565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104c661158c565b6040518082815260200191505060405180910390f35b610528600480360360408110156104f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611592565b005b6105566004803603602081101561054057600080fd5b8101908080359060200190929190505050611b30565b005b6105a46004803603604081101561056e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b3d565b604051808215151515815260200191505060405180910390f35b61060a600480360360408110156105d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b52565b005b6106786004803603606081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b62565b005b610682611b73565b005b61068c611ced565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610710600480360360208110156106e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d13565b604051808215151515815260200191505060405180910390f35b61078c6004803603604081101561074057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dc9565b6040518082815260200191505060405180910390f35b6107ee600480360360408110156107b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e50565b005b60075481565b610824336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610896576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46001600460146101000a81548160ff021916908315150217905550505050565b6000600460149054906101000a900460ff16156109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b6109ff83836120bb565b905092915050565b610a35336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610aa7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fce241d7ca1f669fee44b6fc00b8eba2df3bb514eed0f6f668f8f89096e81ed9460405160405180910390a250565b60008054905090565b6000600460149054906101000a900460ff1615610bde576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610cb657507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b15610eb45781600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610dad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b610e33600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610f69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b610fb2600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061103e600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612230565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b60065481565b611125336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611197576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff161561121a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611263600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482612230565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112b260005482612230565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885826040518082815260200191505060405180910390a25050565b6113143382611592565b50565b611345336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b8060078190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600460149054906101000a900460ff1681565b61144b336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f1abebea81bfa2637f28358c371278fb15ede7ea8dd28d2e03b112ff6d936ada460405160405180910390a250565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b6115c0336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff16156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561178d57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b1561198b5780600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b61190a600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b611a89600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ad8600054826121ad565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a25050565b611b3a33826110f7565b50565b6000611b4a338484610b59565b905092915050565b611b5d338383610b59565b505050565b611b6d838383610b59565b50505050565b611ba1336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611c13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46000600460146101000a81548160ff021916908315150217905550505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460149054906101000a900460ff1615611d98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611dc2827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6120bb565b9050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e5b823383610b59565b505050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e9f57600190506120b5565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611efe57600190506120b5565b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f5e57600090506120b5565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b70096138430856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168152602001935050505060206040518083038186803b15801561207757600080fd5b505afa15801561208b573d6000803e3d6000fd5b505050506040513d60208110156120a157600080fd5b810190808051906020019092919050505090505b92915050565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b600082828403915081111561222a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f64732d6d6174682d7375622d756e646572666c6f77000000000000000000000081525060200191505060405180910390fd5b92915050565b60008282840191508110156122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d6d6174682d6164642d6f766572666c6f7700000000000000000000000081525060200191505060405180910390fd5b9291505056fea265627a7a7231582042e4b52e52d434217b55a1ee90f412a7c49b1fd0406bb9ec1168e2a7c1fbad0e64736f6c634300050c0032\"", "sort": {"node": "KSort", "name": "String"}}], "arity": 1, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "2", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_src", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Allowance", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_src", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Gem_s", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_dst", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Gem_d", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "4", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#WordPackAddrUInt8(_,_)_WORD-PACK_Int_Int_Int", "params": []}, "args": [{"node": "KVariable", "name": "Owner", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Stopped", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ACCT_ID_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 2, "variable": false}, "rhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "2", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_src", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "ite", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_==Int_", "params": []}, "args": [{"node": "KVariable", "name": "Allowance", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KToken", "token": "115792089237316195423570985008687907853269984665640564039457584007913129639935", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Allowance", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "Allowance", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 3, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_src", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_s", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_dst", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_d", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "4", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#WordPackAddrUInt8(_,_)_WORD-PACK_Int_Int_Int", "params": []}, "args": [{"node": "KVariable", "name": "Owner", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Stopped", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ACCT_ID_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 2, "variable": false}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "2", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_src", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Junk_0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_src", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Junk_1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_dst", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Junk_2", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ACCT_ID_ORIG_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen41", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "Nonce_DSToken", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KVariable", "name": "_DotVar2", "sort": {"node": "KSort", "name": "AccountCellMap"}}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen42", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen43", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen44", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen45", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen46", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "requires": {"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "execute", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}, "rhs": {"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "halt", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}}], "arity": 1, "variable": false}, {"node": "KVariable", "name": "_DotVar1", "sort": {"node": "KSort", "name": "ExitCodeCell"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "ISTANBUL_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Bytes_BYTES-HOOKED_Bytes", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen0", "sort": {"node": "KSort", "name": "StatusCode"}}, "rhs": {"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_VCallStack", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen1", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen2", "sort": {"node": "KSort", "name": "Set"}}, "rhs": {"node": "KVariable", "name": "?_Gen3", "sort": {"node": "KSort", "name": "Set"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "parseByteStack", "params": []}, "args": [{"node": "KToken", "token": "\"0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063957aa58c116100a2578063c959c42b11610071578063c959c42b14610479578063ca40c419146104a7578063cfc4af55146104f3578063cfdd330214610521578063fc7b6aee1461053f57610116565b8063957aa58c146103915780639c52a7f1146103af578063a2f91af2146103f3578063bf353dbb1461042157610116565b80634b43ed12116100e95780634b43ed12146102755780634e8b1dd5146102b757806365fae35e146102e55780637bd2bea7146103295780637d780d821461037357610116565b806326e027f11461011b57806329ae81141461014957806336569e77146101815780634423c5f1146101cb575b600080fd5b6101476004803603602081101561013157600080fd5b810190808035906020019092919050505061056d565b005b61017f6004803603604081101561015f57600080fd5b8101908080359060200190929190803590602001909291905050506108b4565b005b610189610ae7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101f7600480360360208110156101e157600080fd5b8101908080359060200190929190505050610b0d565b604051808681526020018581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018365ffffffffffff1665ffffffffffff1681526020018265ffffffffffff1665ffffffffffff1681526020019550505050505060405180910390f35b6102b56004803603606081101561028b57600080fd5b81019080803590602001909291908035906020019092919080359060200190929190505050610b87565b005b6102bf6113d1565b604051808265ffffffffffff1665ffffffffffff16815260200191505060405180910390f35b610327600480360360208110156102fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e9565b005b610331611517565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61037b61153d565b6040518082815260200191505060405180910390f35b610399611543565b6040518082815260200191505060405180910390f35b6103f1600480360360208110156103c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611549565b005b61041f6004803603602081101561040957600080fd5b8101908080359060200190929190505050611677565b005b6104636004803603602081101561043757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061185e565b6040518082815260200191505060405180910390f35b6104a56004803603602081101561048f57600080fd5b8101908080359060200190929190505050611876565b005b6104dd600480360360408110156104bd57600080fd5b810190808035906020019092919080359060200190929190505050611cd7565b6040518082815260200191505060405180910390f35b6104fb6120d0565b604051808265ffffffffffff1665ffffffffffff16815260200191505060405180910390f35b6105296120e8565b6040518082815260200191505060405180910390f35b61056b6004803603602081101561055557600080fd5b81019080803590602001909291905050506120ee565b005b6000600754146105e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f466c61707065722f7374696c6c2d6c697665000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f466c61707065722f6775792d6e6f742d7365740000000000000000000000000081525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b306001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000868152602001908152602001600020600001546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156107e757600080fd5b505af11580156107fb573d6000803e3d6000fd5b505050506001600082815260200190815260200160002060008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556002820160146101000a81549065ffffffffffff021916905560028201601a6101000a81549065ffffffffffff021916905550505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610968576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b7f626567000000000000000000000000000000000000000000000000000000000082141561099c5780600481905550610ab0565b7f74746c00000000000000000000000000000000000000000000000000000000008214156109ee5780600560006101000a81548165ffffffffffff021916908365ffffffffffff160217905550610aaf565b7f7461750000000000000000000000000000000000000000000000000000000000821415610a405780600560066101000a81548165ffffffffffff021916908365ffffffffffff160217905550610aae565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f466c61707065722f66696c652d756e7265636f676e697a65642d706172616d0081525060200191505060405180910390fd5b5b5b5961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a4505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60016020528060005260406000206000915090508060000154908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020160149054906101000a900465ffffffffffff169080600201601a9054906101000a900465ffffffffffff16905085565b600160075414610bff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f466c61707065722f6775792d6e6f742d7365740000000000000000000000000081525060200191505060405180910390fd5b426001600085815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff161180610d46575060006001600085815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16145b610db8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f466c61707065722f616c72656164792d66696e69736865642d7469630000000081525060200191505060405180910390fd5b4260016000858152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff1611610e5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f466c61707065722f616c72656164792d66696e69736865642d656e640000000081525060200191505060405180910390fd5b60016000848152602001908152602001600020600101548214610ee8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f466c61707065722f6c6f742d6e6f742d6d61746368696e67000000000000000081525060200191505060405180910390fd5b60016000848152602001908152602001600020600001548111610f73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6269642d6e6f742d6869676865720000000000000000000081525060200191505060405180910390fd5b610f9560045460016000868152602001908152602001600020600001546122c5565b610fa782670de0b6b3a76400006122c5565b101561101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f466c61707065722f696e73756666696369656e742d696e63726561736500000081525060200191505060405180910390fd5b6001600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461121b57600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b336001600087815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000888152602001908152602001600020600001546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156111ad57600080fd5b505af11580156111c1573d6000803e3d6000fd5b50505050336001600085815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3330600160008881526020019081526020016000206000015485036040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561131057600080fd5b505af1158015611324573d6000803e3d6000fd5b5050505080600160008581526020019081526020016000206000018190555061136142600560009054906101000a900465ffffffffffff166122f1565b6001600085815260200190815260200160002060020160146101000a81548165ffffffffffff021916908365ffffffffffff1602179055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a450505050565b600560009054906101000a900465ffffffffffff1681565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461149d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b60016000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b60075481565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461172b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b6000600781905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3033846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561181057600080fd5b505af1158015611824573d6000803e3d6000fd5b505050505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60006020528060005260406000206000915090505481565b6001600754146118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b60006001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16141580156119985750426001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16108061199757504260016000838152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff16105b5b611a0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f466c61707065722f6e6f742d66696e697368656400000000000000000000000081525060200191505060405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b306001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000868152602001908152602001600020600101546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b158015611b3357600080fd5b505af1158015611b47573d6000803e3d6000fd5b50505050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac3060016000858152602001908152602001600020600001546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015611c0a57600080fd5b505af1158015611c1e573d6000803e3d6000fd5b505050506001600082815260200190815260200160002060008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556002820160146101000a81549065ffffffffffff021916905560028201601a6101000a81549065ffffffffffff021916905550505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600060016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611d8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b600160075414611e05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60065410611e9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6f766572666c6f770000000000000000000000000000000081525060200191505060405180910390fd5b6006600081546001019190508190559050816001600083815260200190815260200160002060000181905550826001600083815260200190815260200160002060010181905550336001600083815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611f5642600560069054906101000a900465ffffffffffff166122f1565b60016000838152602001908152602001600020600201601a6101000a81548165ffffffffffff021916908365ffffffffffff160217905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3330866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561206b57600080fd5b505af115801561207f573d6000803e3d6000fd5b505050507fe6dde59cbc017becba89714a037778d234a84ce7f0a137487142a007e580d60981848460405180848152602001838152602001828152602001935050505060405180910390a192915050565b600560069054906101000a900465ffffffffffff1681565b60065481565b4260016000838152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff1610612193576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f466c61707065722f6e6f742d66696e697368656400000000000000000000000081525060200191505060405180910390fd5b60006001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff1614612239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f466c61707065722f6269642d616c72656164792d706c6163656400000000000081525060200191505060405180910390fd5b61225742600560069054906101000a900465ffffffffffff166122f1565b60016000838152602001908152602001600020600201601a6101000a81548165ffffffffffff021916908365ffffffffffff1602179055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b6000808214806122e257508282838502925082816122df57fe5b04145b6122eb57600080fd5b92915050565b60008265ffffffffffff1682840191508165ffffffffffff16101561231557600080fd5b9291505056fea265627a7a723158201acd0496ca3432003bac40639b3808573f9831f884ae4dc91d004d0deff68a7364736f6c634300050c0032\"", "sort": {"node": "KSort", "name": "String"}}], "arity": 1, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "computeValidJumpDests", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "parseByteStack", "params": []}, "args": [{"node": "KToken", "token": "\"0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063957aa58c116100a2578063c959c42b11610071578063c959c42b14610479578063ca40c419146104a7578063cfc4af55146104f3578063cfdd330214610521578063fc7b6aee1461053f57610116565b8063957aa58c146103915780639c52a7f1146103af578063a2f91af2146103f3578063bf353dbb1461042157610116565b80634b43ed12116100e95780634b43ed12146102755780634e8b1dd5146102b757806365fae35e146102e55780637bd2bea7146103295780637d780d821461037357610116565b806326e027f11461011b57806329ae81141461014957806336569e77146101815780634423c5f1146101cb575b600080fd5b6101476004803603602081101561013157600080fd5b810190808035906020019092919050505061056d565b005b61017f6004803603604081101561015f57600080fd5b8101908080359060200190929190803590602001909291905050506108b4565b005b610189610ae7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101f7600480360360208110156101e157600080fd5b8101908080359060200190929190505050610b0d565b604051808681526020018581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018365ffffffffffff1665ffffffffffff1681526020018265ffffffffffff1665ffffffffffff1681526020019550505050505060405180910390f35b6102b56004803603606081101561028b57600080fd5b81019080803590602001909291908035906020019092919080359060200190929190505050610b87565b005b6102bf6113d1565b604051808265ffffffffffff1665ffffffffffff16815260200191505060405180910390f35b610327600480360360208110156102fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e9565b005b610331611517565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61037b61153d565b6040518082815260200191505060405180910390f35b610399611543565b6040518082815260200191505060405180910390f35b6103f1600480360360208110156103c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611549565b005b61041f6004803603602081101561040957600080fd5b8101908080359060200190929190505050611677565b005b6104636004803603602081101561043757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061185e565b6040518082815260200191505060405180910390f35b6104a56004803603602081101561048f57600080fd5b8101908080359060200190929190505050611876565b005b6104dd600480360360408110156104bd57600080fd5b810190808035906020019092919080359060200190929190505050611cd7565b6040518082815260200191505060405180910390f35b6104fb6120d0565b604051808265ffffffffffff1665ffffffffffff16815260200191505060405180910390f35b6105296120e8565b6040518082815260200191505060405180910390f35b61056b6004803603602081101561055557600080fd5b81019080803590602001909291905050506120ee565b005b6000600754146105e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f466c61707065722f7374696c6c2d6c697665000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f466c61707065722f6775792d6e6f742d7365740000000000000000000000000081525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b306001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000868152602001908152602001600020600001546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156107e757600080fd5b505af11580156107fb573d6000803e3d6000fd5b505050506001600082815260200190815260200160002060008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556002820160146101000a81549065ffffffffffff021916905560028201601a6101000a81549065ffffffffffff021916905550505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610968576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b7f626567000000000000000000000000000000000000000000000000000000000082141561099c5780600481905550610ab0565b7f74746c00000000000000000000000000000000000000000000000000000000008214156109ee5780600560006101000a81548165ffffffffffff021916908365ffffffffffff160217905550610aaf565b7f7461750000000000000000000000000000000000000000000000000000000000821415610a405780600560066101000a81548165ffffffffffff021916908365ffffffffffff160217905550610aae565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f466c61707065722f66696c652d756e7265636f676e697a65642d706172616d0081525060200191505060405180910390fd5b5b5b5961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a4505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60016020528060005260406000206000915090508060000154908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020160149054906101000a900465ffffffffffff169080600201601a9054906101000a900465ffffffffffff16905085565b600160075414610bff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f466c61707065722f6775792d6e6f742d7365740000000000000000000000000081525060200191505060405180910390fd5b426001600085815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff161180610d46575060006001600085815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16145b610db8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f466c61707065722f616c72656164792d66696e69736865642d7469630000000081525060200191505060405180910390fd5b4260016000858152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff1611610e5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f466c61707065722f616c72656164792d66696e69736865642d656e640000000081525060200191505060405180910390fd5b60016000848152602001908152602001600020600101548214610ee8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f466c61707065722f6c6f742d6e6f742d6d61746368696e67000000000000000081525060200191505060405180910390fd5b60016000848152602001908152602001600020600001548111610f73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6269642d6e6f742d6869676865720000000000000000000081525060200191505060405180910390fd5b610f9560045460016000868152602001908152602001600020600001546122c5565b610fa782670de0b6b3a76400006122c5565b101561101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f466c61707065722f696e73756666696369656e742d696e63726561736500000081525060200191505060405180910390fd5b6001600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461121b57600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b336001600087815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000888152602001908152602001600020600001546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156111ad57600080fd5b505af11580156111c1573d6000803e3d6000fd5b50505050336001600085815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3330600160008881526020019081526020016000206000015485036040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561131057600080fd5b505af1158015611324573d6000803e3d6000fd5b5050505080600160008581526020019081526020016000206000018190555061136142600560009054906101000a900465ffffffffffff166122f1565b6001600085815260200190815260200160002060020160146101000a81548165ffffffffffff021916908365ffffffffffff1602179055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a450505050565b600560009054906101000a900465ffffffffffff1681565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461149d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b60016000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b60075481565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461172b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b6000600781905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3033846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561181057600080fd5b505af1158015611824573d6000803e3d6000fd5b505050505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60006020528060005260406000206000915090505481565b6001600754146118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b60006001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16141580156119985750426001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16108061199757504260016000838152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff16105b5b611a0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f466c61707065722f6e6f742d66696e697368656400000000000000000000000081525060200191505060405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b306001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000868152602001908152602001600020600101546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b158015611b3357600080fd5b505af1158015611b47573d6000803e3d6000fd5b50505050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac3060016000858152602001908152602001600020600001546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015611c0a57600080fd5b505af1158015611c1e573d6000803e3d6000fd5b505050506001600082815260200190815260200160002060008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556002820160146101000a81549065ffffffffffff021916905560028201601a6101000a81549065ffffffffffff021916905550505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600060016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611d8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b600160075414611e05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60065410611e9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6f766572666c6f770000000000000000000000000000000081525060200191505060405180910390fd5b6006600081546001019190508190559050816001600083815260200190815260200160002060000181905550826001600083815260200190815260200160002060010181905550336001600083815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611f5642600560069054906101000a900465ffffffffffff166122f1565b60016000838152602001908152602001600020600201601a6101000a81548165ffffffffffff021916908365ffffffffffff160217905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3330866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561206b57600080fd5b505af115801561207f573d6000803e3d6000fd5b505050507fe6dde59cbc017becba89714a037778d234a84ce7f0a137487142a007e580d60981848460405180848152602001838152602001828152602001935050505060405180910390a192915050565b600560069054906101000a900465ffffffffffff1681565b60065481565b4260016000838152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff1610612193576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f466c61707065722f6e6f742d66696e697368656400000000000000000000000081525060200191505060405180910390fd5b60006001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff1614612239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f466c61707065722f6269642d616c72656164792d706c6163656400000000000081525060200191505060405180910390fd5b61225742600560069054906101000a900465ffffffffffff166122f1565b60016000838152602001908152602001600020600201601a6101000a81548165ffffffffffff021916908365ffffffffffff1602179055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b6000808214806122e257508282838502925082816122df57fe5b04145b6122eb57600080fd5b92915050565b60008265ffffffffffff1682840191508165ffffffffffff16101561231557600080fd5b9291505056fea265627a7a723158201acd0496ca3432003bac40639b3808573f9831f884ae4dc91d004d0deff68a7364736f6c634300050c0032\"", "sort": {"node": "KSort", "name": "String"}}], "arity": 1, "variable": false}], "arity": 1, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_+Bytes__BYTES-HOOKED_Bytes_Bytes_Bytes", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "abiCallData", "params": []}, "args": [{"node": "KToken", "token": "\"yank\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "typedArgs", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "abi_type_uint256", "params": []}, "args": [{"node": "KVariable", "name": "ABI_id", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"typedArgs\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "CD", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 2, "variable": false}, "rhs": {"node": "KVariable", "name": "?_Gen4", "sort": {"node": "KSort", "name": "Bytes"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "VCallValue", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}, "rhs": {"node": "KVariable", "name": "?_Gen5", "sort": {"node": "KSort", "name": "WordStack"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": ".Bytes_BYTES-HOOKED_Bytes", "params": []}, "args": [], "arity": 0, "variable": false}, "rhs": {"node": "KVariable", "name": "?_Gen6", "sort": {"node": "KSort", "name": "Bytes"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen7", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": "infGas", "params": []}, "args": [{"node": "KVariable", "name": "VGas", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, "rhs": {"node": "KVariable", "name": "?_Gen8", "sort": {"node": "KSort", "name": "Gas"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen9", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen10", "sort": {"node": "KSort", "name": "Gas"}}, "rhs": {"node": "KVariable", "name": "?_Gen11", "sort": {"node": "KSort", "name": "Gas"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "VCallDepth", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_VSelfDestruct", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen12", "sort": {"node": "KSort", "name": "List"}}, "rhs": {"node": "KVariable", "name": "?_Gen13", "sort": {"node": "KSort", "name": "List"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Vrefund", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen14", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen15", "sort": {"node": "KSort", "name": "Set"}}, "rhs": {"node": "KVariable", "name": "?_Gen16", "sort": {"node": "KSort", "name": "Set"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen17", "sort": {"node": "KSort", "name": "Map"}}, "rhs": {"node": "KVariable", "name": "?_Gen18", "sort": {"node": "KSort", "name": "Map"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen19", "sort": {"node": "KSort", "name": "Set"}}, "rhs": {"node": "KVariable", "name": "?_Gen20", "sort": {"node": "KSort", "name": "Set"}}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen21", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen22", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen23", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen24", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen25", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen26", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen27", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen28", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen29", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen30", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_BLOCK_NUMBER", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen31", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen32", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIME", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen33", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen34", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen35", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen36", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen38", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen39", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen40", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen41", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen37", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 21, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "VChainId", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID_balance", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "parseByteStack", "params": []}, "args": [{"node": "KToken", "token": "\"0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063957aa58c116100a2578063c959c42b11610071578063c959c42b14610479578063ca40c419146104a7578063cfc4af55146104f3578063cfdd330214610521578063fc7b6aee1461053f57610116565b8063957aa58c146103915780639c52a7f1146103af578063a2f91af2146103f3578063bf353dbb1461042157610116565b80634b43ed12116100e95780634b43ed12146102755780634e8b1dd5146102b757806365fae35e146102e55780637bd2bea7146103295780637d780d821461037357610116565b806326e027f11461011b57806329ae81141461014957806336569e77146101815780634423c5f1146101cb575b600080fd5b6101476004803603602081101561013157600080fd5b810190808035906020019092919050505061056d565b005b61017f6004803603604081101561015f57600080fd5b8101908080359060200190929190803590602001909291905050506108b4565b005b610189610ae7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101f7600480360360208110156101e157600080fd5b8101908080359060200190929190505050610b0d565b604051808681526020018581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018365ffffffffffff1665ffffffffffff1681526020018265ffffffffffff1665ffffffffffff1681526020019550505050505060405180910390f35b6102b56004803603606081101561028b57600080fd5b81019080803590602001909291908035906020019092919080359060200190929190505050610b87565b005b6102bf6113d1565b604051808265ffffffffffff1665ffffffffffff16815260200191505060405180910390f35b610327600480360360208110156102fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e9565b005b610331611517565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61037b61153d565b6040518082815260200191505060405180910390f35b610399611543565b6040518082815260200191505060405180910390f35b6103f1600480360360208110156103c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611549565b005b61041f6004803603602081101561040957600080fd5b8101908080359060200190929190505050611677565b005b6104636004803603602081101561043757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061185e565b6040518082815260200191505060405180910390f35b6104a56004803603602081101561048f57600080fd5b8101908080359060200190929190505050611876565b005b6104dd600480360360408110156104bd57600080fd5b810190808035906020019092919080359060200190929190505050611cd7565b6040518082815260200191505060405180910390f35b6104fb6120d0565b604051808265ffffffffffff1665ffffffffffff16815260200191505060405180910390f35b6105296120e8565b6040518082815260200191505060405180910390f35b61056b6004803603602081101561055557600080fd5b81019080803590602001909291905050506120ee565b005b6000600754146105e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f466c61707065722f7374696c6c2d6c697665000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f466c61707065722f6775792d6e6f742d7365740000000000000000000000000081525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b306001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000868152602001908152602001600020600001546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156107e757600080fd5b505af11580156107fb573d6000803e3d6000fd5b505050506001600082815260200190815260200160002060008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556002820160146101000a81549065ffffffffffff021916905560028201601a6101000a81549065ffffffffffff021916905550505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610968576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b7f626567000000000000000000000000000000000000000000000000000000000082141561099c5780600481905550610ab0565b7f74746c00000000000000000000000000000000000000000000000000000000008214156109ee5780600560006101000a81548165ffffffffffff021916908365ffffffffffff160217905550610aaf565b7f7461750000000000000000000000000000000000000000000000000000000000821415610a405780600560066101000a81548165ffffffffffff021916908365ffffffffffff160217905550610aae565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f466c61707065722f66696c652d756e7265636f676e697a65642d706172616d0081525060200191505060405180910390fd5b5b5b5961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a4505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60016020528060005260406000206000915090508060000154908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020160149054906101000a900465ffffffffffff169080600201601a9054906101000a900465ffffffffffff16905085565b600160075414610bff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f466c61707065722f6775792d6e6f742d7365740000000000000000000000000081525060200191505060405180910390fd5b426001600085815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff161180610d46575060006001600085815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16145b610db8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f466c61707065722f616c72656164792d66696e69736865642d7469630000000081525060200191505060405180910390fd5b4260016000858152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff1611610e5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f466c61707065722f616c72656164792d66696e69736865642d656e640000000081525060200191505060405180910390fd5b60016000848152602001908152602001600020600101548214610ee8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f466c61707065722f6c6f742d6e6f742d6d61746368696e67000000000000000081525060200191505060405180910390fd5b60016000848152602001908152602001600020600001548111610f73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6269642d6e6f742d6869676865720000000000000000000081525060200191505060405180910390fd5b610f9560045460016000868152602001908152602001600020600001546122c5565b610fa782670de0b6b3a76400006122c5565b101561101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f466c61707065722f696e73756666696369656e742d696e63726561736500000081525060200191505060405180910390fd5b6001600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461121b57600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b336001600087815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000888152602001908152602001600020600001546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156111ad57600080fd5b505af11580156111c1573d6000803e3d6000fd5b50505050336001600085815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3330600160008881526020019081526020016000206000015485036040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561131057600080fd5b505af1158015611324573d6000803e3d6000fd5b5050505080600160008581526020019081526020016000206000018190555061136142600560009054906101000a900465ffffffffffff166122f1565b6001600085815260200190815260200160002060020160146101000a81548165ffffffffffff021916908365ffffffffffff1602179055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a450505050565b600560009054906101000a900465ffffffffffff1681565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461149d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b60016000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b60075481565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461172b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b6000600781905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3033846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561181057600080fd5b505af1158015611824573d6000803e3d6000fd5b505050505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60006020528060005260406000206000915090505481565b6001600754146118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b60006001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16141580156119985750426001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16108061199757504260016000838152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff16105b5b611a0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f466c61707065722f6e6f742d66696e697368656400000000000000000000000081525060200191505060405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b306001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000868152602001908152602001600020600101546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b158015611b3357600080fd5b505af1158015611b47573d6000803e3d6000fd5b50505050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac3060016000858152602001908152602001600020600001546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015611c0a57600080fd5b505af1158015611c1e573d6000803e3d6000fd5b505050506001600082815260200190815260200160002060008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556002820160146101000a81549065ffffffffffff021916905560028201601a6101000a81549065ffffffffffff021916905550505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600060016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611d8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b600160075414611e05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60065410611e9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6f766572666c6f770000000000000000000000000000000081525060200191505060405180910390fd5b6006600081546001019190508190559050816001600083815260200190815260200160002060000181905550826001600083815260200190815260200160002060010181905550336001600083815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611f5642600560069054906101000a900465ffffffffffff166122f1565b60016000838152602001908152602001600020600201601a6101000a81548165ffffffffffff021916908365ffffffffffff160217905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3330866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561206b57600080fd5b505af115801561207f573d6000803e3d6000fd5b505050507fe6dde59cbc017becba89714a037778d234a84ce7f0a137487142a007e580d60981848460405180848152602001838152602001828152602001935050505060405180910390a192915050565b600560069054906101000a900465ffffffffffff1681565b60065481565b4260016000838152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff1610612193576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f466c61707065722f6e6f742d66696e697368656400000000000000000000000081525060200191505060405180910390fd5b60006001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff1614612239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f466c61707065722f6269642d616c72656164792d706c6163656400000000000081525060200191505060405180910390fd5b61225742600560069054906101000a900465ffffffffffff166122f1565b60016000838152602001908152602001600020600201601a6101000a81548165ffffffffffff021916908365ffffffffffff1602179055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b6000808214806122e257508282838502925082816122df57fe5b04145b6122eb57600080fd5b92915050565b60008265ffffffffffff1682840191508165ffffffffffff16101561231557600080fd5b9291505056fea265627a7a723158201acd0496ca3432003bac40639b3808573f9831f884ae4dc91d004d0deff68a7364736f6c634300050c0032\"", "sort": {"node": "KSort", "name": "String"}}], "arity": 1, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "7", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Live", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "DSToken", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_id", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Bid", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_id", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Lot", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_id", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KToken", "token": "2", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#WordPackAddrUInt48UInt48(_,_,_)_WORD-PACK_Int_Int_Int_Int", "params": []}, "args": [{"node": "KVariable", "name": "Guy", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Tic", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "End", "sort": {"node": "KSort", "name": "Int"}}], "arity": 3, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ACCT_ID_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 2, "variable": false}, "rhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "7", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Live", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "DSToken", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_id", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_id", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_id", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KToken", "token": "2", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ACCT_ID_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 2, "variable": false}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID_ORIG_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen42", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "Nonce_Flapper", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DSToken", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DSToken_balance", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "parseByteStack", "params": []}, "args": [{"node": "KToken", "token": "\"0x608060405234801561001057600080fd5b50600436106101735760003560e01c80637a9e5e4b116100de578063b753a98c11610097578063bf7e214f11610071578063bf7e214f14610684578063daea85c5146106ce578063dd62ed3e1461072a578063f2d5d56b146107a257610173565b8063b753a98c146105be578063bb35783b1461060c578063be9a65551461067a57610173565b80637a9e5e4b146104305780638da5cb5b1461047457806395d89b41146104be5780639dc29fac146104dc578063a0712d681461052a578063a9059cbb1461055857610173565b8063313ce56711610130578063313ce567146102ee57806340c10f191461030c57806342966c681461035a5780635ac801fe1461038857806370a08231146103b657806375f12b211461040e57610173565b806306fdde031461017857806307da68f514610196578063095ea7b3146101a057806313af40351461020657806318160ddd1461024a57806323b872dd14610268575b600080fd5b6101806107f0565b6040518082815260200191505060405180910390f35b61019e6107f6565b005b6101ec600480360360408110156101b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610970565b604051808215151515815260200191505060405180910390f35b6102486004803603602081101561021c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a07565b005b610252610b50565b6040518082815260200191505060405180910390f35b6102d46004803603606081101561027e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b59565b604051808215151515815260200191505060405180910390f35b6102f66110f1565b6040518082815260200191505060405180910390f35b6103586004803603604081101561032257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110f7565b005b6103866004803603602081101561037057600080fd5b810190808035906020019092919050505061130a565b005b6103b46004803603602081101561039e57600080fd5b8101908080359060200190929190505050611317565b005b6103f8600480360360208110156103cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113c1565b6040518082815260200191505060405180910390f35b61041661140a565b604051808215151515815260200191505060405180910390f35b6104726004803603602081101561044657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141d565b005b61047c611566565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104c661158c565b6040518082815260200191505060405180910390f35b610528600480360360408110156104f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611592565b005b6105566004803603602081101561054057600080fd5b8101908080359060200190929190505050611b30565b005b6105a46004803603604081101561056e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b3d565b604051808215151515815260200191505060405180910390f35b61060a600480360360408110156105d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b52565b005b6106786004803603606081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b62565b005b610682611b73565b005b61068c611ced565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610710600480360360208110156106e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d13565b604051808215151515815260200191505060405180910390f35b61078c6004803603604081101561074057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dc9565b6040518082815260200191505060405180910390f35b6107ee600480360360408110156107b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e50565b005b60075481565b610824336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610896576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46001600460146101000a81548160ff021916908315150217905550505050565b6000600460149054906101000a900460ff16156109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b6109ff83836120bb565b905092915050565b610a35336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610aa7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fce241d7ca1f669fee44b6fc00b8eba2df3bb514eed0f6f668f8f89096e81ed9460405160405180910390a250565b60008054905090565b6000600460149054906101000a900460ff1615610bde576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610cb657507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b15610eb45781600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610dad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b610e33600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610f69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b610fb2600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061103e600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612230565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b60065481565b611125336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611197576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff161561121a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611263600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482612230565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112b260005482612230565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885826040518082815260200191505060405180910390a25050565b6113143382611592565b50565b611345336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b8060078190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600460149054906101000a900460ff1681565b61144b336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f1abebea81bfa2637f28358c371278fb15ede7ea8dd28d2e03b112ff6d936ada460405160405180910390a250565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b6115c0336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff16156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561178d57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b1561198b5780600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b61190a600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b611a89600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ad8600054826121ad565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a25050565b611b3a33826110f7565b50565b6000611b4a338484610b59565b905092915050565b611b5d338383610b59565b505050565b611b6d838383610b59565b50505050565b611ba1336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611c13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46000600460146101000a81548160ff021916908315150217905550505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460149054906101000a900460ff1615611d98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611dc2827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6120bb565b9050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e5b823383610b59565b505050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e9f57600190506120b5565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611efe57600190506120b5565b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f5e57600090506120b5565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b70096138430856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168152602001935050505060206040518083038186803b15801561207757600080fd5b505afa15801561208b573d6000803e3d6000fd5b505050506040513d60208110156120a157600080fd5b810190808051906020019092919050505090505b92915050565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b600082828403915081111561222a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f64732d6d6174682d7375622d756e646572666c6f77000000000000000000000081525060200191505060405180910390fd5b92915050565b60008282840191508110156122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d6d6174682d6164642d6f766572666c6f7700000000000000000000000081525060200191505060405180910390fd5b9291505056fea265627a7a7231582042e4b52e52d434217b55a1ee90f412a7c49b1fd0406bb9ec1168e2a7c1fbad0e64736f6c634300050c0032\"", "sort": {"node": "KSort", "name": "String"}}], "arity": 1, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Gem_a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "Guy", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Gem_g", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "4", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#WordPackAddrUInt8(_,_)_WORD-PACK_Int_Int_Int", "params": []}, "args": [{"node": "KVariable", "name": "Owner", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Stopped", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "DSToken_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 2, "variable": false}, "rhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_a", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Bid", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "Guy", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_g", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Bid", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "4", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#WordPackAddrUInt8(_,_)_WORD-PACK_Int_Int_Int", "params": []}, "args": [{"node": "KVariable", "name": "Owner", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Stopped", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "DSToken_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 2, "variable": false}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DSToken_ORIG_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen43", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "Nonce_DSToken", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "_DotVar2", "sort": {"node": "KSort", "name": "AccountCellMap"}}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen44", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen45", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen46", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen47", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen48", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "requires": {"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "execute", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}, "rhs": {"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "halt", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}}], "arity": 1, "variable": false}, {"node": "KVariable", "name": "_DotVar1", "sort": {"node": "KSort", "name": "ExitCodeCell"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "ISTANBUL_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Bytes_BYTES-HOOKED_Bytes", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen0", "sort": {"node": "KSort", "name": "StatusCode"}}, "rhs": {"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_VCallStack", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen1", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen2", "sort": {"node": "KSort", "name": "Set"}}, "rhs": {"node": "KVariable", "name": "?_Gen3", "sort": {"node": "KSort", "name": "Set"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "parseByteStack", "params": []}, "args": [{"node": "KToken", "token": "\"0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063957aa58c116100a2578063c959c42b11610071578063c959c42b14610479578063ca40c419146104a7578063cfc4af55146104f3578063cfdd330214610521578063fc7b6aee1461053f57610116565b8063957aa58c146103915780639c52a7f1146103af578063a2f91af2146103f3578063bf353dbb1461042157610116565b80634b43ed12116100e95780634b43ed12146102755780634e8b1dd5146102b757806365fae35e146102e55780637bd2bea7146103295780637d780d821461037357610116565b806326e027f11461011b57806329ae81141461014957806336569e77146101815780634423c5f1146101cb575b600080fd5b6101476004803603602081101561013157600080fd5b810190808035906020019092919050505061056d565b005b61017f6004803603604081101561015f57600080fd5b8101908080359060200190929190803590602001909291905050506108b4565b005b610189610ae7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101f7600480360360208110156101e157600080fd5b8101908080359060200190929190505050610b0d565b604051808681526020018581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018365ffffffffffff1665ffffffffffff1681526020018265ffffffffffff1665ffffffffffff1681526020019550505050505060405180910390f35b6102b56004803603606081101561028b57600080fd5b81019080803590602001909291908035906020019092919080359060200190929190505050610b87565b005b6102bf6113d1565b604051808265ffffffffffff1665ffffffffffff16815260200191505060405180910390f35b610327600480360360208110156102fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e9565b005b610331611517565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61037b61153d565b6040518082815260200191505060405180910390f35b610399611543565b6040518082815260200191505060405180910390f35b6103f1600480360360208110156103c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611549565b005b61041f6004803603602081101561040957600080fd5b8101908080359060200190929190505050611677565b005b6104636004803603602081101561043757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061185e565b6040518082815260200191505060405180910390f35b6104a56004803603602081101561048f57600080fd5b8101908080359060200190929190505050611876565b005b6104dd600480360360408110156104bd57600080fd5b810190808035906020019092919080359060200190929190505050611cd7565b6040518082815260200191505060405180910390f35b6104fb6120d0565b604051808265ffffffffffff1665ffffffffffff16815260200191505060405180910390f35b6105296120e8565b6040518082815260200191505060405180910390f35b61056b6004803603602081101561055557600080fd5b81019080803590602001909291905050506120ee565b005b6000600754146105e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f466c61707065722f7374696c6c2d6c697665000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f466c61707065722f6775792d6e6f742d7365740000000000000000000000000081525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b306001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000868152602001908152602001600020600001546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156107e757600080fd5b505af11580156107fb573d6000803e3d6000fd5b505050506001600082815260200190815260200160002060008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556002820160146101000a81549065ffffffffffff021916905560028201601a6101000a81549065ffffffffffff021916905550505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610968576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b7f626567000000000000000000000000000000000000000000000000000000000082141561099c5780600481905550610ab0565b7f74746c00000000000000000000000000000000000000000000000000000000008214156109ee5780600560006101000a81548165ffffffffffff021916908365ffffffffffff160217905550610aaf565b7f7461750000000000000000000000000000000000000000000000000000000000821415610a405780600560066101000a81548165ffffffffffff021916908365ffffffffffff160217905550610aae565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f466c61707065722f66696c652d756e7265636f676e697a65642d706172616d0081525060200191505060405180910390fd5b5b5b5961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a4505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60016020528060005260406000206000915090508060000154908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020160149054906101000a900465ffffffffffff169080600201601a9054906101000a900465ffffffffffff16905085565b600160075414610bff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f466c61707065722f6775792d6e6f742d7365740000000000000000000000000081525060200191505060405180910390fd5b426001600085815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff161180610d46575060006001600085815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16145b610db8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f466c61707065722f616c72656164792d66696e69736865642d7469630000000081525060200191505060405180910390fd5b4260016000858152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff1611610e5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f466c61707065722f616c72656164792d66696e69736865642d656e640000000081525060200191505060405180910390fd5b60016000848152602001908152602001600020600101548214610ee8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f466c61707065722f6c6f742d6e6f742d6d61746368696e67000000000000000081525060200191505060405180910390fd5b60016000848152602001908152602001600020600001548111610f73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6269642d6e6f742d6869676865720000000000000000000081525060200191505060405180910390fd5b610f9560045460016000868152602001908152602001600020600001546122c5565b610fa782670de0b6b3a76400006122c5565b101561101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f466c61707065722f696e73756666696369656e742d696e63726561736500000081525060200191505060405180910390fd5b6001600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461121b57600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b336001600087815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000888152602001908152602001600020600001546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156111ad57600080fd5b505af11580156111c1573d6000803e3d6000fd5b50505050336001600085815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3330600160008881526020019081526020016000206000015485036040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561131057600080fd5b505af1158015611324573d6000803e3d6000fd5b5050505080600160008581526020019081526020016000206000018190555061136142600560009054906101000a900465ffffffffffff166122f1565b6001600085815260200190815260200160002060020160146101000a81548165ffffffffffff021916908365ffffffffffff1602179055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a450505050565b600560009054906101000a900465ffffffffffff1681565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461149d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b60016000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b60075481565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461172b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b6000600781905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3033846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561181057600080fd5b505af1158015611824573d6000803e3d6000fd5b505050505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60006020528060005260406000206000915090505481565b6001600754146118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b60006001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16141580156119985750426001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16108061199757504260016000838152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff16105b5b611a0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f466c61707065722f6e6f742d66696e697368656400000000000000000000000081525060200191505060405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b306001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000868152602001908152602001600020600101546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b158015611b3357600080fd5b505af1158015611b47573d6000803e3d6000fd5b50505050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac3060016000858152602001908152602001600020600001546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015611c0a57600080fd5b505af1158015611c1e573d6000803e3d6000fd5b505050506001600082815260200190815260200160002060008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556002820160146101000a81549065ffffffffffff021916905560028201601a6101000a81549065ffffffffffff021916905550505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600060016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611d8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b600160075414611e05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60065410611e9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6f766572666c6f770000000000000000000000000000000081525060200191505060405180910390fd5b6006600081546001019190508190559050816001600083815260200190815260200160002060000181905550826001600083815260200190815260200160002060010181905550336001600083815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611f5642600560069054906101000a900465ffffffffffff166122f1565b60016000838152602001908152602001600020600201601a6101000a81548165ffffffffffff021916908365ffffffffffff160217905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3330866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561206b57600080fd5b505af115801561207f573d6000803e3d6000fd5b505050507fe6dde59cbc017becba89714a037778d234a84ce7f0a137487142a007e580d60981848460405180848152602001838152602001828152602001935050505060405180910390a192915050565b600560069054906101000a900465ffffffffffff1681565b60065481565b4260016000838152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff1610612193576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f466c61707065722f6e6f742d66696e697368656400000000000000000000000081525060200191505060405180910390fd5b60006001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff1614612239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f466c61707065722f6269642d616c72656164792d706c6163656400000000000081525060200191505060405180910390fd5b61225742600560069054906101000a900465ffffffffffff166122f1565b60016000838152602001908152602001600020600201601a6101000a81548165ffffffffffff021916908365ffffffffffff1602179055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b6000808214806122e257508282838502925082816122df57fe5b04145b6122eb57600080fd5b92915050565b60008265ffffffffffff1682840191508165ffffffffffff16101561231557600080fd5b9291505056fea265627a7a723158201acd0496ca3432003bac40639b3808573f9831f884ae4dc91d004d0deff68a7364736f6c634300050c0032\"", "sort": {"node": "KSort", "name": "String"}}], "arity": 1, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "computeValidJumpDests", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "parseByteStack", "params": []}, "args": [{"node": "KToken", "token": "\"0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063957aa58c116100a2578063c959c42b11610071578063c959c42b14610479578063ca40c419146104a7578063cfc4af55146104f3578063cfdd330214610521578063fc7b6aee1461053f57610116565b8063957aa58c146103915780639c52a7f1146103af578063a2f91af2146103f3578063bf353dbb1461042157610116565b80634b43ed12116100e95780634b43ed12146102755780634e8b1dd5146102b757806365fae35e146102e55780637bd2bea7146103295780637d780d821461037357610116565b806326e027f11461011b57806329ae81141461014957806336569e77146101815780634423c5f1146101cb575b600080fd5b6101476004803603602081101561013157600080fd5b810190808035906020019092919050505061056d565b005b61017f6004803603604081101561015f57600080fd5b8101908080359060200190929190803590602001909291905050506108b4565b005b610189610ae7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101f7600480360360208110156101e157600080fd5b8101908080359060200190929190505050610b0d565b604051808681526020018581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018365ffffffffffff1665ffffffffffff1681526020018265ffffffffffff1665ffffffffffff1681526020019550505050505060405180910390f35b6102b56004803603606081101561028b57600080fd5b81019080803590602001909291908035906020019092919080359060200190929190505050610b87565b005b6102bf6113d1565b604051808265ffffffffffff1665ffffffffffff16815260200191505060405180910390f35b610327600480360360208110156102fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e9565b005b610331611517565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61037b61153d565b6040518082815260200191505060405180910390f35b610399611543565b6040518082815260200191505060405180910390f35b6103f1600480360360208110156103c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611549565b005b61041f6004803603602081101561040957600080fd5b8101908080359060200190929190505050611677565b005b6104636004803603602081101561043757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061185e565b6040518082815260200191505060405180910390f35b6104a56004803603602081101561048f57600080fd5b8101908080359060200190929190505050611876565b005b6104dd600480360360408110156104bd57600080fd5b810190808035906020019092919080359060200190929190505050611cd7565b6040518082815260200191505060405180910390f35b6104fb6120d0565b604051808265ffffffffffff1665ffffffffffff16815260200191505060405180910390f35b6105296120e8565b6040518082815260200191505060405180910390f35b61056b6004803603602081101561055557600080fd5b81019080803590602001909291905050506120ee565b005b6000600754146105e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f466c61707065722f7374696c6c2d6c697665000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f466c61707065722f6775792d6e6f742d7365740000000000000000000000000081525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b306001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000868152602001908152602001600020600001546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156107e757600080fd5b505af11580156107fb573d6000803e3d6000fd5b505050506001600082815260200190815260200160002060008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556002820160146101000a81549065ffffffffffff021916905560028201601a6101000a81549065ffffffffffff021916905550505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610968576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b7f626567000000000000000000000000000000000000000000000000000000000082141561099c5780600481905550610ab0565b7f74746c00000000000000000000000000000000000000000000000000000000008214156109ee5780600560006101000a81548165ffffffffffff021916908365ffffffffffff160217905550610aaf565b7f7461750000000000000000000000000000000000000000000000000000000000821415610a405780600560066101000a81548165ffffffffffff021916908365ffffffffffff160217905550610aae565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f466c61707065722f66696c652d756e7265636f676e697a65642d706172616d0081525060200191505060405180910390fd5b5b5b5961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a4505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60016020528060005260406000206000915090508060000154908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020160149054906101000a900465ffffffffffff169080600201601a9054906101000a900465ffffffffffff16905085565b600160075414610bff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f466c61707065722f6775792d6e6f742d7365740000000000000000000000000081525060200191505060405180910390fd5b426001600085815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff161180610d46575060006001600085815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16145b610db8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f466c61707065722f616c72656164792d66696e69736865642d7469630000000081525060200191505060405180910390fd5b4260016000858152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff1611610e5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f466c61707065722f616c72656164792d66696e69736865642d656e640000000081525060200191505060405180910390fd5b60016000848152602001908152602001600020600101548214610ee8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f466c61707065722f6c6f742d6e6f742d6d61746368696e67000000000000000081525060200191505060405180910390fd5b60016000848152602001908152602001600020600001548111610f73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6269642d6e6f742d6869676865720000000000000000000081525060200191505060405180910390fd5b610f9560045460016000868152602001908152602001600020600001546122c5565b610fa782670de0b6b3a76400006122c5565b101561101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f466c61707065722f696e73756666696369656e742d696e63726561736500000081525060200191505060405180910390fd5b6001600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461121b57600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b336001600087815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000888152602001908152602001600020600001546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156111ad57600080fd5b505af11580156111c1573d6000803e3d6000fd5b50505050336001600085815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3330600160008881526020019081526020016000206000015485036040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561131057600080fd5b505af1158015611324573d6000803e3d6000fd5b5050505080600160008581526020019081526020016000206000018190555061136142600560009054906101000a900465ffffffffffff166122f1565b6001600085815260200190815260200160002060020160146101000a81548165ffffffffffff021916908365ffffffffffff1602179055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a450505050565b600560009054906101000a900465ffffffffffff1681565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461149d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b60016000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b60075481565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461172b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b6000600781905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3033846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561181057600080fd5b505af1158015611824573d6000803e3d6000fd5b505050505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60006020528060005260406000206000915090505481565b6001600754146118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b60006001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16141580156119985750426001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16108061199757504260016000838152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff16105b5b611a0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f466c61707065722f6e6f742d66696e697368656400000000000000000000000081525060200191505060405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b306001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000868152602001908152602001600020600101546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b158015611b3357600080fd5b505af1158015611b47573d6000803e3d6000fd5b50505050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac3060016000858152602001908152602001600020600001546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015611c0a57600080fd5b505af1158015611c1e573d6000803e3d6000fd5b505050506001600082815260200190815260200160002060008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556002820160146101000a81549065ffffffffffff021916905560028201601a6101000a81549065ffffffffffff021916905550505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600060016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611d8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b600160075414611e05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60065410611e9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6f766572666c6f770000000000000000000000000000000081525060200191505060405180910390fd5b6006600081546001019190508190559050816001600083815260200190815260200160002060000181905550826001600083815260200190815260200160002060010181905550336001600083815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611f5642600560069054906101000a900465ffffffffffff166122f1565b60016000838152602001908152602001600020600201601a6101000a81548165ffffffffffff021916908365ffffffffffff160217905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3330866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561206b57600080fd5b505af115801561207f573d6000803e3d6000fd5b505050507fe6dde59cbc017becba89714a037778d234a84ce7f0a137487142a007e580d60981848460405180848152602001838152602001828152602001935050505060405180910390a192915050565b600560069054906101000a900465ffffffffffff1681565b60065481565b4260016000838152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff1610612193576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f466c61707065722f6e6f742d66696e697368656400000000000000000000000081525060200191505060405180910390fd5b60006001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff1614612239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f466c61707065722f6269642d616c72656164792d706c6163656400000000000081525060200191505060405180910390fd5b61225742600560069054906101000a900465ffffffffffff166122f1565b60016000838152602001908152602001600020600201601a6101000a81548165ffffffffffff021916908365ffffffffffff1602179055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b6000808214806122e257508282838502925082816122df57fe5b04145b6122eb57600080fd5b92915050565b60008265ffffffffffff1682840191508165ffffffffffff16101561231557600080fd5b9291505056fea265627a7a723158201acd0496ca3432003bac40639b3808573f9831f884ae4dc91d004d0deff68a7364736f6c634300050c0032\"", "sort": {"node": "KSort", "name": "String"}}], "arity": 1, "variable": false}], "arity": 1, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_+Bytes__BYTES-HOOKED_Bytes_Bytes_Bytes", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "abiCallData", "params": []}, "args": [{"node": "KToken", "token": "\"yank\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "typedArgs", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "abi_type_uint256", "params": []}, "args": [{"node": "KVariable", "name": "ABI_id", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"typedArgs\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "CD", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 2, "variable": false}, "rhs": {"node": "KVariable", "name": "?_Gen4", "sort": {"node": "KSort", "name": "Bytes"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "VCallValue", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}, "rhs": {"node": "KVariable", "name": "?_Gen5", "sort": {"node": "KSort", "name": "WordStack"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": ".Bytes_BYTES-HOOKED_Bytes", "params": []}, "args": [], "arity": 0, "variable": false}, "rhs": {"node": "KVariable", "name": "?_Gen6", "sort": {"node": "KSort", "name": "Bytes"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen7", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": "infGas", "params": []}, "args": [{"node": "KVariable", "name": "VGas", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, "rhs": {"node": "KVariable", "name": "?_Gen8", "sort": {"node": "KSort", "name": "Gas"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen9", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen10", "sort": {"node": "KSort", "name": "Gas"}}, "rhs": {"node": "KVariable", "name": "?_Gen11", "sort": {"node": "KSort", "name": "Gas"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "VCallDepth", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen12", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_VSelfDestruct", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen13", "sort": {"node": "KSort", "name": "List"}}, "rhs": {"node": "KVariable", "name": "?_Gen14", "sort": {"node": "KSort", "name": "List"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Vrefund", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen15", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen16", "sort": {"node": "KSort", "name": "Set"}}, "rhs": {"node": "KVariable", "name": "?_Gen17", "sort": {"node": "KSort", "name": "Set"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen18", "sort": {"node": "KSort", "name": "Map"}}, "rhs": {"node": "KVariable", "name": "?_Gen19", "sort": {"node": "KSort", "name": "Map"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen20", "sort": {"node": "KSort", "name": "Set"}}, "rhs": {"node": "KVariable", "name": "?_Gen21", "sort": {"node": "KSort", "name": "Set"}}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen22", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen23", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KVariable", "name": "_Gen3", "sort": {"node": "KSort", "name": "PreviousExcessBlobGasCell"}}, {"node": "KVariable", "name": "_Gen4", "sort": {"node": "KSort", "name": "PreviousBlobGasUsedCell"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen24", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen25", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen26", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen27", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen28", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen29", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen30", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen31", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_BLOCK_NUMBER", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen32", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen33", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIME", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen34", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen35", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen36", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen37", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen39", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen40", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen41", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen42", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen38", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 21, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "VChainId", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID_balance", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "parseByteStack", "params": []}, "args": [{"node": "KToken", "token": "\"0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063957aa58c116100a2578063c959c42b11610071578063c959c42b14610479578063ca40c419146104a7578063cfc4af55146104f3578063cfdd330214610521578063fc7b6aee1461053f57610116565b8063957aa58c146103915780639c52a7f1146103af578063a2f91af2146103f3578063bf353dbb1461042157610116565b80634b43ed12116100e95780634b43ed12146102755780634e8b1dd5146102b757806365fae35e146102e55780637bd2bea7146103295780637d780d821461037357610116565b806326e027f11461011b57806329ae81141461014957806336569e77146101815780634423c5f1146101cb575b600080fd5b6101476004803603602081101561013157600080fd5b810190808035906020019092919050505061056d565b005b61017f6004803603604081101561015f57600080fd5b8101908080359060200190929190803590602001909291905050506108b4565b005b610189610ae7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101f7600480360360208110156101e157600080fd5b8101908080359060200190929190505050610b0d565b604051808681526020018581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018365ffffffffffff1665ffffffffffff1681526020018265ffffffffffff1665ffffffffffff1681526020019550505050505060405180910390f35b6102b56004803603606081101561028b57600080fd5b81019080803590602001909291908035906020019092919080359060200190929190505050610b87565b005b6102bf6113d1565b604051808265ffffffffffff1665ffffffffffff16815260200191505060405180910390f35b610327600480360360208110156102fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e9565b005b610331611517565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61037b61153d565b6040518082815260200191505060405180910390f35b610399611543565b6040518082815260200191505060405180910390f35b6103f1600480360360208110156103c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611549565b005b61041f6004803603602081101561040957600080fd5b8101908080359060200190929190505050611677565b005b6104636004803603602081101561043757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061185e565b6040518082815260200191505060405180910390f35b6104a56004803603602081101561048f57600080fd5b8101908080359060200190929190505050611876565b005b6104dd600480360360408110156104bd57600080fd5b810190808035906020019092919080359060200190929190505050611cd7565b6040518082815260200191505060405180910390f35b6104fb6120d0565b604051808265ffffffffffff1665ffffffffffff16815260200191505060405180910390f35b6105296120e8565b6040518082815260200191505060405180910390f35b61056b6004803603602081101561055557600080fd5b81019080803590602001909291905050506120ee565b005b6000600754146105e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f466c61707065722f7374696c6c2d6c697665000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f466c61707065722f6775792d6e6f742d7365740000000000000000000000000081525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b306001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000868152602001908152602001600020600001546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156107e757600080fd5b505af11580156107fb573d6000803e3d6000fd5b505050506001600082815260200190815260200160002060008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556002820160146101000a81549065ffffffffffff021916905560028201601a6101000a81549065ffffffffffff021916905550505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610968576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b7f626567000000000000000000000000000000000000000000000000000000000082141561099c5780600481905550610ab0565b7f74746c00000000000000000000000000000000000000000000000000000000008214156109ee5780600560006101000a81548165ffffffffffff021916908365ffffffffffff160217905550610aaf565b7f7461750000000000000000000000000000000000000000000000000000000000821415610a405780600560066101000a81548165ffffffffffff021916908365ffffffffffff160217905550610aae565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f466c61707065722f66696c652d756e7265636f676e697a65642d706172616d0081525060200191505060405180910390fd5b5b5b5961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a4505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60016020528060005260406000206000915090508060000154908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020160149054906101000a900465ffffffffffff169080600201601a9054906101000a900465ffffffffffff16905085565b600160075414610bff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f466c61707065722f6775792d6e6f742d7365740000000000000000000000000081525060200191505060405180910390fd5b426001600085815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff161180610d46575060006001600085815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16145b610db8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f466c61707065722f616c72656164792d66696e69736865642d7469630000000081525060200191505060405180910390fd5b4260016000858152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff1611610e5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f466c61707065722f616c72656164792d66696e69736865642d656e640000000081525060200191505060405180910390fd5b60016000848152602001908152602001600020600101548214610ee8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f466c61707065722f6c6f742d6e6f742d6d61746368696e67000000000000000081525060200191505060405180910390fd5b60016000848152602001908152602001600020600001548111610f73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6269642d6e6f742d6869676865720000000000000000000081525060200191505060405180910390fd5b610f9560045460016000868152602001908152602001600020600001546122c5565b610fa782670de0b6b3a76400006122c5565b101561101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f466c61707065722f696e73756666696369656e742d696e63726561736500000081525060200191505060405180910390fd5b6001600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461121b57600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b336001600087815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000888152602001908152602001600020600001546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156111ad57600080fd5b505af11580156111c1573d6000803e3d6000fd5b50505050336001600085815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3330600160008881526020019081526020016000206000015485036040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561131057600080fd5b505af1158015611324573d6000803e3d6000fd5b5050505080600160008581526020019081526020016000206000018190555061136142600560009054906101000a900465ffffffffffff166122f1565b6001600085815260200190815260200160002060020160146101000a81548165ffffffffffff021916908365ffffffffffff1602179055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a450505050565b600560009054906101000a900465ffffffffffff1681565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461149d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b60016000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b60075481565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461172b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b6000600781905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3033846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561181057600080fd5b505af1158015611824573d6000803e3d6000fd5b505050505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60006020528060005260406000206000915090505481565b6001600754146118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b60006001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16141580156119985750426001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff16108061199757504260016000838152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff16105b5b611a0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f466c61707065722f6e6f742d66696e697368656400000000000000000000000081525060200191505060405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b306001600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016000868152602001908152602001600020600101546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b158015611b3357600080fd5b505af1158015611b47573d6000803e3d6000fd5b50505050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac3060016000858152602001908152602001600020600001546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015611c0a57600080fd5b505af1158015611c1e573d6000803e3d6000fd5b505050506001600082815260200190815260200160002060008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556002820160146101000a81549065ffffffffffff021916905560028201601a6101000a81549065ffffffffffff021916905550505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600060016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611d8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f466c61707065722f6e6f742d617574686f72697a65640000000000000000000081525060200191505060405180910390fd5b600160075414611e05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6e6f742d6c6976650000000000000000000000000000000081525060200191505060405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60065410611e9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f466c61707065722f6f766572666c6f770000000000000000000000000000000081525060200191505060405180910390fd5b6006600081546001019190508190559050816001600083815260200190815260200160002060000181905550826001600083815260200190815260200160002060010181905550336001600083815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611f5642600560069054906101000a900465ffffffffffff166122f1565b60016000838152602001908152602001600020600201601a6101000a81548165ffffffffffff021916908365ffffffffffff160217905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb35783b3330866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561206b57600080fd5b505af115801561207f573d6000803e3d6000fd5b505050507fe6dde59cbc017becba89714a037778d234a84ce7f0a137487142a007e580d60981848460405180848152602001838152602001828152602001935050505060405180910390a192915050565b600560069054906101000a900465ffffffffffff1681565b60065481565b4260016000838152602001908152602001600020600201601a9054906101000a900465ffffffffffff1665ffffffffffff1610612193576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f466c61707065722f6e6f742d66696e697368656400000000000000000000000081525060200191505060405180910390fd5b60006001600083815260200190815260200160002060020160149054906101000a900465ffffffffffff1665ffffffffffff1614612239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f466c61707065722f6269642d616c72656164792d706c6163656400000000000081525060200191505060405180910390fd5b61225742600560069054906101000a900465ffffffffffff166122f1565b60016000838152602001908152602001600020600201601a6101000a81548165ffffffffffff021916908365ffffffffffff1602179055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b6000808214806122e257508282838502925082816122df57fe5b04145b6122eb57600080fd5b92915050565b60008265ffffffffffff1682840191508165ffffffffffff16101561231557600080fd5b9291505056fea265627a7a723158201acd0496ca3432003bac40639b3808573f9831f884ae4dc91d004d0deff68a7364736f6c634300050c0032\"", "sort": {"node": "KSort", "name": "String"}}], "arity": 1, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "7", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Live", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "DSToken", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_id", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Bid", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_id", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Lot", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_id", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KToken", "token": "2", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#WordPackAddrUInt48UInt48(_,_,_)_WORD-PACK_Int_Int_Int_Int", "params": []}, "args": [{"node": "KVariable", "name": "Guy", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Tic", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "End", "sort": {"node": "KSort", "name": "Int"}}], "arity": 3, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ACCT_ID_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 2, "variable": false}, "rhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "7", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Live", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "DSToken", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_id", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_id", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_id", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KToken", "token": "2", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ACCT_ID_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 2, "variable": false}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID_ORIG_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen43", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "Nonce_Flapper", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DSToken", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DSToken_balance", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "parseByteStack", "params": []}, "args": [{"node": "KToken", "token": "\"0x608060405234801561001057600080fd5b50600436106101735760003560e01c80637a9e5e4b116100de578063b753a98c11610097578063bf7e214f11610071578063bf7e214f14610684578063daea85c5146106ce578063dd62ed3e1461072a578063f2d5d56b146107a257610173565b8063b753a98c146105be578063bb35783b1461060c578063be9a65551461067a57610173565b80637a9e5e4b146104305780638da5cb5b1461047457806395d89b41146104be5780639dc29fac146104dc578063a0712d681461052a578063a9059cbb1461055857610173565b8063313ce56711610130578063313ce567146102ee57806340c10f191461030c57806342966c681461035a5780635ac801fe1461038857806370a08231146103b657806375f12b211461040e57610173565b806306fdde031461017857806307da68f514610196578063095ea7b3146101a057806313af40351461020657806318160ddd1461024a57806323b872dd14610268575b600080fd5b6101806107f0565b6040518082815260200191505060405180910390f35b61019e6107f6565b005b6101ec600480360360408110156101b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610970565b604051808215151515815260200191505060405180910390f35b6102486004803603602081101561021c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a07565b005b610252610b50565b6040518082815260200191505060405180910390f35b6102d46004803603606081101561027e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b59565b604051808215151515815260200191505060405180910390f35b6102f66110f1565b6040518082815260200191505060405180910390f35b6103586004803603604081101561032257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110f7565b005b6103866004803603602081101561037057600080fd5b810190808035906020019092919050505061130a565b005b6103b46004803603602081101561039e57600080fd5b8101908080359060200190929190505050611317565b005b6103f8600480360360208110156103cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113c1565b6040518082815260200191505060405180910390f35b61041661140a565b604051808215151515815260200191505060405180910390f35b6104726004803603602081101561044657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141d565b005b61047c611566565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104c661158c565b6040518082815260200191505060405180910390f35b610528600480360360408110156104f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611592565b005b6105566004803603602081101561054057600080fd5b8101908080359060200190929190505050611b30565b005b6105a46004803603604081101561056e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b3d565b604051808215151515815260200191505060405180910390f35b61060a600480360360408110156105d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b52565b005b6106786004803603606081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b62565b005b610682611b73565b005b61068c611ced565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610710600480360360208110156106e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d13565b604051808215151515815260200191505060405180910390f35b61078c6004803603604081101561074057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dc9565b6040518082815260200191505060405180910390f35b6107ee600480360360408110156107b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e50565b005b60075481565b610824336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610896576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46001600460146101000a81548160ff021916908315150217905550505050565b6000600460149054906101000a900460ff16156109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b6109ff83836120bb565b905092915050565b610a35336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610aa7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fce241d7ca1f669fee44b6fc00b8eba2df3bb514eed0f6f668f8f89096e81ed9460405160405180910390a250565b60008054905090565b6000600460149054906101000a900460ff1615610bde576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610cb657507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b15610eb45781600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610dad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b610e33600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610f69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b610fb2600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061103e600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612230565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b60065481565b611125336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611197576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff161561121a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611263600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482612230565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112b260005482612230565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885826040518082815260200191505060405180910390a25050565b6113143382611592565b50565b611345336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b8060078190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600460149054906101000a900460ff1681565b61144b336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f1abebea81bfa2637f28358c371278fb15ede7ea8dd28d2e03b112ff6d936ada460405160405180910390a250565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b6115c0336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff16156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561178d57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b1561198b5780600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b61190a600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b611a89600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ad8600054826121ad565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a25050565b611b3a33826110f7565b50565b6000611b4a338484610b59565b905092915050565b611b5d338383610b59565b505050565b611b6d838383610b59565b50505050565b611ba1336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611c13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46000600460146101000a81548160ff021916908315150217905550505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460149054906101000a900460ff1615611d98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611dc2827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6120bb565b9050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e5b823383610b59565b505050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e9f57600190506120b5565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611efe57600190506120b5565b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f5e57600090506120b5565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b70096138430856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168152602001935050505060206040518083038186803b15801561207757600080fd5b505afa15801561208b573d6000803e3d6000fd5b505050506040513d60208110156120a157600080fd5b810190808051906020019092919050505090505b92915050565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b600082828403915081111561222a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f64732d6d6174682d7375622d756e646572666c6f77000000000000000000000081525060200191505060405180910390fd5b92915050565b60008282840191508110156122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d6d6174682d6164642d6f766572666c6f7700000000000000000000000081525060200191505060405180910390fd5b9291505056fea265627a7a7231582042e4b52e52d434217b55a1ee90f412a7c49b1fd0406bb9ec1168e2a7c1fbad0e64736f6c634300050c0032\"", "sort": {"node": "KSort", "name": "String"}}], "arity": 1, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Gem_a", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "Guy", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Gem_g", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "4", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#WordPackAddrUInt8(_,_)_WORD-PACK_Int_Int_Int", "params": []}, "args": [{"node": "KVariable", "name": "Owner", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Stopped", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "DSToken_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 2, "variable": false}, "rhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_a", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Bid", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "Guy", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_g", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Bid", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "4", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#WordPackAddrUInt8(_,_)_WORD-PACK_Int_Int_Int", "params": []}, "args": [{"node": "KVariable", "name": "Owner", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Stopped", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "DSToken_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 2, "variable": false}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DSToken_ORIG_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen44", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "Nonce_DSToken", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "_DotVar4", "sort": {"node": "KSort", "name": "AccountCellMap"}}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen45", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen46", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen47", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}, {"node": "KVariable", "name": "_Gen5", "sort": {"node": "KSort", "name": "WithdrawalsPendingCell"}}, {"node": "KVariable", "name": "_Gen6", "sort": {"node": "KSort", "name": "WithdrawalsOrderCell"}}, {"node": "KVariable", "name": "_Gen7", "sort": {"node": "KSort", "name": "WithdrawalsCell"}}], "arity": 8, "variable": false}], "arity": 2, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen48", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen49", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "requires": {"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "execute", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}, "rhs": {"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "halt", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "sort": {"node": "KSort", "name": "K"}}], "arity": 2}}], "arity": 1, "variable": false}, {"node": "KVariable", "name": "_DotVar1", "sort": {"node": "KSort", "name": "ExitCodeCell"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "ISTANBUL_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Bytes_BYTES-HOOKED_Bytes", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen0", "sort": {"node": "KSort", "name": "StatusCode"}}, "rhs": {"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_SUCCESS_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_VCallStack", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen1", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen2", "sort": {"node": "KSort", "name": "Set"}}, "rhs": {"node": "KVariable", "name": "?_Gen3", "sort": {"node": "KSort", "name": "Set"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "parseByteStack", "params": []}, "args": [{"node": "KToken", "token": "\"0x608060405234801561001057600080fd5b50600436106101735760003560e01c80637a9e5e4b116100de578063b753a98c11610097578063bf7e214f11610071578063bf7e214f14610684578063daea85c5146106ce578063dd62ed3e1461072a578063f2d5d56b146107a257610173565b8063b753a98c146105be578063bb35783b1461060c578063be9a65551461067a57610173565b80637a9e5e4b146104305780638da5cb5b1461047457806395d89b41146104be5780639dc29fac146104dc578063a0712d681461052a578063a9059cbb1461055857610173565b8063313ce56711610130578063313ce567146102ee57806340c10f191461030c57806342966c681461035a5780635ac801fe1461038857806370a08231146103b657806375f12b211461040e57610173565b806306fdde031461017857806307da68f514610196578063095ea7b3146101a057806313af40351461020657806318160ddd1461024a57806323b872dd14610268575b600080fd5b6101806107f0565b6040518082815260200191505060405180910390f35b61019e6107f6565b005b6101ec600480360360408110156101b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610970565b604051808215151515815260200191505060405180910390f35b6102486004803603602081101561021c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a07565b005b610252610b50565b6040518082815260200191505060405180910390f35b6102d46004803603606081101561027e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b59565b604051808215151515815260200191505060405180910390f35b6102f66110f1565b6040518082815260200191505060405180910390f35b6103586004803603604081101561032257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110f7565b005b6103866004803603602081101561037057600080fd5b810190808035906020019092919050505061130a565b005b6103b46004803603602081101561039e57600080fd5b8101908080359060200190929190505050611317565b005b6103f8600480360360208110156103cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113c1565b6040518082815260200191505060405180910390f35b61041661140a565b604051808215151515815260200191505060405180910390f35b6104726004803603602081101561044657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141d565b005b61047c611566565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104c661158c565b6040518082815260200191505060405180910390f35b610528600480360360408110156104f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611592565b005b6105566004803603602081101561054057600080fd5b8101908080359060200190929190505050611b30565b005b6105a46004803603604081101561056e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b3d565b604051808215151515815260200191505060405180910390f35b61060a600480360360408110156105d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b52565b005b6106786004803603606081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b62565b005b610682611b73565b005b61068c611ced565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610710600480360360208110156106e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d13565b604051808215151515815260200191505060405180910390f35b61078c6004803603604081101561074057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dc9565b6040518082815260200191505060405180910390f35b6107ee600480360360408110156107b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e50565b005b60075481565b610824336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610896576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46001600460146101000a81548160ff021916908315150217905550505050565b6000600460149054906101000a900460ff16156109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b6109ff83836120bb565b905092915050565b610a35336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610aa7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fce241d7ca1f669fee44b6fc00b8eba2df3bb514eed0f6f668f8f89096e81ed9460405160405180910390a250565b60008054905090565b6000600460149054906101000a900460ff1615610bde576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610cb657507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b15610eb45781600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610dad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b610e33600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610f69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b610fb2600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061103e600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612230565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b60065481565b611125336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611197576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff161561121a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611263600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482612230565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112b260005482612230565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885826040518082815260200191505060405180910390a25050565b6113143382611592565b50565b611345336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b8060078190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600460149054906101000a900460ff1681565b61144b336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f1abebea81bfa2637f28358c371278fb15ede7ea8dd28d2e03b112ff6d936ada460405160405180910390a250565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b6115c0336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff16156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561178d57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b1561198b5780600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b61190a600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b611a89600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ad8600054826121ad565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a25050565b611b3a33826110f7565b50565b6000611b4a338484610b59565b905092915050565b611b5d338383610b59565b505050565b611b6d838383610b59565b50505050565b611ba1336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611c13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46000600460146101000a81548160ff021916908315150217905550505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460149054906101000a900460ff1615611d98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611dc2827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6120bb565b9050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e5b823383610b59565b505050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e9f57600190506120b5565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611efe57600190506120b5565b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f5e57600090506120b5565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b70096138430856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168152602001935050505060206040518083038186803b15801561207757600080fd5b505afa15801561208b573d6000803e3d6000fd5b505050506040513d60208110156120a157600080fd5b810190808051906020019092919050505090505b92915050565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b600082828403915081111561222a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f64732d6d6174682d7375622d756e646572666c6f77000000000000000000000081525060200191505060405180910390fd5b92915050565b60008282840191508110156122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d6d6174682d6164642d6f766572666c6f7700000000000000000000000081525060200191505060405180910390fd5b9291505056fea265627a7a7231582042e4b52e52d434217b55a1ee90f412a7c49b1fd0406bb9ec1168e2a7c1fbad0e64736f6c634300050c0032\"", "sort": {"node": "KSort", "name": "String"}}], "arity": 1, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "computeValidJumpDests", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "parseByteStack", "params": []}, "args": [{"node": "KToken", "token": "\"0x608060405234801561001057600080fd5b50600436106101735760003560e01c80637a9e5e4b116100de578063b753a98c11610097578063bf7e214f11610071578063bf7e214f14610684578063daea85c5146106ce578063dd62ed3e1461072a578063f2d5d56b146107a257610173565b8063b753a98c146105be578063bb35783b1461060c578063be9a65551461067a57610173565b80637a9e5e4b146104305780638da5cb5b1461047457806395d89b41146104be5780639dc29fac146104dc578063a0712d681461052a578063a9059cbb1461055857610173565b8063313ce56711610130578063313ce567146102ee57806340c10f191461030c57806342966c681461035a5780635ac801fe1461038857806370a08231146103b657806375f12b211461040e57610173565b806306fdde031461017857806307da68f514610196578063095ea7b3146101a057806313af40351461020657806318160ddd1461024a57806323b872dd14610268575b600080fd5b6101806107f0565b6040518082815260200191505060405180910390f35b61019e6107f6565b005b6101ec600480360360408110156101b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610970565b604051808215151515815260200191505060405180910390f35b6102486004803603602081101561021c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a07565b005b610252610b50565b6040518082815260200191505060405180910390f35b6102d46004803603606081101561027e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b59565b604051808215151515815260200191505060405180910390f35b6102f66110f1565b6040518082815260200191505060405180910390f35b6103586004803603604081101561032257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110f7565b005b6103866004803603602081101561037057600080fd5b810190808035906020019092919050505061130a565b005b6103b46004803603602081101561039e57600080fd5b8101908080359060200190929190505050611317565b005b6103f8600480360360208110156103cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113c1565b6040518082815260200191505060405180910390f35b61041661140a565b604051808215151515815260200191505060405180910390f35b6104726004803603602081101561044657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141d565b005b61047c611566565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104c661158c565b6040518082815260200191505060405180910390f35b610528600480360360408110156104f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611592565b005b6105566004803603602081101561054057600080fd5b8101908080359060200190929190505050611b30565b005b6105a46004803603604081101561056e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b3d565b604051808215151515815260200191505060405180910390f35b61060a600480360360408110156105d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b52565b005b6106786004803603606081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b62565b005b610682611b73565b005b61068c611ced565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610710600480360360208110156106e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d13565b604051808215151515815260200191505060405180910390f35b61078c6004803603604081101561074057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dc9565b6040518082815260200191505060405180910390f35b6107ee600480360360408110156107b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e50565b005b60075481565b610824336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610896576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46001600460146101000a81548160ff021916908315150217905550505050565b6000600460149054906101000a900460ff16156109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b6109ff83836120bb565b905092915050565b610a35336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610aa7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fce241d7ca1f669fee44b6fc00b8eba2df3bb514eed0f6f668f8f89096e81ed9460405160405180910390a250565b60008054905090565b6000600460149054906101000a900460ff1615610bde576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610cb657507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b15610eb45781600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610dad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b610e33600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610f69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b610fb2600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061103e600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612230565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b60065481565b611125336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611197576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff161561121a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611263600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482612230565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112b260005482612230565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885826040518082815260200191505060405180910390a25050565b6113143382611592565b50565b611345336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b8060078190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600460149054906101000a900460ff1681565b61144b336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f1abebea81bfa2637f28358c371278fb15ede7ea8dd28d2e03b112ff6d936ada460405160405180910390a250565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b6115c0336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff16156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561178d57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b1561198b5780600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b61190a600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b611a89600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ad8600054826121ad565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a25050565b611b3a33826110f7565b50565b6000611b4a338484610b59565b905092915050565b611b5d338383610b59565b505050565b611b6d838383610b59565b50505050565b611ba1336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611c13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46000600460146101000a81548160ff021916908315150217905550505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460149054906101000a900460ff1615611d98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611dc2827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6120bb565b9050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e5b823383610b59565b505050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e9f57600190506120b5565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611efe57600190506120b5565b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f5e57600090506120b5565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b70096138430856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168152602001935050505060206040518083038186803b15801561207757600080fd5b505afa15801561208b573d6000803e3d6000fd5b505050506040513d60208110156120a157600080fd5b810190808051906020019092919050505090505b92915050565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b600082828403915081111561222a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f64732d6d6174682d7375622d756e646572666c6f77000000000000000000000081525060200191505060405180910390fd5b92915050565b60008282840191508110156122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d6d6174682d6164642d6f766572666c6f7700000000000000000000000081525060200191505060405180910390fd5b9291505056fea265627a7a7231582042e4b52e52d434217b55a1ee90f412a7c49b1fd0406bb9ec1168e2a7c1fbad0e64736f6c634300050c0032\"", "sort": {"node": "KSort", "name": "String"}}], "arity": 1, "variable": false}], "arity": 1, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_+Bytes__BYTES-HOOKED_Bytes_Bytes_Bytes", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "abiCallData", "params": []}, "args": [{"node": "KToken", "token": "\"move\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "typedArgs", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "abi_type_address", "params": []}, "args": [{"node": "KVariable", "name": "ABI_src", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "typedArgs", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "abi_type_address", "params": []}, "args": [{"node": "KVariable", "name": "ABI_dst", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "typedArgs", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "abi_type_uint256", "params": []}, "args": [{"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"typedArgs\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "CD", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 2, "variable": false}, "rhs": {"node": "KVariable", "name": "?_Gen4", "sort": {"node": "KSort", "name": "Bytes"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "VCallValue", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}, "rhs": {"node": "KVariable", "name": "?_Gen5", "sort": {"node": "KSort", "name": "WordStack"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": ".Bytes_BYTES-HOOKED_Bytes", "params": []}, "args": [], "arity": 0, "variable": false}, "rhs": {"node": "KVariable", "name": "?_Gen6", "sort": {"node": "KSort", "name": "Bytes"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen7", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": "infGas", "params": []}, "args": [{"node": "KVariable", "name": "VGas", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, "rhs": {"node": "KApply", "label": {"node": "KLabel", "name": "ite", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_==Int_", "params": []}, "args": [{"node": "KVariable", "name": "Allowance", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KToken", "token": "115792089237316195423570985008687907853269984665640564039457584007913129639935", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "infGas", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "VGas", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "Csstore", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "ISTANBUL_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_s", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Gem_s", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Junk_1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 4, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "Csstore", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "ISTANBUL_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_d", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Gem_d", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Junk_2", "sort": {"node": "KSort", "name": "Int"}}], "arity": 4, "variable": false}], "arity": 2, "variable": false}, {"node": "KToken", "token": "-7281", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "infGas", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "VGas", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "Csstore", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "ISTANBUL_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "Allowance", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Allowance", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Junk_0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 4, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "Csstore", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "ISTANBUL_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_s", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Gem_s", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Junk_1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 4, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "Csstore", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "ISTANBUL_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_d", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Gem_d", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Junk_2", "sort": {"node": "KSort", "name": "Int"}}], "arity": 4, "variable": false}], "arity": 2, "variable": false}, {"node": "KToken", "token": "-9538", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 1, "variable": false}], "arity": 3, "variable": false}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen8", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen9", "sort": {"node": "KSort", "name": "Gas"}}, "rhs": {"node": "KVariable", "name": "?_Gen10", "sort": {"node": "KSort", "name": "Gas"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "VCallDepth", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen11", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_VSelfDestruct", "sort": {"node": "KSort", "name": "Set"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen12", "sort": {"node": "KSort", "name": "List"}}, "rhs": {"node": "KVariable", "name": "?_Gen13", "sort": {"node": "KSort", "name": "List"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Vrefund", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen14", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen15", "sort": {"node": "KSort", "name": "Set"}}, "rhs": {"node": "KVariable", "name": "?_Gen16", "sort": {"node": "KSort", "name": "Set"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen17", "sort": {"node": "KSort", "name": "Map"}}, "rhs": {"node": "KVariable", "name": "?_Gen18", "sort": {"node": "KSort", "name": "Map"}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen19", "sort": {"node": "KSort", "name": "Set"}}, "rhs": {"node": "KVariable", "name": "?_Gen20", "sort": {"node": "KSort", "name": "Set"}}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen21", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen22", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KVariable", "name": "_Gen3", "sort": {"node": "KSort", "name": "PreviousExcessBlobGasCell"}}, {"node": "KVariable", "name": "_Gen4", "sort": {"node": "KSort", "name": "PreviousBlobGasUsedCell"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen23", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen24", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen25", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen26", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen27", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen28", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen29", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen30", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_BLOCK_NUMBER", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen31", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen32", "sort": {"node": "KSort", "name": "Gas"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIME", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen33", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen34", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen35", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen36", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen38", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen39", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen40", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen41", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen37", "sort": {"node": "KSort", "name": "JSON"}}], "arity": 1, "variable": false}], "arity": 21, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "VChainId", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ID_balance", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "parseByteStack", "params": []}, "args": [{"node": "KToken", "token": "\"0x608060405234801561001057600080fd5b50600436106101735760003560e01c80637a9e5e4b116100de578063b753a98c11610097578063bf7e214f11610071578063bf7e214f14610684578063daea85c5146106ce578063dd62ed3e1461072a578063f2d5d56b146107a257610173565b8063b753a98c146105be578063bb35783b1461060c578063be9a65551461067a57610173565b80637a9e5e4b146104305780638da5cb5b1461047457806395d89b41146104be5780639dc29fac146104dc578063a0712d681461052a578063a9059cbb1461055857610173565b8063313ce56711610130578063313ce567146102ee57806340c10f191461030c57806342966c681461035a5780635ac801fe1461038857806370a08231146103b657806375f12b211461040e57610173565b806306fdde031461017857806307da68f514610196578063095ea7b3146101a057806313af40351461020657806318160ddd1461024a57806323b872dd14610268575b600080fd5b6101806107f0565b6040518082815260200191505060405180910390f35b61019e6107f6565b005b6101ec600480360360408110156101b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610970565b604051808215151515815260200191505060405180910390f35b6102486004803603602081101561021c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a07565b005b610252610b50565b6040518082815260200191505060405180910390f35b6102d46004803603606081101561027e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b59565b604051808215151515815260200191505060405180910390f35b6102f66110f1565b6040518082815260200191505060405180910390f35b6103586004803603604081101561032257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110f7565b005b6103866004803603602081101561037057600080fd5b810190808035906020019092919050505061130a565b005b6103b46004803603602081101561039e57600080fd5b8101908080359060200190929190505050611317565b005b6103f8600480360360208110156103cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113c1565b6040518082815260200191505060405180910390f35b61041661140a565b604051808215151515815260200191505060405180910390f35b6104726004803603602081101561044657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141d565b005b61047c611566565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104c661158c565b6040518082815260200191505060405180910390f35b610528600480360360408110156104f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611592565b005b6105566004803603602081101561054057600080fd5b8101908080359060200190929190505050611b30565b005b6105a46004803603604081101561056e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b3d565b604051808215151515815260200191505060405180910390f35b61060a600480360360408110156105d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b52565b005b6106786004803603606081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b62565b005b610682611b73565b005b61068c611ced565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610710600480360360208110156106e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d13565b604051808215151515815260200191505060405180910390f35b61078c6004803603604081101561074057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dc9565b6040518082815260200191505060405180910390f35b6107ee600480360360408110156107b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e50565b005b60075481565b610824336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610896576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46001600460146101000a81548160ff021916908315150217905550505050565b6000600460149054906101000a900460ff16156109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b6109ff83836120bb565b905092915050565b610a35336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b610aa7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fce241d7ca1f669fee44b6fc00b8eba2df3bb514eed0f6f668f8f89096e81ed9460405160405180910390a250565b60008054905090565b6000600460149054906101000a900460ff1615610bde576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610cb657507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b15610eb45781600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610dad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b610e33600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610f69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b610fb2600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836121ad565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061103e600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612230565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b60065481565b611125336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611197576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff161561121a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611263600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482612230565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112b260005482612230565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885826040518082815260200191505060405180910390a25050565b6113143382611592565b50565b611345336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b8060078190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600460149054906101000a900460ff1681565b61144b336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b6114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f1abebea81bfa2637f28358c371278fb15ede7ea8dd28d2e03b112ff6d936ada460405160405180910390a250565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b6115c0336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b600460149054906101000a900460ff16156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561178d57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b1561198b5780600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f64732d746f6b656e2d696e73756666696369656e742d617070726f76616c000081525060200191505060405180910390fd5b61190a600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f64732d746f6b656e2d696e73756666696369656e742d62616c616e636500000081525060200191505060405180910390fd5b611a89600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826121ad565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ad8600054826121ad565b6000819055508173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a25050565b611b3a33826110f7565b50565b6000611b4a338484610b59565b905092915050565b611b5d338383610b59565b505050565b611b6d838383610b59565b50505050565b611ba1336000357fffffffff0000000000000000000000000000000000000000000000000000000016611e60565b611c13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d617574682d756e617574686f72697a656400000000000000000000000081525060200191505060405180910390fd5b60008060006004359250602435915034905081833373ffffffffffffffffffffffffffffffffffffffff166000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168460003660405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a46000600460146101000a81548160ff021916908315150217905550505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460149054906101000a900460ff1615611d98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f64732d73746f702d69732d73746f70706564000000000000000000000000000081525060200191505060405180910390fd5b611dc2827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6120bb565b9050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e5b823383610b59565b505050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e9f57600190506120b5565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611efe57600190506120b5565b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f5e57600090506120b5565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b70096138430856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168152602001935050505060206040518083038186803b15801561207757600080fd5b505afa15801561208b573d6000803e3d6000fd5b505050506040513d60208110156120a157600080fd5b810190808051906020019092919050505090505b92915050565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b600082828403915081111561222a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f64732d6d6174682d7375622d756e646572666c6f77000000000000000000000081525060200191505060405180910390fd5b92915050565b60008282840191508110156122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d6d6174682d6164642d6f766572666c6f7700000000000000000000000081525060200191505060405180910390fd5b9291505056fea265627a7a7231582042e4b52e52d434217b55a1ee90f412a7c49b1fd0406bb9ec1168e2a7c1fbad0e64736f6c634300050c0032\"", "sort": {"node": "KSort", "name": "String"}}], "arity": 1, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "2", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_src", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Allowance", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_src", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Gem_s", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_dst", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Gem_d", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "4", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#WordPackAddrUInt8(_,_)_WORD-PACK_Int_Int_Int", "params": []}, "args": [{"node": "KVariable", "name": "Owner", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Stopped", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ACCT_ID_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 2, "variable": false}, "rhs": {"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "2", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_src", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "ite", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_==Int_", "params": []}, "args": [{"node": "KVariable", "name": "Allowance", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KToken", "token": "115792089237316195423570985008687907853269984665640564039457584007913129639935", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "Allowance", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "Allowance", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 3, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_src", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_-Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_s", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_dst", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_+Int_", "params": []}, "args": [{"node": "KVariable", "name": "Gem_d", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ABI_wad", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KToken", "token": "4", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#WordPackAddrUInt8(_,_)_WORD-PACK_Int_Int_Int", "params": []}, "args": [{"node": "KVariable", "name": "Owner", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "Stopped", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ACCT_ID_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 2, "variable": false}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Map_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "2", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_src", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Junk_0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_src", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Junk_1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_|->_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "hashLoc", "params": []}, "args": [{"node": "KToken", "token": "\"Solidity\"", "sort": {"node": "KSort", "name": "String"}}, {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "intList", "params": []}, "args": [{"node": "KVariable", "name": "ABI_dst", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".List{\"intList\"}", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 3, "variable": false}, {"node": "KVariable", "name": "Junk_2", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ACCT_ID_ORIG_STORAGE", "sort": {"node": "KSort", "name": "Map"}}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen42", "sort": {"node": "KSort", "name": "Map"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "Nonce_DSToken", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KVariable", "name": "_DotVar4", "sort": {"node": "KSort", "name": "AccountCellMap"}}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen43", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen44", "sort": {"node": "KSort", "name": "List"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "_Gen45", "sort": {"node": "KSort", "name": "MessageCellMap"}}], "arity": 1, "variable": false}, {"node": "KVariable", "name": "_Gen5", "sort": {"node": "KSort", "name": "WithdrawalsPendingCell"}}, {"node": "KVariable", "name": "_Gen6", "sort": {"node": "KSort", "name": "WithdrawalsOrderCell"}}, {"node": "KVariable", "name": "_Gen7", "sort": {"node": "KSort", "name": "WithdrawalsCell"}}], "arity": 8, "variable": false}], "arity": 2, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KRewrite", "lhs": {"node": "KVariable", "name": "_Gen46", "sort": {"node": "KSort", "name": "Int"}}, "rhs": {"node": "KVariable", "name": "?_Gen47", "sort": {"node": "KSort", "name": "Int"}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "requires": {"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_andBool_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ACCT_ID", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_ _ _ - + ... + VChainId @@ -232,7 +233,8 @@ module FLAPPER-YANK-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/flipper-addu48u48-fail-rough-spec.k b/tests/specs/mcd-structured/flipper-addu48u48-fail-rough-spec.k index c88d650504..01fbdeb8d3 100644 --- a/tests/specs/mcd-structured/flipper-addu48u48-fail-rough-spec.k +++ b/tests/specs/mcd-structured/flipper-addu48u48-fail-rough-spec.k @@ -67,7 +67,8 @@ module FLIPPER-ADDU48U48-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/flipper-bids-pass-rough-spec.k b/tests/specs/mcd-structured/flipper-bids-pass-rough-spec.k index d64fcedcc1..cd9d1f839a 100644 --- a/tests/specs/mcd-structured/flipper-bids-pass-rough-spec.k +++ b/tests/specs/mcd-structured/flipper-bids-pass-rough-spec.k @@ -67,7 +67,8 @@ module FLIPPER-BIDS-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/flipper-tau-pass-spec.k b/tests/specs/mcd-structured/flipper-tau-pass-spec.k index 49375d66c3..8ed2a13342 100644 --- a/tests/specs/mcd-structured/flipper-tau-pass-spec.k +++ b/tests/specs/mcd-structured/flipper-tau-pass-spec.k @@ -67,7 +67,8 @@ module FLIPPER-TAU-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/flipper-ttl-pass-spec.k b/tests/specs/mcd-structured/flipper-ttl-pass-spec.k index 16ac1c10cc..1681dc8917 100644 --- a/tests/specs/mcd-structured/flipper-ttl-pass-spec.k +++ b/tests/specs/mcd-structured/flipper-ttl-pass-spec.k @@ -67,7 +67,8 @@ module FLIPPER-TTL-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/flopper-cage-pass-spec.k b/tests/specs/mcd-structured/flopper-cage-pass-spec.k index 5aa881e808..2a33059cf7 100644 --- a/tests/specs/mcd-structured/flopper-cage-pass-spec.k +++ b/tests/specs/mcd-structured/flopper-cage-pass-spec.k @@ -66,7 +66,8 @@ module FLOPPER-CAGE-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/flopper-dent-guy-diff-tic-not-0-pass-rough-spec.k b/tests/specs/mcd-structured/flopper-dent-guy-diff-tic-not-0-pass-rough-spec.k index 04c21a6bb7..965804fa90 100644 --- a/tests/specs/mcd-structured/flopper-dent-guy-diff-tic-not-0-pass-rough-spec.k +++ b/tests/specs/mcd-structured/flopper-dent-guy-diff-tic-not-0-pass-rough-spec.k @@ -67,7 +67,8 @@ module FLOPPER-DENT-GUY-DIFF-TIC-NOT-0-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -244,7 +245,8 @@ module FLOPPER-DENT-GUY-DIFF-TIC-NOT-0-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -349,7 +351,8 @@ module FLOPPER-DENT-GUY-DIFF-TIC-NOT-0-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -454,7 +457,8 @@ module FLOPPER-DENT-GUY-DIFF-TIC-NOT-0-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/flopper-dent-guy-same-pass-rough-spec.k b/tests/specs/mcd-structured/flopper-dent-guy-same-pass-rough-spec.k index b611da9d70..8c553a7680 100644 --- a/tests/specs/mcd-structured/flopper-dent-guy-same-pass-rough-spec.k +++ b/tests/specs/mcd-structured/flopper-dent-guy-same-pass-rough-spec.k @@ -67,7 +67,8 @@ module FLOPPER-DENT-GUY-SAME-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -213,7 +214,8 @@ module FLOPPER-DENT-GUY-SAME-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -317,7 +319,8 @@ module FLOPPER-DENT-GUY-SAME-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/flopper-file-pass-rough-spec.k b/tests/specs/mcd-structured/flopper-file-pass-rough-spec.k index a216bd9fc9..052d7ed921 100644 --- a/tests/specs/mcd-structured/flopper-file-pass-rough-spec.k +++ b/tests/specs/mcd-structured/flopper-file-pass-rough-spec.k @@ -65,7 +65,8 @@ module FLOPPER-FILE-PASS-ROUGH-SPEC // _ // _ // - // + // ... + // // // VChainId // diff --git a/tests/specs/mcd-structured/flopper-kick-pass-rough-spec.k b/tests/specs/mcd-structured/flopper-kick-pass-rough-spec.k index 3cdb365551..8036c8ed76 100644 --- a/tests/specs/mcd-structured/flopper-kick-pass-rough-spec.k +++ b/tests/specs/mcd-structured/flopper-kick-pass-rough-spec.k @@ -67,7 +67,8 @@ module FLOPPER-KICK-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -202,7 +203,8 @@ module FLOPPER-KICK-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/flopper-tick-pass-rough-spec.k b/tests/specs/mcd-structured/flopper-tick-pass-rough-spec.k index c2da0f10d9..f5915978cc 100644 --- a/tests/specs/mcd-structured/flopper-tick-pass-rough-spec.k +++ b/tests/specs/mcd-structured/flopper-tick-pass-rough-spec.k @@ -67,7 +67,8 @@ module FLOPPER-TICK-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -191,7 +192,8 @@ module FLOPPER-TICK-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/pot-join-pass-rough-spec.k b/tests/specs/mcd-structured/pot-join-pass-rough-spec.k index 03b4636d96..89a8785bf3 100644 --- a/tests/specs/mcd-structured/pot-join-pass-rough-spec.k +++ b/tests/specs/mcd-structured/pot-join-pass-rough-spec.k @@ -67,7 +67,8 @@ module POT-JOIN-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -221,7 +222,8 @@ module POT-JOIN-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -329,7 +331,8 @@ module POT-JOIN-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -434,7 +437,8 @@ module POT-JOIN-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vat-addui-fail-rough-spec.k b/tests/specs/mcd-structured/vat-addui-fail-rough-spec.k index f5fa371c37..ee089447c5 100644 --- a/tests/specs/mcd-structured/vat-addui-fail-rough-spec.k +++ b/tests/specs/mcd-structured/vat-addui-fail-rough-spec.k @@ -67,7 +67,8 @@ module VAT-ADDUI-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vat-arithmetic-spec.k b/tests/specs/mcd-structured/vat-arithmetic-spec.k index 6fd4fcae42..4faa59c3b7 100644 --- a/tests/specs/mcd-structured/vat-arithmetic-spec.k +++ b/tests/specs/mcd-structured/vat-arithmetic-spec.k @@ -66,7 +66,8 @@ module VAT-ARITHMETIC-SPEC _ _ - + ... + VChainId @@ -169,7 +170,8 @@ module VAT-ARITHMETIC-SPEC _ _ - + ... + VChainId @@ -266,7 +268,8 @@ module VAT-ARITHMETIC-SPEC _ _ - + ... + VChainId @@ -369,7 +372,8 @@ module VAT-ARITHMETIC-SPEC _ _ - + ... + VChainId @@ -469,7 +473,8 @@ module VAT-ARITHMETIC-SPEC _ _ - + ... + VChainId @@ -569,7 +574,8 @@ module VAT-ARITHMETIC-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vat-dai-pass-spec.k b/tests/specs/mcd-structured/vat-dai-pass-spec.k index fbda8557ff..7148092642 100644 --- a/tests/specs/mcd-structured/vat-dai-pass-spec.k +++ b/tests/specs/mcd-structured/vat-dai-pass-spec.k @@ -66,7 +66,8 @@ module VAT-DAI-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vat-deny-diff-fail-rough-spec.k b/tests/specs/mcd-structured/vat-deny-diff-fail-rough-spec.k index d3877ebf31..9ecdd28227 100644 --- a/tests/specs/mcd-structured/vat-deny-diff-fail-rough-spec.k +++ b/tests/specs/mcd-structured/vat-deny-diff-fail-rough-spec.k @@ -67,7 +67,8 @@ module VAT-DENY-DIFF-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vat-flux-diff-pass-rough-spec.k b/tests/specs/mcd-structured/vat-flux-diff-pass-rough-spec.k index 7e41b2070f..7050abe044 100644 --- a/tests/specs/mcd-structured/vat-flux-diff-pass-rough-spec.k +++ b/tests/specs/mcd-structured/vat-flux-diff-pass-rough-spec.k @@ -68,7 +68,8 @@ module VAT-FLUX-DIFF-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vat-flux-diff-pass-spec.k b/tests/specs/mcd-structured/vat-flux-diff-pass-spec.k index d24cdc59a9..f8f87e6fa5 100644 --- a/tests/specs/mcd-structured/vat-flux-diff-pass-spec.k +++ b/tests/specs/mcd-structured/vat-flux-diff-pass-spec.k @@ -66,7 +66,8 @@ module VAT-FLUX-DIFF-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vat-fold-pass-rough-spec.k b/tests/specs/mcd-structured/vat-fold-pass-rough-spec.k index eeb86b9daa..a4fc40cfd8 100644 --- a/tests/specs/mcd-structured/vat-fold-pass-rough-spec.k +++ b/tests/specs/mcd-structured/vat-fold-pass-rough-spec.k @@ -69,7 +69,8 @@ module VAT-FOLD-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vat-fork-diff-pass-rough-spec.k b/tests/specs/mcd-structured/vat-fork-diff-pass-rough-spec.k index 2c8d58f07a..d2fd259abe 100644 --- a/tests/specs/mcd-structured/vat-fork-diff-pass-rough-spec.k +++ b/tests/specs/mcd-structured/vat-fork-diff-pass-rough-spec.k @@ -69,7 +69,8 @@ module VAT-FORK-DIFF-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vat-frob-diff-zero-dart-pass-rough-spec.k b/tests/specs/mcd-structured/vat-frob-diff-zero-dart-pass-rough-spec.k index ab7aba860f..c700381128 100644 --- a/tests/specs/mcd-structured/vat-frob-diff-zero-dart-pass-rough-spec.k +++ b/tests/specs/mcd-structured/vat-frob-diff-zero-dart-pass-rough-spec.k @@ -69,7 +69,8 @@ module VAT-FROB-DIFF-ZERO-DART-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vat-heal-pass-spec.k b/tests/specs/mcd-structured/vat-heal-pass-spec.k index 9b424e9c1d..d149057255 100644 --- a/tests/specs/mcd-structured/vat-heal-pass-spec.k +++ b/tests/specs/mcd-structured/vat-heal-pass-spec.k @@ -66,7 +66,8 @@ module VAT-HEAL-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vat-move-diff-rough-spec.k b/tests/specs/mcd-structured/vat-move-diff-rough-spec.k index f088510a9a..cd7ff03ac2 100644 --- a/tests/specs/mcd-structured/vat-move-diff-rough-spec.k +++ b/tests/specs/mcd-structured/vat-move-diff-rough-spec.k @@ -70,7 +70,8 @@ module VAT-MOVE-DIFF-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vat-sin-pass-spec.k b/tests/specs/mcd-structured/vat-sin-pass-spec.k index 51be7da41a..279ab89a64 100644 --- a/tests/specs/mcd-structured/vat-sin-pass-spec.k +++ b/tests/specs/mcd-structured/vat-sin-pass-spec.k @@ -66,7 +66,8 @@ module VAT-SIN-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vat-slip-pass-rough-spec.k b/tests/specs/mcd-structured/vat-slip-pass-rough-spec.k index 9dabf45577..6bdcfdfd7c 100644 --- a/tests/specs/mcd-structured/vat-slip-pass-rough-spec.k +++ b/tests/specs/mcd-structured/vat-slip-pass-rough-spec.k @@ -69,7 +69,8 @@ module VAT-SLIP-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vat-subui-fail-rough-spec.k b/tests/specs/mcd-structured/vat-subui-fail-rough-spec.k index 9b1b56fc97..e8caf20a95 100644 --- a/tests/specs/mcd-structured/vat-subui-fail-rough-spec.k +++ b/tests/specs/mcd-structured/vat-subui-fail-rough-spec.k @@ -67,7 +67,8 @@ module VAT-SUBUI-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vow-fess-fail-rough-spec.k b/tests/specs/mcd-structured/vow-fess-fail-rough-spec.k index 92c1420594..5c4dcf6bd7 100644 --- a/tests/specs/mcd-structured/vow-fess-fail-rough-spec.k +++ b/tests/specs/mcd-structured/vow-fess-fail-rough-spec.k @@ -67,7 +67,8 @@ module VOW-FESS-FAIL-ROUGH-SPEC _ _ - + ... + VChainId @@ -191,7 +192,8 @@ module VOW-FESS-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd-structured/vow-flog-fail-rough-spec.k b/tests/specs/mcd-structured/vow-flog-fail-rough-spec.k index 7538aa9b2d..2cc452e66f 100644 --- a/tests/specs/mcd-structured/vow-flog-fail-rough-spec.k +++ b/tests/specs/mcd-structured/vow-flog-fail-rough-spec.k @@ -67,7 +67,8 @@ module VOW-FLOG-FAIL-ROUGH-SPEC _ _ - + ... + VChainId @@ -184,7 +185,8 @@ module VOW-FLOG-FAIL-ROUGH-SPEC _ _ - + ... + VChainId @@ -289,7 +291,8 @@ module VOW-FLOG-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/cat-exhaustiveness-spec.k b/tests/specs/mcd/cat-exhaustiveness-spec.k index 6847fe176a..b2cfd903df 100644 --- a/tests/specs/mcd/cat-exhaustiveness-spec.k +++ b/tests/specs/mcd/cat-exhaustiveness-spec.k @@ -67,7 +67,8 @@ module CAT-EXHAUSTIVENESS-SPEC _ _ - + ... + VChainId _ diff --git a/tests/specs/mcd/cat-file-addr-pass-rough-spec.k b/tests/specs/mcd/cat-file-addr-pass-rough-spec.k index d081f344f3..cf9309873e 100644 --- a/tests/specs/mcd/cat-file-addr-pass-rough-spec.k +++ b/tests/specs/mcd/cat-file-addr-pass-rough-spec.k @@ -67,7 +67,8 @@ module CAT-FILE-ADDR-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/dai-adduu-fail-rough-spec.k b/tests/specs/mcd/dai-adduu-fail-rough-spec.k index 34061569f0..ceb1134022 100644 --- a/tests/specs/mcd/dai-adduu-fail-rough-spec.k +++ b/tests/specs/mcd/dai-adduu-fail-rough-spec.k @@ -67,7 +67,8 @@ module DAI-ADDUU-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/dai-symbol-pass-spec.k b/tests/specs/mcd/dai-symbol-pass-spec.k index d52450f95f..ce0e9ae68c 100644 --- a/tests/specs/mcd/dai-symbol-pass-spec.k +++ b/tests/specs/mcd/dai-symbol-pass-spec.k @@ -67,7 +67,8 @@ module DAI-SYMBOL-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/dstoken-approve-fail-rough-spec.k b/tests/specs/mcd/dstoken-approve-fail-rough-spec.k index c9eb58f7ba..37bf0b9e83 100644 --- a/tests/specs/mcd/dstoken-approve-fail-rough-spec.k +++ b/tests/specs/mcd/dstoken-approve-fail-rough-spec.k @@ -67,7 +67,8 @@ module DSTOKEN-APPROVE-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/dsvalue-peek-pass-rough-spec.k b/tests/specs/mcd/dsvalue-peek-pass-rough-spec.k index df41fcf507..7e43f775bd 100644 --- a/tests/specs/mcd/dsvalue-peek-pass-rough-spec.k +++ b/tests/specs/mcd/dsvalue-peek-pass-rough-spec.k @@ -67,7 +67,8 @@ module DSVALUE-PEEK-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/dsvalue-read-pass-spec.k b/tests/specs/mcd/dsvalue-read-pass-spec.k index 9448f59bd3..0d525b7266 100644 --- a/tests/specs/mcd/dsvalue-read-pass-spec.k +++ b/tests/specs/mcd/dsvalue-read-pass-spec.k @@ -67,7 +67,8 @@ module DSVALUE-READ-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/end-cash-pass-rough-spec.k b/tests/specs/mcd/end-cash-pass-rough-spec.k index a6b397a4a9..c96f6c4f16 100644 --- a/tests/specs/mcd/end-cash-pass-rough-spec.k +++ b/tests/specs/mcd/end-cash-pass-rough-spec.k @@ -67,7 +67,8 @@ module END-CASH-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -228,7 +229,8 @@ module END-CASH-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -338,7 +340,8 @@ module END-CASH-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -445,7 +448,8 @@ module END-CASH-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/end-pack-pass-rough-spec.k b/tests/specs/mcd/end-pack-pass-rough-spec.k index 86325bd9fb..e2abd7e1ec 100644 --- a/tests/specs/mcd/end-pack-pass-rough-spec.k +++ b/tests/specs/mcd/end-pack-pass-rough-spec.k @@ -67,7 +67,8 @@ module END-PACK-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -233,7 +234,8 @@ module END-PACK-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -340,7 +342,8 @@ module END-PACK-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -447,7 +450,8 @@ module END-PACK-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/end-subuu-pass-spec.k b/tests/specs/mcd/end-subuu-pass-spec.k index 626a4804a8..0129708571 100644 --- a/tests/specs/mcd/end-subuu-pass-spec.k +++ b/tests/specs/mcd/end-subuu-pass-spec.k @@ -67,7 +67,8 @@ module END-SUBUU-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/flapper-yank-pass-rough-spec.k b/tests/specs/mcd/flapper-yank-pass-rough-spec.k index c08fc59a50..e948e2772c 100644 --- a/tests/specs/mcd/flapper-yank-pass-rough-spec.k +++ b/tests/specs/mcd/flapper-yank-pass-rough-spec.k @@ -67,7 +67,8 @@ module FLAPPER-YANK-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -243,7 +244,8 @@ module FLAPPER-YANK-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/flipper-addu48u48-fail-rough-spec.k b/tests/specs/mcd/flipper-addu48u48-fail-rough-spec.k index 5d6d792247..b3daece78c 100644 --- a/tests/specs/mcd/flipper-addu48u48-fail-rough-spec.k +++ b/tests/specs/mcd/flipper-addu48u48-fail-rough-spec.k @@ -67,7 +67,8 @@ module FLIPPER-ADDU48U48-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/flipper-bids-pass-rough-spec.k b/tests/specs/mcd/flipper-bids-pass-rough-spec.k index 6a4145b627..c0290890ab 100644 --- a/tests/specs/mcd/flipper-bids-pass-rough-spec.k +++ b/tests/specs/mcd/flipper-bids-pass-rough-spec.k @@ -67,7 +67,8 @@ module FLIPPER-BIDS-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/flipper-tau-pass-spec.k b/tests/specs/mcd/flipper-tau-pass-spec.k index baf9e2e2c6..4655bd626e 100644 --- a/tests/specs/mcd/flipper-tau-pass-spec.k +++ b/tests/specs/mcd/flipper-tau-pass-spec.k @@ -67,7 +67,8 @@ module FLIPPER-TAU-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/flipper-ttl-pass-spec.k b/tests/specs/mcd/flipper-ttl-pass-spec.k index 8d206608d8..2791b60ce4 100644 --- a/tests/specs/mcd/flipper-ttl-pass-spec.k +++ b/tests/specs/mcd/flipper-ttl-pass-spec.k @@ -67,7 +67,8 @@ module FLIPPER-TTL-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/flopper-cage-pass-spec.k b/tests/specs/mcd/flopper-cage-pass-spec.k index 736c7b1a89..874269d7b3 100644 --- a/tests/specs/mcd/flopper-cage-pass-spec.k +++ b/tests/specs/mcd/flopper-cage-pass-spec.k @@ -66,7 +66,8 @@ module FLOPPER-CAGE-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/flopper-dent-guy-diff-tic-not-0-pass-rough-spec.k b/tests/specs/mcd/flopper-dent-guy-diff-tic-not-0-pass-rough-spec.k index 8bd9197db6..7429cf9d8b 100644 --- a/tests/specs/mcd/flopper-dent-guy-diff-tic-not-0-pass-rough-spec.k +++ b/tests/specs/mcd/flopper-dent-guy-diff-tic-not-0-pass-rough-spec.k @@ -67,7 +67,8 @@ module FLOPPER-DENT-GUY-DIFF-TIC-NOT-0-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -273,7 +274,8 @@ module FLOPPER-DENT-GUY-DIFF-TIC-NOT-0-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -380,7 +382,8 @@ module FLOPPER-DENT-GUY-DIFF-TIC-NOT-0-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -486,7 +489,8 @@ module FLOPPER-DENT-GUY-DIFF-TIC-NOT-0-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/flopper-dent-guy-same-pass-rough-spec.k b/tests/specs/mcd/flopper-dent-guy-same-pass-rough-spec.k index dee309a98d..dce45a9c4e 100644 --- a/tests/specs/mcd/flopper-dent-guy-same-pass-rough-spec.k +++ b/tests/specs/mcd/flopper-dent-guy-same-pass-rough-spec.k @@ -67,7 +67,8 @@ module FLOPPER-DENT-GUY-SAME-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -239,7 +240,8 @@ module FLOPPER-DENT-GUY-SAME-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -345,7 +347,8 @@ module FLOPPER-DENT-GUY-SAME-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/flopper-file-pass-rough-spec.k b/tests/specs/mcd/flopper-file-pass-rough-spec.k index 49f77f80b3..b8a111c2d9 100644 --- a/tests/specs/mcd/flopper-file-pass-rough-spec.k +++ b/tests/specs/mcd/flopper-file-pass-rough-spec.k @@ -65,6 +65,7 @@ module FLOPPER-FILE-PASS-ROUGH-SPEC // _ // _ // + // ... // // // VChainId diff --git a/tests/specs/mcd/flopper-kick-pass-rough-spec.k b/tests/specs/mcd/flopper-kick-pass-rough-spec.k index 8cdae08798..90bc584100 100644 --- a/tests/specs/mcd/flopper-kick-pass-rough-spec.k +++ b/tests/specs/mcd/flopper-kick-pass-rough-spec.k @@ -67,7 +67,8 @@ module FLOPPER-KICK-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -228,7 +229,8 @@ module FLOPPER-KICK-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/flopper-tick-pass-rough-spec.k b/tests/specs/mcd/flopper-tick-pass-rough-spec.k index ce425a6271..6a8a8c9ecf 100644 --- a/tests/specs/mcd/flopper-tick-pass-rough-spec.k +++ b/tests/specs/mcd/flopper-tick-pass-rough-spec.k @@ -67,7 +67,8 @@ module FLOPPER-TICK-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -199,7 +200,8 @@ module FLOPPER-TICK-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/pot-join-pass-rough-spec.k b/tests/specs/mcd/pot-join-pass-rough-spec.k index 168f650db6..2bd35704a0 100644 --- a/tests/specs/mcd/pot-join-pass-rough-spec.k +++ b/tests/specs/mcd/pot-join-pass-rough-spec.k @@ -67,7 +67,8 @@ module POT-JOIN-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -237,7 +238,8 @@ module POT-JOIN-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -347,7 +349,8 @@ module POT-JOIN-PASS-ROUGH-SPEC _ _ - + ... + VChainId @@ -454,7 +457,8 @@ module POT-JOIN-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vat-addui-fail-rough-spec.k b/tests/specs/mcd/vat-addui-fail-rough-spec.k index 3aa3bd89db..b694d0e6d7 100644 --- a/tests/specs/mcd/vat-addui-fail-rough-spec.k +++ b/tests/specs/mcd/vat-addui-fail-rough-spec.k @@ -67,7 +67,8 @@ module VAT-ADDUI-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vat-arithmetic-spec.k b/tests/specs/mcd/vat-arithmetic-spec.k index d0a77d87b4..15ec2c942f 100644 --- a/tests/specs/mcd/vat-arithmetic-spec.k +++ b/tests/specs/mcd/vat-arithmetic-spec.k @@ -66,7 +66,8 @@ module VAT-ARITHMETIC-SPEC _ _ - + ... + VChainId @@ -169,7 +170,8 @@ module VAT-ARITHMETIC-SPEC _ _ - + ... + VChainId @@ -266,7 +268,8 @@ module VAT-ARITHMETIC-SPEC _ _ - + ... + VChainId @@ -369,7 +372,8 @@ module VAT-ARITHMETIC-SPEC _ _ - + ... + VChainId @@ -469,7 +473,8 @@ module VAT-ARITHMETIC-SPEC _ _ - + ... + VChainId @@ -569,7 +574,8 @@ module VAT-ARITHMETIC-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vat-dai-pass-spec.k b/tests/specs/mcd/vat-dai-pass-spec.k index 2ee0773dfd..7d11b7ce2f 100644 --- a/tests/specs/mcd/vat-dai-pass-spec.k +++ b/tests/specs/mcd/vat-dai-pass-spec.k @@ -66,7 +66,8 @@ module VAT-DAI-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vat-deny-diff-fail-rough-spec.k b/tests/specs/mcd/vat-deny-diff-fail-rough-spec.k index 598e7ea431..c4f1517cc3 100644 --- a/tests/specs/mcd/vat-deny-diff-fail-rough-spec.k +++ b/tests/specs/mcd/vat-deny-diff-fail-rough-spec.k @@ -67,7 +67,8 @@ module VAT-DENY-DIFF-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vat-flux-diff-pass-rough-spec.k b/tests/specs/mcd/vat-flux-diff-pass-rough-spec.k index 619c871033..cdeb605ea6 100644 --- a/tests/specs/mcd/vat-flux-diff-pass-rough-spec.k +++ b/tests/specs/mcd/vat-flux-diff-pass-rough-spec.k @@ -68,7 +68,8 @@ module VAT-FLUX-DIFF-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vat-flux-diff-pass-spec.k b/tests/specs/mcd/vat-flux-diff-pass-spec.k index beb9b5766e..976222c72d 100644 --- a/tests/specs/mcd/vat-flux-diff-pass-spec.k +++ b/tests/specs/mcd/vat-flux-diff-pass-spec.k @@ -66,7 +66,8 @@ module VAT-FLUX-DIFF-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vat-fold-pass-rough-spec.k b/tests/specs/mcd/vat-fold-pass-rough-spec.k index a2695f83d8..a4e36c8998 100644 --- a/tests/specs/mcd/vat-fold-pass-rough-spec.k +++ b/tests/specs/mcd/vat-fold-pass-rough-spec.k @@ -69,7 +69,8 @@ module VAT-FOLD-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vat-fork-diff-pass-rough-spec.k b/tests/specs/mcd/vat-fork-diff-pass-rough-spec.k index d24501e20a..edba43edf4 100644 --- a/tests/specs/mcd/vat-fork-diff-pass-rough-spec.k +++ b/tests/specs/mcd/vat-fork-diff-pass-rough-spec.k @@ -69,7 +69,8 @@ module VAT-FORK-DIFF-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vat-frob-diff-zero-dart-pass-rough-spec.k b/tests/specs/mcd/vat-frob-diff-zero-dart-pass-rough-spec.k index e2e1d215d9..9b329ad931 100644 --- a/tests/specs/mcd/vat-frob-diff-zero-dart-pass-rough-spec.k +++ b/tests/specs/mcd/vat-frob-diff-zero-dart-pass-rough-spec.k @@ -69,7 +69,8 @@ module VAT-FROB-DIFF-ZERO-DART-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vat-heal-pass-spec.k b/tests/specs/mcd/vat-heal-pass-spec.k index ff46224002..ed15384e3f 100644 --- a/tests/specs/mcd/vat-heal-pass-spec.k +++ b/tests/specs/mcd/vat-heal-pass-spec.k @@ -66,7 +66,8 @@ module VAT-HEAL-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vat-move-diff-rough-spec.k b/tests/specs/mcd/vat-move-diff-rough-spec.k index 77ff8d448b..bb8716f5a8 100644 --- a/tests/specs/mcd/vat-move-diff-rough-spec.k +++ b/tests/specs/mcd/vat-move-diff-rough-spec.k @@ -70,7 +70,8 @@ module VAT-MOVE-DIFF-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vat-sin-pass-spec.k b/tests/specs/mcd/vat-sin-pass-spec.k index fe708c9dcf..0369e08e21 100644 --- a/tests/specs/mcd/vat-sin-pass-spec.k +++ b/tests/specs/mcd/vat-sin-pass-spec.k @@ -66,7 +66,8 @@ module VAT-SIN-PASS-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vat-slip-pass-rough-spec.k b/tests/specs/mcd/vat-slip-pass-rough-spec.k index 2bbb7b2136..28c8ced1cc 100644 --- a/tests/specs/mcd/vat-slip-pass-rough-spec.k +++ b/tests/specs/mcd/vat-slip-pass-rough-spec.k @@ -69,7 +69,8 @@ module VAT-SLIP-PASS-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vat-subui-fail-rough-spec.k b/tests/specs/mcd/vat-subui-fail-rough-spec.k index 701fc1ae3f..05e7fd9670 100644 --- a/tests/specs/mcd/vat-subui-fail-rough-spec.k +++ b/tests/specs/mcd/vat-subui-fail-rough-spec.k @@ -67,7 +67,8 @@ module VAT-SUBUI-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vow-fess-fail-rough-spec.k b/tests/specs/mcd/vow-fess-fail-rough-spec.k index 0441fd7e1b..ff9e9995af 100644 --- a/tests/specs/mcd/vow-fess-fail-rough-spec.k +++ b/tests/specs/mcd/vow-fess-fail-rough-spec.k @@ -67,7 +67,8 @@ module VOW-FESS-FAIL-ROUGH-SPEC _ _ - + ... + VChainId @@ -191,7 +192,8 @@ module VOW-FESS-FAIL-ROUGH-SPEC _ _ - + ... + VChainId diff --git a/tests/specs/mcd/vow-flog-fail-rough-spec.k b/tests/specs/mcd/vow-flog-fail-rough-spec.k index 89a08aac31..9f48656eee 100644 --- a/tests/specs/mcd/vow-flog-fail-rough-spec.k +++ b/tests/specs/mcd/vow-flog-fail-rough-spec.k @@ -67,7 +67,8 @@ module VOW-FLOG-FAIL-ROUGH-SPEC _ _ - + ... + VChainId @@ -191,7 +192,8 @@ module VOW-FLOG-FAIL-ROUGH-SPEC _ _ - + ... + VChainId @@ -298,7 +300,8 @@ module VOW-FLOG-FAIL-ROUGH-SPEC _ _ - + ... + VChainId