diff --git a/docs/XDPoSChain/README.md b/docs/XDPoSChain/README.md new file mode 100644 index 0000000..0204414 --- /dev/null +++ b/docs/XDPoSChain/README.md @@ -0,0 +1,15 @@ +# XDC blockchain JSONRPC API + +Modules: + +- [XDPoS](./XDPoS/XDPoS.md) +- [admin](./admin/admin.md) +- [debug](./debug/debug.md) +- [eth](./eth/eth.md) +- [miner](./miner/miner.md) +- [net](./net/net.md) +- [rpc](./rpc/rpc.md) +- [txpool](./txpool/txpool.md) +- [web3](./web3/web3.md) + +Notice: type `BlockNumber` is the block number in hexadecimal format or the string `latest`, `earliest`, `pending` or `finalized`. diff --git a/docs/XDPoSChain/XDPoS/XDPoS.md b/docs/XDPoSChain/XDPoS/XDPoS.md new file mode 100644 index 0000000..c6367df --- /dev/null +++ b/docs/XDPoSChain/XDPoS/XDPoS.md @@ -0,0 +1,671 @@ + +# Module XDPoS + +## Method XDPoS_getBlockInfoByEpochNum + +Parameters: + +- epochNumber: integer, required, epoch number + +Returns: + +result: object EpochNumInfo: + +- hash: hash of first block in this epoch +- round: round of epoch +- firstBlock: number of first block in this epoch +- lastBlock: number of last block in this epoch + +Example: + +```shell +epoch=89300 + +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_getBlockInfoByEpochNum", + "params": [ + '"${epoch}"' + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1, + "result": { + "hash": "0x5a701a8ba642a9b53475bb19cb9a313829f7afb4287caa76bebaea02f0219f89", + "round": 1, + "firstBlock": 80370001, + "lastBlock": 80370838 + } +} +``` + +## Method XDPoS_getEpochNumbersBetween + +Parameters: + +- begin: string, required, block number +- end: string, required, block number + +Returns: + +result: array of uint64 + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_getEpochNumbersBetween", + "params": [ + "0x5439860", + "0x5439c48" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1, + "result": [ + 88316769 + ] +} +``` + +## Method XDPoS_getLatestPoolStatus + +The `XDPoS_getLatestPoolStatus` method retrieves current vote pool and timeout pool content and missing messages. + +Parameters: + +None + +Returns: + +result: object MessageStatus + +- vote: object +- timeout: object + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_getLatestPoolStatus" +}' | jq +``` + +Response: + +See [XDPoS_getLatestPoolStatus_response.json](./XDPoS_getLatestPoolStatus_response.json) + +## Method XDPoS_getMasternodesByNumber + +Parameters: + +- number: string, required, BlockNumber + +Returns: + +result: object MasternodesStatus: + +- Number: uint64 +- Round: uint64 +- MasternodesLen: int +- Masternodes: array of address +- PenaltyLen: int +- Penalty: array of address +- StandbynodesLen: int +- Standbynodes: array of address +- Error: string + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_getMasternodesByNumber", + "params": [ + "latest" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1, + "result": { + "Epoch": 89300, + "Number": 0, + "Round": 0, + "MasternodesLen": 0, + "Masternodes": [], + "PenaltyLen": 0, + "Penalty": [], + "StandbynodesLen": 0, + "Standbynodes": [], + "Error": null + } +} +``` + +## Method XDPoS_getMissedRoundsInEpochByBlockNum + +Parameters: + +- number: string, required, BlockNumber + +Returns: + +result: object PublicApiMissedRoundsMetadata: + +- EpochRound: uint64 +- EpochBlockNumber: big.Int +- MissedRounds: array of MissedRoundInfo + +MissedRoundInfo: + +- Round: uint64 +- Miner: address +- CurrentBlockHash: hash +- CurrentBlockNum: big.Int +- ParentBlockHash: hash +- ParentBlockNum: big.Int + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_getMissedRoundsInEpochByBlockNum", + "params": [ + "latest" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1, + "result": { + "EpochRound": 12134700, + "EpochBlockNumber": 92336811, + "MissedRounds": [ + { + "Round": 12135188, + "Miner": "0xe230905c99aaa7b68402af8611b89ceda743191e", + "CurrentBlockHash": "0xbb587da87991d3cb0122e3f79c31202387022343ce4d317545ec4d676f3199fa", + "CurrentBlockNum": 92337295, + "ParentBlockHash": "0xd58572701671c51afa1a0f92d8eb3f59e52418f5d3fe1e08765c5b15970c26e3", + "ParentBlockNum": 92337294 + }, + { + "Round": 12135108, + "Miner": "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "CurrentBlockHash": "0x94c8ddc157a095f9f726341fdb0d46ccbced72ce352b1d583dc6a32c285c6f9c", + "CurrentBlockNum": 92337216, + "ParentBlockHash": "0x4ff8ad273546a982e533f2613e985eb3f5f2606e26d91011d7f555a19e88795b", + "ParentBlockNum": 92337215 + }, + { + "Round": 12134762, + "Miner": "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "CurrentBlockHash": "0x9fc78684a5f7fe80d60e3c6f5acf4fd3dde3c96757e1ba18c8f4f13e4e7523d0", + "CurrentBlockNum": 92336871, + "ParentBlockHash": "0x0ad9c7848d2464dc3886af083a06dc097f70549a046db8ebd42a233bc02934af", + "ParentBlockNum": 92336870 + }, + { + "Round": 12134747, + "Miner": "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "CurrentBlockHash": "0xed4bfc8af63bdd3f9463a03aac3f3f245401a00bf1fdc126aa4f12fbd5fc3b9a", + "CurrentBlockNum": 92336857, + "ParentBlockHash": "0xf4ac8db092ee7d4e65d94691af22cf68b024e09c71d71899fec17b266ac16c8e", + "ParentBlockNum": 92336856 + }, + { + "Round": 12134704, + "Miner": "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "CurrentBlockHash": "0x248452a594feb9cd63bfadc5b2d9a4cdaa3c3a5f9e73275171a102693cf9f20c", + "CurrentBlockNum": 92336815, + "ParentBlockHash": "0x2e250ff73aab4fc9205c300f544926f7544a6e6193f1a1f5360cc2f8c5f3aaaa", + "ParentBlockNum": 92336814 + } + ] + } +} +``` + +## Method XDPoS_getSigners + +The `getSigners` method retrieves the list of authorized signers at the specified block. + +Parameters: + +- number: string, required, BlockNumber + +Returns: + +result: array of address + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_getSigners", + "params": [ + "latest" + ] +}' | jq +``` + +Response: + +See [XDPoS_getSigners_response.json](./XDPoS_getSigners_response.json) + +## Method XDPoS_getSignersAtHash + +The `getSignersAtHash` method retrieves the state snapshot at a given block. + +Parameters: + +- hash: string, required, block hash + +Returns: + +same as `XDPoS_getSigners` + +Example: + +```shell +hash=0x5a701a8ba642a9b53475bb19cb9a313829f7afb4287caa76bebaea02f0219f89 +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_getSignersAtHash", + "params": [ + "'"${hash}"'" + ] +}' | jq +``` + +Response: + +See [XDPoS_getSignersAtHash_response.json](./XDPoS_getSignersAtHash_response.json) + +## Method XDPoS_getSnapshot + +The `getSnapshot` method retrieves the state snapshot at a given block. + +Parameters: + +- number: string, required, BlockNumber + +Returns: + +result: object PublicApiSnapshot: + +- number: block number where the snapshot was created +- hash: block hash where the snapshot was created +- signers: array of authorized signers at this moment +- recents: array of recent signers for spam protections +- votes: list of votes cast in chronological order +- tally: current vote tally to avoid recalculating + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_getSnapshot", + "params": [ + "latest" + ] +}' | jq +``` + +Response: + +See [XDPoS_getSnapshot_response.json](./XDPoS_getSnapshot_response.json) + +## Method XDPoS_getSnapshotAtHash + +The `getSnapshotAtHash` method retrieves the state snapshot at a given block. + +Parameters: + +- hash: string, required, block hash + +Returns: + +same as `XDPoS_getSnapshot` + +Example: + +```shell +hash=0x5a701a8ba642a9b53475bb19cb9a313829f7afb4287caa76bebaea02f0219f89 +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_getSnapshotAtHash", + "params": [ + "'"${hash}"'" + ] +}' | jq +``` + +Response: + +See [XDPoS_getSnapshotAtHash_response.json](./XDPoS_getSnapshotAtHash_response.json) + +## Method XDPoS_getV2BlockByHash + +Parameters: + +- hash: string, required, block hash + +Returns: + +same as `XDPoS_getV2BlockByNumber` + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_getV2BlockByHash", + "params": [ + "'"${hash}"'" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1, + "result": { + "Hash": "0x5a701a8ba642a9b53475bb19cb9a313829f7afb4287caa76bebaea02f0219f89", + "Round": 1, + "Number": 80370001, + "ParentHash": "0x83b8e385682ca0faa29e0cc4dbf7de08512ec36bc7d4f0cf173ca5a6dbf034dc", + "Committed": true, + "Miner": "0x000000000000000000000000047ffe1fc7f6d0b7168c4ccc312221089629f470", + "Timestamp": 1727714247, + "EncodedRLP": "+QqmoIO444VoLKD6op4MxNv33ghRLsNrx9Twzxc8pabb8DTcoB3MTejex116q4W1Z7bM1BrTEkUblIp0E/ChQv1A1JNHlAR//h/H9tC3FoxMzDEiIQiWKfRwoDz5fL6rWOUlMTYBQ8wcJi47PesNYQGTvh26RIHy5Qt3oFboHxcbzFWm/4NF5pLA+G5bSOAbmWytwAFiL7XjY7QhoFboHxcbzFWm/4NF5pLA+G5bSOAbmWytwAFiL7XjY7QhuQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEBMpZUYQZCLEAgIRm+tPHsgLwAe7noIO444VoLKD6op4MxNv33ghRLsNrx9Twzxc8pabb8DTcgIQEyllQwIQEyleOoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAuQg0A9nheuP/LGcS5E4lsJrF7pH2yf8Ef/4fx/bQtxaMTMwxIiEIlin0cAZVUfDcrG8AyuERktRi23Cb43WMCbrjJeVO303It5qLsp+Q3rkOj+cLCvtBwU3ZIamkURwibcKSVLoNjxjTFRG4779CFcSMAmxWrUac6QN0Gnw9dIGtx+Bn8vc/NfRBQ9e/AtQa/xccqoweqTusTCdnbzVtBUQStB0lpwdpk8/NZ2I32uqQ2O3JnH9GHTk4F6shjrrePorVkVk+w7EysfYeAQO6dmXRUyiziGkn1PCoX4simSE5bKeaQzogtZBMmneqmk8RDvgOJB/w0wluLgtHd4D59VGRigaCfAUkwIMtnfgYkWbY5OLO3ECtaQd7FyXGW0s3msN894NXxJFfc2dwIur/KlkfPWTzzmsdKv7q2Dmtdqq5/rItdNASWYK9w6n1ShAhbYJQk3noIS2IGzc+3yl7SV6N7t2RCOPWhw3uL4ZHb6oxw/Wj1bk3YoLhsCtN+gAwVqi/+aF7EtCPGDfQtEzx4gGPvjRq2kiccMhcpmVCg4nxqXGrvulgNYmIc8Ah+fT6Aadsf6WVFZ9VI+c1lDOHCFIkzQfvq0Jk6FDObNyZrDYLnlhw/JHjdfkC/BNPkXOfSpnHOR89IdkGLrvdlY5DaybUtAkoZYw57gGKheRGmhszXv4BQGfjFb1llEOYJBZxs91IT+MhOk+3UR8w59fARQ1xTmX03gB5N8VvscRobv1PtOxIVw5d5p21ID0lm73mciux08PuWkl8RPSiIJkQmtfRlKrU++eNzreISdP6ku7IOPZE6MrPLJNTPSm2xxNLcHbJiNqKDvh/GvE396vDlVe3Rk4REUL78u2sxKsSL+tUsDHcPZXZUoJeCFrneFrZtCqqmKYwVgWTt+JVX/eCigtDVDIwikch5NnxEDJAJVZRKQvdOpUjVwZrMk+TNLVEEAFAWPJZdQhrjSPAKOu2Ub4GTaA2A2dZW4Fw6vLlPkfMINtHrQY6Hm4sD2Ccwy51ExNTSfvp69eOqM3P2fgZYY5wbFMeV/RKc5zvEpvwjL2RLWphn4OOoqEs21COdZw+BpfgIdUs62NEP/21wTnDu6uX07Bu4GdNdat/ZckMLT6Z2DZvkNt/TSXyOgpWnUlmTEp7FdkbB8RoFi9TWQkRTAOLkXCRZmB2YEPCNENHllgAju7a2MuUcqAiQkWZJ5LHVWW9OrbKpsi5Uhhy+0Z+9tooW2sNj3olq9YEk4XV/XTTrA78TCLqBRUNdQHJXGELEwxLdSX2Pl9znvlS++pQwdyX711b2YR6oSUzi+B1Jg53xqZqVskKXexMWHr2rt8zgrs94tumF2nZZES/ZgSUgshYAaixjEsnAeVScnzqhJS76eqORVu1ISEr3PjLMm4y3BGDyz/Yh47u6vrKSeUHvJu6Eh2sl+x1d0/yjy+12oUAQrfaUJcGHwmEk/jsbdiQQ/r76IM62vtEm1Wc7zAKljJ2P5DGC9WiC9KjFC4sSRuaWcLB6D5NkMh8n/WI6SaKHHx5pZhohumMLwSSAOT+iVnwJo652vBqukdW5ZW5n5LTI2QxPDdtyuJy4RP9BM6hlNLImjeHaI/SEOyPjQIkxsULgXjXW8CcVLx2TC4AcX+78xtNyWKnLEe99p/OUsXEUVmSNcF7w36Z+EbSXubsomvjA+g3jkJ2aWUKT1NQbW3S1V+kZXwCIIeXmFre3L0EjvyCKR29sqZQEAJrgzaMoF326LRnmF1t4+rFpwuHw5oSN7pTlTodoEsj1Nso6s6nLOlKCdsm3OV6SFJAmrwv/wepYq89uK2BVIIDA63Gvg2bEO+OMwJPsKSPkIfsuFOQq/I+wbHVkd3HV72wzD/X/h3w89LZYnRnJfAWk8SbMbFpPSJNT9cK1snJvcRPqjziH7QNs4q6R6VWP6Su3CpknvgZufsWC2q1cLE/qcoJM0dEjcYA7Q0JMzrJ+rmjqX9qAqhkg78CyzP4sz0tEXcIu9LUF6i28bHXomfNHXQCtEPzXP7AKu2FewG01gs3gJYiHbO2CvrcN8Piqac4gfzOb8k2ego929ZY0g43xnwt7Hnac11lh9jbPCMnHVVxlqvHvxzUJub0fYefurp4nXxXQM6bS8fUnQos8Zje69bOWBr0ZZROyLK7yuuL75aJ5wE1Aj1N+4WGSDL5aL/Mqy9SZ7xmtp8WiFYMLgdSFpCKLM/M3qEAalz6fZSEtbKTtGlkwmXA0i/awUWXYPaYYY2Se74iJJ4rKbnS/v3RGKor6lmR3Aef00HT56ksr9W7N3Y2JbwW8q0Hkdh+JyYAQkHk1ukWH61Q0uaXzaK5YP0mv1Kl0WnbLhQVldjt9rHOQLENV8pbg4VexdzNmdoclCo2xdyvJtGbmMgV38tz3vS9Z/niYnyklbX3F5T6sbq0BhniMJBcmaqntoQCr4YRuJztp0MZHuK8mgPVrjXhMMi/mepQwCLeN1235HEKhUskBi/zerZja9mkVuJMFjXklP5aOLchKrmZFS0dRa2rjYSop+hlpbK/aZpLSY3oqMVdoUuw2Ush6LwOeBFK2NxCkOrteLy54/W5HjLo6BlMCo5aMjBseoYFKk6MpLhyner9zOU4eF+XwIYyiL+zI151m11V6/jkkE/ivVYUdeng5lozNsVvg9PsSl+9Lkbpe+mMIS5mjvHQjWlUQO88AYZnqoccAtPWvhCpqMzdNRKU8E8yxG8aFmY7x/ZAmzWzPz2qmgP0iqKd4jxFxUqWwqe4zlIYq/RodPypb/SU84qcM6VYyvjZ1ijIGcLKuEHUIxsbnopFshhhELY6gDisizDIodfGWLYB9MjJcei8Dycc5evKcpseGGzDyaGZJgdTtg5oKpgWstNSC+Tp3ZrjAIA=", + "Error": "" + } +} +``` + +## Method XDPoS_getV2BlockByNumber + +Parameters: + +- number: string, required, BlockNumber + +Returns: + +result: object V2BlockInfo: + +- Hash: hash +- Round: uint64 +- Number: big.Int +- ParentHash: hash +- Committed: bool +- Miner: common.Hash +- Timestamp: big.Int +- EncodedRLP: string +- Error: string + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_getV2BlockByNumber", + "params": [ + "latest" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1, + "result": { + "Hash": "0x7f809fffd6b2dfb72374be8a58d66a9215e64561fdf907136196108ae8af4113", + "Round": 11796106, + "Number": 92002679, + "ParentHash": "0xb9f8065697575a03dde30fae631b957b4f81cdd0f919a6be558417b57c6461f6", + "Committed": false, + "Miner": "0x000000000000000000000000d22fdac1459760f698618d927bbe22249e2b29b9", + "Timestamp": 1754450490, + "EncodedRLP": "+RWcoLn4BlaXV1oD3eMPrmMblXtPgc3Q+RmmvlWEF7V8ZGH2oB3MTejex116q4W1Z7bM1BrTEkUblIp0E/ChQv1A1JNHlNIv2sFFl2D2mGGNknu+IiSeKym5oPkyoGP159Q8Wf1BP2HPlQf0zjsI/agGP/BwGbpy4YqNoMygS53omK2I5oGnWDoNS7mNN5+xzKLe+wr6IwfPzJt0oIOrebUTovLSdfk+XJ9AsNic/b/iI3+urNu2DO/xcLDguQEABAAAAAAAIAAgAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAgAAAAAAAACAAAAAAAAAAAAAAAAAAJAAAAAAAAAAQAAAAAAAAAAAIAAAACAAACAAAAAAAAEAAAAgAAAAAAAgAAIAABAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAECAIAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAgAIAAAAACAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAEAAAAAAgAAAAEAgAAAAAABAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAIBAACIAAQAAAAAAAAAEAGEBXvZd4QZCLEAgwN7CoRokso6uRNZAvkTVYOz/or5E07qoLn4BlaXV1oD3eMPrmMblXtPgc3Q+RmmvlWEF7V8ZGH2g7P+iYQFe9l2+RMbuEHfd4o5dfxEe51VtdeF/ku8PKWJTK3wV3kTXbqUBs9PUxEfOJm2A+RFkbRe6Epev2T0sQya+YpD4ghehgAW6tFlAbhBm1jQjVJNrW9Avd0U+ghk8fpKKxfi1UQ3HEWrnawU6LMTILSX/gaTVP1KnH0FdH2musCl2RzB8CggssHRCmLLJwG4Qa93bfZ+EQcOZSVpyxaDeuSpggEQoNYPVNgNMYEjXX23LX4GyDy+N7pmIuIGkEWuho69zNAv2MboFtjToN0UCTEAuEER7xpw6+NRfACuKiLAsglhZmunovF3eHx64FtcpZI7NgKjDdUrbzRXky2xt/8+N4qBsgtcX5l2Njk5DXAqjCv4ALhBoLFRmFXcdJhhthWECfOp4o63YRsDvIh5jyFGMcWEb11/VwjJmg7j2KBUn+TC1FCIqJbNahzf6KDjJpvuLCrKzwG4QQJ3c0+RR6+ULJgNqV3SOqNnVSunycloyB/Hobz8OJlCCVONpnuINqLh2RaqpCyW6CkpJCtEa4xhNxQAAzQCke0BuEFHEVvpfsAE+yRrruwi4doFqFivkOtdfjr5OHvhtj1cI3nbLLRMYPH6bydizxyWSykMiZ7Pkn587nZE7rXF1CoCAbhBxiSMDZymlm3yqBmpAK8PPyr6COdQrDQICvKq88sbFVMk14mABptgsLCu1b+NyNnWR/zU+pCmYpCYB2olP8rITwC4QY5bpDfNCt2v+Vk3q9rHFAeFLeL9WMoZDg+qWHdjkLgna/g5RDqVJkEdM1OT4Ox4sxGFj+UK6w5npbqMEF+njXEBuEH20ly4XnnjUJk7AvCrjgouaQQY7uSe/o4asg5I7012wViAYdIL/oQEXvhatcD+n+u3RLZvEFUXGLZR4zOVBnj/ALhBTmc7bQ7re5mwJJDA2LX9fn4ij2+RVvsy8Dm6AeqoD4cQr4UdTxR1ID0j3LdY8FKz6Wm7nk1bzGyHmL/gViFjJAC4QdNEeRa0UkC4ZzDVZaxOu2Yud8TYCAl1lKwgprqHsrA6ZFc+rQFUgunWH/9mM4f/Haqu9HNYMUXfp2Pdynpn2GUBuEFxMshDpz8R8Xjn+HUAfooGoK4zENMcHtegRDYH8hBjmV5bKWESCE6UpJ9nRnNM60QtZZ8jGQH3T8VQy3lZxT9cAbhBNF1V22zPLkaS9NXEvTY/yevlZN/MAizZJhcwJH323vRuXSY7Dx0l7NJSC2l+WJgCs388D673hGOsW/h2iAu8HgC4QVY9ZcbmI0GWGtY0LQp6joPnhQGs7YB0baqGkFBocmdRUde4xClgYdU+KZJ0Q9gaRLF1a9tdCZWJiVw7RvTVp7AAuEFr3Tn9raj5MGQqEZEb0fm8og1Gkalib6xnO2wXDgf5zHMxs4Js7raIY1UaqBUIYs6UXal3dvFmaTEUn8QJrHOwALhBF+ylwcGMa7OwMmxUoKY0F7Xv1zWckOHmpwaEdV0YB7geXNzgMyv/eItO8LgS1oxPZYi1LNL8eVEIsAhYb5hJ5AG4QadUfbNdnxWuLsHXrXVMHPJpY0mE1pYeJtY78+YQnftYXfM1mJeWN4SZ8+WsMSqOnyJJ/ia1N4YZGxQBBiH6ZzQAuEEpdPt7gfqFQZ+HWxu7g4WeLXOk/7mpnN9V2wet/ziwpH7kpycUfNz8HXErJouaBqCTkwuomweUjSzTi3u6YIX7AbhBecbRiyEpHyT4w10Ltx8gAEe5+f0HkYmNh7yzysdk/JUjvEVp3uHayWFcLlAnhrB3egPooK0/uj1K0NQ6Xl5iNAG4QV1XE5Un/mRSBld+OX/4EvW6jqaTqh5vUKPQ84RU/hH5VFFTp9Qn3WRldSc+zbj/hn/fBlD6TuKFtp3/ptj3ziABuEHIYSGaNcdoyGPaJfqF8coSKIYF+cjOm9JDwZEk+uz/skLuxpiX7Vsv7vzbES+uUS4Uti/3o/H3gyGJY7074t7yAbhBLWM2LuOpX8CiDXZzxem+6QP5CDbU2Ezfc6kXQ6RLoe1WmfjApFE3tC2lRMgzm3Xfn51ZCSDy7TQmQwFiOCt7GAC4QbQIP71bq82EZQx8v/eh2khgeqNNT5Nm03LE1slYfx10E5tdpx+FV2b6K/PbSkisdXdiqq0x8jqzFsJXp6xNwiwAuEFR0tE7qXsJqN64qk1Xvdi7wFr9grtOVcq1vNN4Fqb0OXZq0RktP+upwFOZyrJWgHJ+eAMlf+v8O7BiltbyCQGkALhBodxxf19CaC8FU92FhduNZHAlkUx+MdB/uGX4Fmkk3RZ1+KEJPUrLsrxRPN4PSFqhAXfxbXNbDEm3EwJJHGe5IQC4QTMXamzeOjo4Zuw2EV6RX/ZbtzgDwC8n2AaT+lQdIyxMPEEuQMNUuLpnVf3HiAf/QKRWQ40npaK3KyDNXW+9zn8BuEGkWNjosD6SaRJRJDWLYsxRLMXq/qWjuP2yHHWbLaYHdlpkXipUPZbZvteayBFLfrf3LOJ9GlB8d4KH3lUsTQcEAbhB8a8j8jPpt+f7favcNteSalXWJ/2bLmZm+TOru3nhm9sVK7uwEY8m+PlPrn/hwjBWY9qs57Y/tYYIBvypEgp+qwG4QQD1vnSu8W55H4ZxFbQxaXToC9fxlNGXD8PzCIBAiX8+YBRXTKXIvJdW1FAZ0f3jxzVtF3HelO0GtwX6CtCsmx4AuEHREFyqKFY19O7QzauhgMJNuVwO8JEy7yBYBpECO4h9H34glUB49urTPWWWcXpALIA5YkQ6y4n/TMz9Zu0+KyPjAbhBMnOMT7MTjv6e5MERye+JGFaB/ztFJLdiVm/Nn0NiisNli9YOlO1PtgpS2YQU6UEM0Emecovp3DOG776MMTPGBwG4QcPBpX7MXQ6MViyGO/VOG0Od4HQPN3uVgOFBlqIMvOHKZdnrHluiGARU4JoAe5MsweBa2OdkPrFpyNabbebMT/IAuEGBeiJkB6I0j05oykbEXKG1W+3AGc62AOTAqtV3vQwvQwjlDzzqhX9Efi5gDEe7N6tZXeo7S20vi88iCv5B98zXALhB7GSy7ItNXEC4C42GxyyB7r5monkhY54Da+c+wqCdL/ovwge2HpxuCMl754i1KeAB1qC1wtFf5i946obB0xvmQwG4QSSCeKildmlFyqR0TBdp00sTfTwj51Cara7BbvTTVZkjX6O6iBUkdg2gMI+WwDfgMnDPwHqoRIYZXDhvN2GZLHQAuEHMuuXW34HaUthO1o/7TGpjUm8byoApHUgso2u9QuYK4gBa9YdiWEsrsG3q7slXTAmuJ8nCP8uJ5KeMMWw3jRYaAbhBFDWtqJa9R8xDcHFXoy2XUOh+/2VkK+q8/8qWD0bTCDkcx1kQAJ5NE+SkW4Y/7jko0hDtz4f+Yk/Muf6sm18pMgC4QT+HkNhfzkfCQUVDBVSlZ36RW/B721guMfmQgdy91E3aJqnbg4QvPKH+fKvRvXHSKneBSm9s/7fqxJmGOxcay24AuEGRfDkr5zKLnPA45g2nfb3RS1vr4oMMlVfTn++O0hZw4yfWMzA5IMbOphJ6mkKZs1/geZIMLtfjzlpJCAq771SwAbhB/bHPRILkQtJBBkclYAA7Z5ZEST4iv5O0yznghhWIdbduPDtCcx5qFz4wiayo81TbmKa+64ZYzY6LSv4IPKXJYwC4QdRjrBx8v/yoLR7NVBCz6+9nd5eyhLGBQmyjydB7iDdEZnAz9I1jjFbcLfg1q1vfdC/sPtzy9SaTUIxIg1H4dbcAuEFF85LmaDZC/Lzi6MWQwu07y5bnk4gGnOrC/n/1KYoTki6fQfu96Vnlk1oy1owPRQ36lej43HrwORck1W7xBaEqALhBqoMtR19lzK2dnhM3EdqQ/Z0O/3/zDiW1uV4PnIVtLutJ+m+Lw81pIVOpa/JSB2XhbdIUaNQpHxtbtw+4GjVSPgC4QeYMa7fEutC8ZUqtAx908A4u8VvWPvQ5tcR/Q6U6mvl+IFQtG/0bv/VlMvL/e6HN5uH8nKel+rHiisPdzyg0GiQAuEHmMdnM2Bcec+iAuN0DSyRUKregIN+znOum0oIFaYt+eF+a1UXD8B49VkD3ggaxnGXzoe1/IsqfJmVEp9wjrkLeALhBtOeQsWj7H3j4wWZYiGB+fa/GTAVL80CH5LpTFB5c5JpDfnViKNXfVuIELXoqWPHqd+I9mPBQvgsjzl5ZeTmNbAC4QTcM3fHTGZrj6VgPHmMAtxRBeUZ1lCCCTIHxDErzS0sYUL0KFSdMGY/NKBKAMkTDGObOvMFkhb17U82n6hmQsLgBuEGw2Ik+KKPlALbwMaLQn4jqW3vUeg3zPEBDWjorxy1veHu+zbgGuLDjw3Nwl9J6qXF1C2fjaVh8X+75tPLf0YJ6AbhBIHMUCCMDJrkyOzMYwZFoubGsQ3PC7N83/btw2UWgI+QYYb0LcbZt/wVojfCwL49vJheHD7vm1+oKBwelPY8IYwG4Qc7mDEPYZt1M/Yk5pOBDncibbHMhQfKyzSTvnBexw9K6HNyV06FsgM0sugfOaTOLmRCwg82eQSuKRHhJB1AcoRsAuEHt7IQdKVBheX17L1uH0K9jCFa18uuj6M1+0Vb9CrjjH11e+DqZ727EmZA7LbOD8hL5myqk+olKwym5BZjEn8LeALhBdPaOFENnqS7h0Isxf159jj2Ze2oFQ/cUQCe4v+eiJI1hnEBX2kUSIZuRd2A0+Um9w9xRGxjGe1k/HCkMGrf8EwG4QanePWsvDoRJL/MZyM5v3AQIxytNsYy+OHUyMpLBnlwxM50uqS2OvyrcO4sHNgmtqJGA5MXPl6bfhLnALcbwy5kAuEHWnPJ8IbWqhPmHKqOMZlsygAU6UAUs/rZkjPCkhARPymqci/9M58NPzwU2pIpF8wlGmHwsIlX5xMpNMjnEnBRVALhB5NW0J4NE7xeEAljHryu9JGPUfMq9lXNhLunZPoYsfZIHhI90CW60oGeLipwXHv0osr+r1K0YhAKzz/GP2HtPpgC4QU8O06E6+Jgc5AgnpshmWnm4jPzBwaNftyjh99IICKlJeFU2EmY7le9NgWaSgDvPTEnUYp7jmokm+v8ljenvpKcAuEF4Q+ByAskzLwa/2gX9oAOUTghiKA0RNcGIoi5/t3RLR2CKSk2hcT2qSteBkh+ePCHFWZnk4jhfYg3OLgjuuLOjALhBI827g5QB7zeW2Omxi200M3Qu8iHprVcbAj2yn7Rby1Z0Qh8MhtYUQCnCO8a+RaVIQ9yyq0a4tl5TaiinspOgCAC4QaClaxIsYbm9/rd4PxKYWZPRMyFrBQHecifEWphTumvzM8Aj0Extu4XR++EITfSEnd39NucbrT9r3eD++M0DGfUBuEHy2+NAI+9+Se4GEpzTP2tA5CAL69qTVY94D3bxhKzcOUZXFKCdfvudo4REwKoCG1Trh+85GWoPacOkFpP0zRRqAbhBjamTxvcWs8GtZ91pQ71DX6rXxRoRrhUsJ0On8jbScyBXhkIhh/w6vbJwHjythoDu6D4g9qwdXAYSJbkqzjHrRwC4QZui4TfRsSvufCtLS/qCoXuDuRWdsWveUQkbTKYnPnSEJLxV//49FZnIUBKQmLWRR8CHJY2F+94Z9ehQphMOwm8BuEHa42YNWwOjZyqQPiTTVG6A85EDcgVy1QTS39gUrzMhmj/Y2AxYUuAcAqRlWO/+Z9ecLUsb1Yw8Axsog11Pqgr2AbhB40So4kg6nDvSK4DpFyFKc8G51Fb5DxhFNN5Vuc69NDBfQbIDCju7ZJrRXbhY1EkqYirYOJCUNeEWltOTeHT66AC4QQ7A8RRGS/NuFfhNHclvoYGAySZDQtLTeIJTTgU6bUxFE7E3EhmA1d3sshEjnWrk7aGm5+gDxfirvEJBkOjDxvYBuEEOtPyqC64FqjLdfRou+kKB5uZJtyPLOQFBvMpEZ8S59kSz3eTETUnGPoEZ5pVxghO4K9dvNRyuLl1nVx/Ce1i1ALhBFS7IQ6WHZca6Tk/88B+RftmvAf+ZUy0Hbu6SnKJyq4Rq6LA5RNNHf4Sud9uyQE5JZHSux2IvWScLAHRkHwjFIgC4QXfhKUiVYVk+/slrTlQJt9ks/UmO9s+7R/DT19FJyIO8AHHsp/8xBbRnnkp0yEzmmA94B3Tj1CSLM60Psqd57pAAuEGHDtmNw+z12jvaSicb5JzBtPbEsig/jRC9tPshrGGevSMJA/a4abMLXOnoRK0DLn9u1iSTgy2NeExxcoc5SO9jALhBs/H6dDRFrn5fLL325r5G77KsGY/5Md7OJ6KLgpvARLEC3u+cplmD+NJSgBuKk46XMgOs9sdi+5qFCb/jXALN4QG4QahQ5wW57LIbmK4pzz2tw3laGx2xz5jVnncyoh6GDi6IBPzNTa/bO7JEVvF8/sCPxekWlkBHynztXhVBFfpkNW4AuEEMz6O17rxYutt2lpX9ru9YbN26odDrTF6zK/lzmZH50yfJctqt62Q3fBxcBGOpoQQezGWGPHb2cNk3L6iJ27loAYQFe9N+oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAgLhB4TrYV2+/9xsQkjN12AFXa3ppUdihSqBRiqXKEIDh0+0bhfasGbIcmtPOqODxfR4hy1yk0ezz7P+ziNAvFAybkAGA", + "Error": "" + } +} +``` + +## Method XDPoS_getRewardByAccount + +Parameters: + +- account: string, required, account address +- begin: string, required, begin block number (`BlockNumber`) +- end: string, required, end block number (`BlockNumber`) + +Returns: + +result: object AccountRewardResponse: + +- EpochRewards: array of account rewards grouped by epoch files +- Total: aggregated rewards in the queried range + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_getRewardByAccount", + "params": [ + "0x0000000000000000000000000000000000000000", + "latest", + "latest" + ] +}' | jq +``` + +## Method XDPoS_getBlockInfoByV2EpochNum + +Parameters: + +- epochNumber: integer, required, v2 epoch number + +Returns: + +result: object EpochNumInfo + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_getBlockInfoByV2EpochNum", + "params": [ + 89300 + ] +}' | jq +``` + +## Method XDPoS_calculateBlockInfoByV1EpochNum + +Parameters: + +- targetEpochNum: integer, required, v1 epoch number + +Returns: + +result: object EpochNumInfo + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_calculateBlockInfoByV1EpochNum", + "params": [ + 100 + ] +}' | jq +``` + +## Method XDPoS_networkInformation + +Parameters: + +None + +Returns: + +result: object NetworkInformation: + +- NetworkId: big.Int +- XDCValidatorAddress: address +- RelayerRegistrationAddress: address +- XDCXListingAddress: address +- XDCZAddress: address +- LendingAddress: address +- ConsensusConfigs: object of XDPoSConfig + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1, + "method": "XDPoS_networkInformation" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1, + "result": { + "NetworkId": 50, + "XDCValidatorAddress": "0x0000000000000000000000000000000000000088", + "RelayerRegistrationAddress": "0x16c63b79f9c8784168103c0b74e6a59ec2de4a02", + "XDCXListingAddress": "0xde34dd0f536170993e8cff639ddffcf1a85d3e53", + "XDCZAddress": "0x8c0faeb5c6bed2129b8674f262fd45c4e9468bee", + "LendingAddress": "0x7d761afd7ff65a79e4173897594a194e3c506e57", + "ConsensusConfigs": { + "period": 2, + "epoch": 900, + "reward": 5000, + "rewardCheckpoint": 900, + "gap": 450, + "foundationWalletAddr": "0x92a289fe95a85c53b8d0d113cbaef0c1ec98ac65", + "SkipV1Validation": false, + "v2": { + "switchBlock": 80370000, + "config": { + "maxMasternodes": 108, + "switchRound": 3200000, + "minePeriod": 2, + "timeoutSyncThreshold": 3, + "timeoutPeriod": 10, + "certificateThreshold": 0.667 + }, + "allConfigs": { + "0": { + "maxMasternodes": 108, + "switchRound": 0, + "minePeriod": 2, + "timeoutSyncThreshold": 3, + "timeoutPeriod": 30, + "certificateThreshold": 0.667 + }, + "2000": { + "maxMasternodes": 108, + "switchRound": 2000, + "minePeriod": 2, + "timeoutSyncThreshold": 2, + "timeoutPeriod": 600, + "certificateThreshold": 0.667 + }, + "220000": { + "maxMasternodes": 108, + "switchRound": 220000, + "minePeriod": 2, + "timeoutSyncThreshold": 2, + "timeoutPeriod": 30, + "certificateThreshold": 0.667 + }, + "3200000": { + "maxMasternodes": 108, + "switchRound": 3200000, + "minePeriod": 2, + "timeoutSyncThreshold": 3, + "timeoutPeriod": 10, + "certificateThreshold": 0.667 + }, + "460000": { + "maxMasternodes": 108, + "switchRound": 460000, + "minePeriod": 2, + "timeoutSyncThreshold": 2, + "timeoutPeriod": 20, + "certificateThreshold": 0.667 + }, + "8000": { + "maxMasternodes": 108, + "switchRound": 8000, + "minePeriod": 2, + "timeoutSyncThreshold": 2, + "timeoutPeriod": 60, + "certificateThreshold": 0.667 + } + }, + "SkipV2Validation": false + } + } + } +} +``` diff --git a/docs/XDPoSChain/XDPoS/XDPoS_getLatestPoolStatus_response.json b/docs/XDPoSChain/XDPoS/XDPoS_getLatestPoolStatus_response.json new file mode 100644 index 0000000..f1e8a7b --- /dev/null +++ b/docs/XDPoSChain/XDPoS/XDPoS_getLatestPoolStatus_response.json @@ -0,0 +1,1735 @@ +{ + "jsonrpc": "2.0", + "id": 1, + "result": { + "vote": { + "12133772:92334150:92335896:0xdedd80fd0b4618a9b0ec98f2551d5521a90956b8baa127ddd16f943e1d099533": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x5651290bdd3a952357066b324f9334b544100140", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0x70916660766043c23443479658008eeedad8cb94", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619" + ], + "MissingSigners": [ + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617" + ] + }, + "12133773:92334150:92335897:0xb8fca396957ebad26e32396f28001ff7b7189b4a54a80b91d18cc28abd33384f": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0x70916660766043c23443479658008eeedad8cb94", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0" + ], + "MissingSigners": [ + "0x5651290bdd3a952357066b324f9334b544100140", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d" + ] + }, + "12133774:92334150:92335898:0x92e5f6863ccc58427327bf1a3bb1652d2d4555de87232badbfe12c2a4fa9f3ec": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0x70916660766043c23443479658008eeedad8cb94", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58" + ], + "MissingSigners": [ + "0x5651290bdd3a952357066b324f9334b544100140", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d" + ] + }, + "12133775:92334150:92335899:0x8683ae4101d100f46ba13502b6c5d2a470be0ff0c12d1ac1f286c760d4bfd09b": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x70916660766043c23443479658008eeedad8cb94", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819" + ], + "MissingSigners": [ + "0x5651290bdd3a952357066b324f9334b544100140", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d" + ] + }, + "12133776:92334150:92335900:0x093f0860bb88e17bfd6a95333829455d7863da00beaa4eadcfeb057044bbf22f": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0x70916660766043c23443479658008eeedad8cb94", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746" + ], + "MissingSigners": [ + "0x5651290bdd3a952357066b324f9334b544100140", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d" + ] + }, + "12133777:92334150:92335901:0x7e516ba3f777f8d906a0dbf92fd07f0c94902687373706c05340bda9f248aaeb": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0x70916660766043c23443479658008eeedad8cb94" + ], + "MissingSigners": [ + "0x5651290bdd3a952357066b324f9334b544100140", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d" + ] + }, + "12133778:92334150:92335902:0x1f637cf1c14302f0498d72d6a001bebcbaba36c25c16cd27feee7b30e04d41d6": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0x70916660766043c23443479658008eeedad8cb94", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec" + ], + "MissingSigners": [ + "0x5651290bdd3a952357066b324f9334b544100140", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d" + ] + }, + "12133779:92334150:92335903:0x5884aeb66bd7e45568d5c080e04e662a1d1382c98f6346fa603c136cb10e9521": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0x70916660766043c23443479658008eeedad8cb94", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746" + ], + "MissingSigners": [ + "0x5651290bdd3a952357066b324f9334b544100140", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d" + ] + }, + "12133780:92334150:92335904:0x39bdd5f03494239ea4196da2a2f7b19f03cedba249e442e44f07bb8cba4ea255": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x70916660766043c23443479658008eeedad8cb94", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe" + ], + "MissingSigners": [ + "0x5651290bdd3a952357066b324f9334b544100140", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d" + ] + }, + "12133781:92334150:92335905:0x9fc4ca89b1d5d1ee8a598149ea5875fe6e8da0703f1bfd3574d000c08d2c654d": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0x70916660766043c23443479658008eeedad8cb94", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0xfcbddd58be4616042543637a84ad18cb065adba4" + ], + "MissingSigners": [ + "0x5651290bdd3a952357066b324f9334b544100140", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d" + ] + }, + "12133782:92334150:92335906:0xf32c6d27f1557141b0e7520561169c53308b5be9646bfade266f0fb2b821f2e5": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0x5651290bdd3a952357066b324f9334b544100140", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0x70916660766043c23443479658008eeedad8cb94", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0xc02aed857b01b4d60b378096221db3b60afadc37" + ], + "MissingSigners": [ + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d" + ] + }, + "12133783:92334150:92335907:0x5b17f4224328eabb0acb901d63a5e97d7a694520dd0519ca664f9f73bbec169a": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0x70916660766043c23443479658008eeedad8cb94", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58" + ], + "MissingSigners": [ + "0x5651290bdd3a952357066b324f9334b544100140", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d" + ] + }, + "12133784:92334150:92335908:0xbdca173f759dc0a2cae58cc52ae835d716188b7432749a2b03ea5fa9f701a4ee": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0x70916660766043c23443479658008eeedad8cb94", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c" + ], + "MissingSigners": [ + "0x5651290bdd3a952357066b324f9334b544100140", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d" + ] + }, + "12133785:92334150:92335909:0xbeac606b9d4235b9ce83ed356299f55a26a5f0573c00f9e5bf775b03f905f807": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0x70916660766043c23443479658008eeedad8cb94", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9" + ], + "MissingSigners": [ + "0x5651290bdd3a952357066b324f9334b544100140", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d" + ] + }, + "12133786:92334150:92335910:0x7610387908700f5463d6670dc5b56b1bb9cfee2d6e39422100b73a2b36ec821f": { + "CurrentNumber": 73, + "CurrentSigners": [ + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0x70916660766043c23443479658008eeedad8cb94", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440" + ], + "MissingSigners": [ + "0x5651290bdd3a952357066b324f9334b544100140", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d" + ] + } + }, + "timeout": {}, + "syncInfo": {} + } +} diff --git a/docs/XDPoSChain/XDPoS/XDPoS_getSignersAtHash_response.json b/docs/XDPoSChain/XDPoS/XDPoS_getSignersAtHash_response.json new file mode 100644 index 0000000..13e5a49 --- /dev/null +++ b/docs/XDPoSChain/XDPoS/XDPoS_getSignersAtHash_response.json @@ -0,0 +1,111 @@ +{ + "jsonrpc": "2.0", + "id": 1, + "result": [ + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0x09bae325e54edf4dc8b79a8bb29f90deb90e8fe7", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0x18d31511b8efbf4215c48c026c56ad469ce90374", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0x1d25a7076993cfcd676237daea90d8edc99c7f46", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0x21396ca79a433a20b5904c9a77aa9a4f110ef80e", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0x2d881b373edf297b495e8deedd9108e3d6870dee", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0x35943387085224cd07efab4264e850ce6cdc99ac", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0x391f3d21d9062ebbdd958e436b26d4b40928658c", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0x48570e5de69db5203d259bbde6722bb1d3c3ee5a", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0x52825e085ae7785ad9b42aaa98a630560593b7e2", + "0x555ff7828a0b435432308a4721e4d9f110324025", + "0x5651290bdd3a952357066b324f9334b544100140", + "0x58f25975086b8d23c028ebb651be064da0360367", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0x618e706c531e57f44a739cef129bf08cbd912d6a", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x664c4a7b15d91b07c468162f535909114c038b91", + "0x70916660766043c23443479658008eeedad8cb94", + "0x72a0224245992792c75565bd3ab6caa6c8b95218", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0x7af6aedf3382bb3de2dba61769d96444bf660494", + "0x82c85801a8b18c4b2701e552727cea8494bbe9ea", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0x8eeeeafaca49e507bc9bba121dac97ec75774ff2", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0x90c60bd5a20bd2a3142e2c491b9a59c2c1e83e4d", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0x9200e4fe8959f0268eb9daf06aba4756e595b99f", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0x9c54bc764c2e00717fbbf31b4dc962a72c47bdf6", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0xa26be303e8378e427669650a4f53506d6dd2d55f", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0xb0a48f9087ecb85390abf23ec1b1d591ddc757bd", + "0xb0cc3fd7fe1df0f3d2d962746725f01693c49b31", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0xb570b13fa9ca093347448dc600ed0d09333ac9fa", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0xc3e2a9a73881fcce6fc9367a0a3ddbd658d20e37", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0xc7bf1cd426e6f47d879fbaba789d7c5740ce9b4b", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0xcaeb8bef9689e70135023d4dfb85864832f968bf", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0xd6e9161fad50d2e697cda2b960fd26bf52a5d169", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0xe8bc0e78114ad8dc4290eaed78bcb9e3f5b91e32", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0xeafdcce538785f97c0863288bfb3235e759b5d55", + "0xebf8e4904fe2bd561475e9e0e65a3336c56f83d3", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0xef3c018667aa871c02d3d6be10a9a8ccdd351294", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0xf48aa29de23c45c54a96c2a7b8ce5218abf46874", + "0xfca96ff494f38a9c33a558caf8d9d628c819c2ca" + ] +} diff --git a/docs/XDPoSChain/XDPoS/XDPoS_getSigners_response.json b/docs/XDPoSChain/XDPoS/XDPoS_getSigners_response.json new file mode 100644 index 0000000..6856603 --- /dev/null +++ b/docs/XDPoSChain/XDPoS/XDPoS_getSigners_response.json @@ -0,0 +1,266 @@ +{ + "jsonrpc": "2.0", + "id": 1, + "result": [ + "0x5651290bdd3a952357066b324f9334b544100140", + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "0xa4657c02208797985adedcbd048efc82291dbdb2", + "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "0x70916660766043c23443479658008eeedad8cb94", + "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f", + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "0x92d32364313c376dcae272e113fd04cea194d2c8", + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "0x065551f0dcac6f00cae11192d462db709be3758c", + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "0x9043fafbe8833adafb449b559cef300a9632763f", + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "0xc02aed857b01b4d60b378096221db3b60afadc37", + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "0xe230905c99aaa7b68402af8611b89ceda743191e", + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "0x39ee018a85e4469a1b335efe014067e315bd6594", + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "0x664c4a7b15d91b07c468162f535909114c038b91", + "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "0x346ada489c70c85ca665428389f1a971abbee960", + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6", + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c", + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb", + "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "0x0b5ba833d689a2ec8a3f5275f2b033bdd2de337b", + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "0x418c9839222e7105d227281f2a69a6c9d19c297e", + "0x44d21022e104d605235c863cf86c96045fad9505", + "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "0xc428369353c7de2782370ee634be1516d836ddad", + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "0x67a24b5821724419bbc0710cbbb3122d84703318", + "0xfcbddd58be4616042543637a84ad18cb065adba4", + "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "0x69a809f4d6e65792158c1bef35b316f6292eefb1", + "0x785076b971f2a90b029b680f90d4d609060c01d5", + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "0x95e58330cc798c8f079b8c91ba4d960d114cd785", + "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d", + "0xc7f52a1c275d470ff92718dfe27be7800f7bb697", + "0x9682520376f26a733a75588c0bdede7645bdfc4a", + "0x844a6c40b34e2335fc6887db2975d55183082c0d", + "0xcac04ac16876a65d3bf797679f34fc8272a1f6b4", + "0x82c85801a8b18c4b2701e552727cea8494bbe9ea", + "0xb594c78a71763d543d10358b2dde579ff041319a", + "0xb2e8a55ea7fccdd8cdfb1af8e497a6f793ddf63e", + "0x2759e5176992c834e7c0da762ae6178de6e7e711", + "0xba96294248d34b90f5b893ef82fd736cc1cc00ad", + "0x4288545139bb238d1671b96e8f8016b0b3793ad4", + "0x966f1f7e10f9bd531e31ab6bba0936944e00ebf9", + "0xeb0f1565b5d3bbf4489deb67972b814ee84c6cb7", + "0xd9d474b83c514920f44c519f83e23e7b6927d552", + "0x2e32b4db98ae68ea725212040f5f29abc61ce18f", + "0x9e057cebf2101a5e3e57906b834a2a82893b7739", + "0x3b8a906602422fe9f316e6fa0c1728cfaa238766", + "0x76df51309c6367678635a3ea76d1482666f55a05", + "0x0407b8f788fbd763280212be6f7a672351009487", + "0xa45457cc0153092a7e717e8e6d41221b827c28ae", + "0xbb0830e2d006d557541935362a621d002b0d6b00", + "0xd9d4f525683b2b54508727ae44ac147e4f0db441", + "0x66bb8c2724ed2dc09ece6024045e90e65c29eaff", + "0x935a34962ed8237d9700191320e3e0b66741133d", + "0xcb67c6c9ea422e33feef44aa5564bdf89997f57b", + "0x74f297c0197bab5ecf21add9ad9ced96ad42b61f", + "0x1cad85be8d097ed7a9b74ef5fbc9c75f2e2aa3bb", + "0x7b03e5e7912b0ce65f8be7549e23cb08392e369c", + "0x29a66147543707ef83d5d15e0a1d9f65cbe90e7c", + "0xebf8e4904fe2bd561475e9e0e65a3336c56f83d3", + "0xa59318ba345b293f4ac5acb9f59a47365987b7da", + "0x9d38187eccc49419c99af4b99dbb1494592b8a56", + "0x695ce237df312f9a6c6a5386b91b37ae249d07dd", + "0x82183d37848f38c807e274b15b86d16e9ae60fd3", + "0xb2610a596e2e34cf25adda2f05d867b3dc96b47d", + "0x4466ca98bdcd08d54a9672d5ca76a69909c4b59e", + "0x7bda7752b3533b3b71346ff02f6314b8fe77ec43", + "0x7b94fcbd37f865892874e315c954062f936460fc", + "0x3cc8e30f8be48e57dbac01d8c7b05fb18ef1f7c8", + "0x2d881b373edf297b495e8deedd9108e3d6870dee", + "0xd4ff534569c5bfd12d2280b8bd27aa8876f6b5fa", + "0x7b6b545279bc9e262a9dc224ab724ad629c75b63", + "0xf48aa29de23c45c54a96c2a7b8ce5218abf46874", + "0x4cfd9048cfe93e02e30a84c7538c726e980c1d78", + "0xfc5fea016be9ac2d23dfe18e16d3be79547e5466", + "0x1390a610e22f9ee1c0fc92c341a2b0c6f3f9d08a", + "0x48378844ab9486410ebf01d058a434e6a42e2ca5", + "0x3396803b0cb3b5790911bb51b6c5193e9940793f", + "0xa478633e8aba4188c25159e1103206eeca98bced", + "0x55b7d6ca73944e2ab43d226d7ed1ff3d72516aff", + "0x4eaff58c4a66839c6bbe2bca1dbd52a4d328aa5c", + "0x7af6aedf3382bb3de2dba61769d96444bf660494", + "0x3197b8ed3bcd7eea2c695951d9d57e833457072b", + "0x449bed0b27afe708a30a481329733bcbcba2bc21", + "0x39ffd4aa42b02f1b55ed822267da57219f11fc6a", + "0xab5d74a461bb0f2231abcc5341ba7d89b24f0926", + "0xa828c2381bb91fc96cc269de73b99a4314ac4b5b", + "0xef7ce03b7fdea2d0bf2ad6e0a1e9b0f2ed547447", + "0xd6e9161fad50d2e697cda2b960fd26bf52a5d169", + "0x8eeeeafaca49e507bc9bba121dac97ec75774ff2", + "0x05f4c54ffc16b943b98713248c751ce98f924cbd", + "0x61ddae7aefa4d69c868379416504b1537d1fd558", + "0x75ea95b0e9a56417ce1434aac37b0afcba0c5221", + "0x070eed0a2c77650dd41599920b5a0089dc60bfe6", + "0xb570b13fa9ca093347448dc600ed0d09333ac9fa", + "0x3bddd35ddf0945c0151a4ccd547d9e7a0b1fa4cd", + "0x00021c85d8cf9ef6c73e8f95740f8e874e4c9d1f", + "0x9200e4fe8959f0268eb9daf06aba4756e595b99f", + "0x43bb2e3bb47d0a12d45c87dcdbd6d16a47e1000a", + "0x391f3d21d9062ebbdd958e436b26d4b40928658c", + "0x6f356f6a7ff84c46f59fee691a2a161494871eec", + "0x934a05866a7a44b212b55484f201e0ada955ef41", + "0x349563f9b0e3167f816cc39b272e3f888e23d3f3", + "0x226ddc05e1adc6872285d95d4277a498fdce375b", + "0x618e706c531e57f44a739cef129bf08cbd912d6a", + "0xf0dee298ac62b7e351148b4fbde1d45d7d9b1560", + "0x2a4559e84ca53e00b05d9d53086005432926a992", + "0xfa9a1f2ec3d92428fc6105a4e05832ae74170ac4", + "0x01df5f4986976e8cf1592cca7b792664510b6086", + "0x0e26a54bf70c51460cb13f4823027678672e4a0a", + "0x84620482d52b71cb18bf84cd34f0cc0dcfd940cd", + "0xe8bc0e78114ad8dc4290eaed78bcb9e3f5b91e32", + "0x7c1f132c335f04002178d0d29fe785ad329bdfb1", + "0xe79ef2d92a8e4d758d78dfcc8e61b2fa377ee78d", + "0xac95f4af1e9efbc914895695e232fb8dbaa66275", + "0x417b06236ecc5bf200a59152e92cd4923867409c", + "0x09bae325e54edf4dc8b79a8bb29f90deb90e8fe7", + "0xd97d7434af4ad873585c71df55fce07996e27a82", + "0x7fca0e918c06ff0b4e51ecf76670e07714e44a9c", + "0xa6d916b338291ae14402d67af2b9d9e19bf72fd5", + "0xa9c2b73ba170ddf37bc92fee1bafaf54e138ce87", + "0xcd52996e7a6c75ddf85baab529af6c55f254ac15", + "0xf7ff86c0d2c2795dbd2731ca122a7d13a802b7b8", + "0x944dd93e0f6d213b0dce27590bd5a9a4351fafd6", + "0xe8b4fd78437831cb9a182771bef485b619cef31f", + "0xc7bf1cd426e6f47d879fbaba789d7c5740ce9b4b", + "0xf11e012f56ac7341be939cb668e63a37e79db84e", + "0x76e9285b4a804033a1d87b21c4e9d4e7028ce944", + "0x00633d6bc3c30349a7fe55999c5b18940bcc9f43", + "0xb55f4ca1a5741a91ff4ea4e15e9324eb973f4ccd", + "0x58d877f1f8a61cf99192e3161429c8a78d7f1243", + "0x555ff7828a0b435432308a4721e4d9f110324025", + "0x58f25975086b8d23c028ebb651be064da0360367", + "0x8e9976680f84fab8b1dff91716762855c1a975e1", + "0x7b0704722600979fd7da53afb1618aab3b9ddeb4", + "0xfab275bfc83c3bc8aa17c16ed5a0b4e60caca299", + "0x08d53a08b1d46ecb45bc3a299af9abdde9035338", + "0xd64c15787bb52bbfe0d195df0d954725469a318e", + "0x823a47d0a1f4c5781ead9f0d5b361557a45355bd", + "0x5fca7280f7b3f743bc3248261d05f7b57651ec3c", + "0x13afe4210b6340723883be07618d3a4f019c2adc", + "0x4d21849446a60c9ecbcf6155d1152676b8a76b44", + "0x249f443d5c8400d7bc638a199d1f458b47a41a47", + "0x32e494f6f737bd419169a837c35e195a851bcb8d", + "0x079d87904cd707143dd39c8be595bbe7a2181fb4", + "0x26179a252e9de28c29a37fbeb60df72be5e3e27d", + "0x21396ca79a433a20b5904c9a77aa9a4f110ef80e", + "0xec5273989dd0e18d658f037cae2eff6803369c5c", + "0xe7a5556c87fe764dcba9bcd31e1f4aa27b638117", + "0xc6b903af2816a2423a3300ed853e5e7d26ea0cf0", + "0xb8ad6e0a7bffb5ea0b24c095e16bb4a2c936203c", + "0x7c0f72d80d9d8b822e2fb217e56be732a12fc8c9", + "0x1eca7cd6df02a177e10bc9769a544b49f13aa875", + "0xd438128b57cf71ab2168a263f24708263775c54f", + "0xb653aa2df1b710894bc1b94b3bd06799701d6d6b", + "0x7f82ddbd91c5fafe6d5fdf417c681eed211fefec", + "0xbd46f94ca626a3ac72e60ca7efde379e42603b98", + "0xfc2f29a87a63e07a341d0bb9462e9a14af013a6c", + "0x9bbf9e3af8a473124a17656f0e84d99aa8b51864", + "0xfe5b2f3e7fb6fc3b8c65f2af4d3f4cabe024bce9", + "0x3dd28884ec3ea0904f0f6697c31b7d273a899480", + "0x1c908c36c4470c3f66860e7c5152cc17e480ff54", + "0xf2a1d535f4bda9e810c067975d08dd8724f9066a", + "0x52c21a9daa75e6eb91d449cad9649013903b7a73", + "0xb495b026cbf87664d68f279e55524aa61e6e9d5e", + "0xe05e3146327d8fb775f50fd8d8f943dbe200ef4b", + "0x7e1922ff757b8ec55ab4947afe7ec09aa1f5c7d2", + "0xf38f7402de55c5c7cf7a5a29244148b817d7bca3", + "0x8f5fdc5f5f5f8c9832d4df256414f2a982404830", + "0x8b9654195b7c9a56ae20deb36a29834763800b03", + "0xc1c9152c47ddb5002ed2501df812061ae6f75398", + "0x06fb5e6a7abcc241729f591ac96ee41a9f10decf", + "0xe446bf0f76dcc53d36d6c18d9b4fd7d63ff4f740", + "0x64e2e07bb17d978108824219741b9cc9e52b4443", + "0xb1847452a58a2e2a4ee658a192f0d5d511c6f3f2", + "0x555d4cd195bcb7d4196f2005db46a4b71c36c5a4", + "0xa1d4e0b87306ec8410049464730ae79ba40a3258", + "0x6e5bbbf0d9d1851599a21676c99b1a8cc012753d" + ] +} diff --git a/docs/XDPoSChain/XDPoS/XDPoS_getSnapshot_response.json b/docs/XDPoSChain/XDPoS/XDPoS_getSnapshot_response.json new file mode 100644 index 0000000..c4da809 --- /dev/null +++ b/docs/XDPoSChain/XDPoS/XDPoS_getSnapshot_response.json @@ -0,0 +1,273 @@ +{ + "jsonrpc": "2.0", + "id": 1, + "result": { + "number": 92335950, + "hash": "0xb099009c6765790aeb9241382f83fb5c64d95fc4704412e1c53a4e58cfb114f2", + "signers": { + "0x00021c85d8cf9ef6c73e8f95740f8e874e4c9d1f": {}, + "0x00633d6bc3c30349a7fe55999c5b18940bcc9f43": {}, + "0x01df5f4986976e8cf1592cca7b792664510b6086": {}, + "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1": {}, + "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff": {}, + "0x0407b8f788fbd763280212be6f7a672351009487": {}, + "0x047ffe1fc7f6d0b7168c4ccc312221089629f470": {}, + "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6": {}, + "0x05f4c54ffc16b943b98713248c751ce98f924cbd": {}, + "0x065551f0dcac6f00cae11192d462db709be3758c": {}, + "0x06fb5e6a7abcc241729f591ac96ee41a9f10decf": {}, + "0x070eed0a2c77650dd41599920b5a0089dc60bfe6": {}, + "0x079d87904cd707143dd39c8be595bbe7a2181fb4": {}, + "0x08d53a08b1d46ecb45bc3a299af9abdde9035338": {}, + "0x09bae325e54edf4dc8b79a8bb29f90deb90e8fe7": {}, + "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd": {}, + "0x0b0afb41c14dd921a9a4511c226dc29254ba0d8f": {}, + "0x0b5ba833d689a2ec8a3f5275f2b033bdd2de337b": {}, + "0x0e26a54bf70c51460cb13f4823027678672e4a0a": {}, + "0x1390a610e22f9ee1c0fc92c341a2b0c6f3f9d08a": {}, + "0x13afe4210b6340723883be07618d3a4f019c2adc": {}, + "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052": {}, + "0x19e945a26b15e4d6f96386a4f8596b6313311b7e": {}, + "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8": {}, + "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4": {}, + "0x1aff171caa8c1ea93bac4c27676f356d054412b4": {}, + "0x1bc85db77617515381cbbb28fdd2b1a10264de11": {}, + "0x1c908c36c4470c3f66860e7c5152cc17e480ff54": {}, + "0x1cad85be8d097ed7a9b74ef5fbc9c75f2e2aa3bb": {}, + "0x1d393817ab218ebade3e8ad591593ec3b132b1f6": {}, + "0x1e0103ba7665d15328b3886927d4f0a85f8b2299": {}, + "0x1eca7cd6df02a177e10bc9769a544b49f13aa875": {}, + "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d": {}, + "0x21396ca79a433a20b5904c9a77aa9a4f110ef80e": {}, + "0x226ddc05e1adc6872285d95d4277a498fdce375b": {}, + "0x241ff0d3096e2e0b477780f9f551918a06827c05": {}, + "0x249f443d5c8400d7bc638a199d1f458b47a41a47": {}, + "0x24c0832d9df8189166d8e4e2cedc40ad69077b17": {}, + "0x251aca934009f4dda1d904e28ad7f20b3da4d888": {}, + "0x25c65b4b379ac37cf78357c4915f73677022eaff": {}, + "0x26179a252e9de28c29a37fbeb60df72be5e3e27d": {}, + "0x2759e5176992c834e7c0da762ae6178de6e7e711": {}, + "0x29a66147543707ef83d5d15e0a1d9f65cbe90e7c": {}, + "0x2a4559e84ca53e00b05d9d53086005432926a992": {}, + "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2": {}, + "0x2d74d0125982bdc3a9f54a10216d82509379e821": {}, + "0x2d881b373edf297b495e8deedd9108e3d6870dee": {}, + "0x2e32b4db98ae68ea725212040f5f29abc61ce18f": {}, + "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00": {}, + "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe": {}, + "0x3197b8ed3bcd7eea2c695951d9d57e833457072b": {}, + "0x32e494f6f737bd419169a837c35e195a851bcb8d": {}, + "0x3396803b0cb3b5790911bb51b6c5193e9940793f": {}, + "0x346ada489c70c85ca665428389f1a971abbee960": {}, + "0x349563f9b0e3167f816cc39b272e3f888e23d3f3": {}, + "0x35898873c021f9f4fa01a76c7fa595159f5523e7": {}, + "0x360b9e5870fc91e375f902fc134f91739f4a99c7": {}, + "0x361faefbcd1c1b7f2d18723d178633202ccc5858": {}, + "0x391f3d21d9062ebbdd958e436b26d4b40928658c": {}, + "0x39ee018a85e4469a1b335efe014067e315bd6594": {}, + "0x39ffd4aa42b02f1b55ed822267da57219f11fc6a": {}, + "0x3adca8d7e123718ee5940d4eb25d9244dc98c7e6": {}, + "0x3b8a906602422fe9f316e6fa0c1728cfaa238766": {}, + "0x3bddd35ddf0945c0151a4ccd547d9e7a0b1fa4cd": {}, + "0x3cc8e30f8be48e57dbac01d8c7b05fb18ef1f7c8": {}, + "0x3dd28884ec3ea0904f0f6697c31b7d273a899480": {}, + "0x417b06236ecc5bf200a59152e92cd4923867409c": {}, + "0x418c9839222e7105d227281f2a69a6c9d19c297e": {}, + "0x4288545139bb238d1671b96e8f8016b0b3793ad4": {}, + "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0": {}, + "0x43bb2e3bb47d0a12d45c87dcdbd6d16a47e1000a": {}, + "0x4466ca98bdcd08d54a9672d5ca76a69909c4b59e": {}, + "0x449bed0b27afe708a30a481329733bcbcba2bc21": {}, + "0x44d21022e104d605235c863cf86c96045fad9505": {}, + "0x450d714e65f4de007937c56fb1c4686efd4fb4ec": {}, + "0x48378844ab9486410ebf01d058a434e6a42e2ca5": {}, + "0x497c44f4a22099109ad7d194aad4fbe78dceb788": {}, + "0x49d3fa92eec838f644e8cacf2c93533d29b6c713": {}, + "0x4b7076c988da8a0ef87f1af137f7abc39557b746": {}, + "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4": {}, + "0x4cfd9048cfe93e02e30a84c7538c726e980c1d78": {}, + "0x4d21849446a60c9ecbcf6155d1152676b8a76b44": {}, + "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9": {}, + "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5": {}, + "0x4eaff58c4a66839c6bbe2bca1dbd52a4d328aa5c": {}, + "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be": {}, + "0x52c21a9daa75e6eb91d449cad9649013903b7a73": {}, + "0x5454edee66858dfcc14871cc8b26f57ef528bedc": {}, + "0x555d4cd195bcb7d4196f2005db46a4b71c36c5a4": {}, + "0x555ff7828a0b435432308a4721e4d9f110324025": {}, + "0x55b7d6ca73944e2ab43d226d7ed1ff3d72516aff": {}, + "0x5651290bdd3a952357066b324f9334b544100140": {}, + "0x58d877f1f8a61cf99192e3161429c8a78d7f1243": {}, + "0x58f25975086b8d23c028ebb651be064da0360367": {}, + "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f": {}, + "0x5a39debded5481a5e5b73a1551fd31208b88da4e": {}, + "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5": {}, + "0x5fca7280f7b3f743bc3248261d05f7b57651ec3c": {}, + "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819": {}, + "0x618e706c531e57f44a739cef129bf08cbd912d6a": {}, + "0x619f838ea2a12cdb508e759c3e0697e021d52ceb": {}, + "0x61ddae7aefa4d69c868379416504b1537d1fd558": {}, + "0x621996eb1d03a6e9614ddf150f6123c5602c8418": {}, + "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f": {}, + "0x64e2e07bb17d978108824219741b9cc9e52b4443": {}, + "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49": {}, + "0x664c4a7b15d91b07c468162f535909114c038b91": {}, + "0x66bb8c2724ed2dc09ece6024045e90e65c29eaff": {}, + "0x67a24b5821724419bbc0710cbbb3122d84703318": {}, + "0x695ce237df312f9a6c6a5386b91b37ae249d07dd": {}, + "0x69a809f4d6e65792158c1bef35b316f6292eefb1": {}, + "0x6e5bbbf0d9d1851599a21676c99b1a8cc012753d": {}, + "0x6f356f6a7ff84c46f59fee691a2a161494871eec": {}, + "0x70916660766043c23443479658008eeedad8cb94": {}, + "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd": {}, + "0x73d73c5ed7b2f09d604e033d4b52909d5ca857fb": {}, + "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b": {}, + "0x74f297c0197bab5ecf21add9ad9ced96ad42b61f": {}, + "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984": {}, + "0x75ea95b0e9a56417ce1434aac37b0afcba0c5221": {}, + "0x76df51309c6367678635a3ea76d1482666f55a05": {}, + "0x76e9285b4a804033a1d87b21c4e9d4e7028ce944": {}, + "0x783f0724f9dabd1bb52c7331bce7041804221d1b": {}, + "0x785076b971f2a90b029b680f90d4d609060c01d5": {}, + "0x78fb8980d122c902ad1abeac523a92e9c24e75c4": {}, + "0x7aa125338be075260e77c6a66a56c90a5dec4c58": {}, + "0x7af6aedf3382bb3de2dba61769d96444bf660494": {}, + "0x7b03e5e7912b0ce65f8be7549e23cb08392e369c": {}, + "0x7b0704722600979fd7da53afb1618aab3b9ddeb4": {}, + "0x7b6b545279bc9e262a9dc224ab724ad629c75b63": {}, + "0x7b94fcbd37f865892874e315c954062f936460fc": {}, + "0x7bda7752b3533b3b71346ff02f6314b8fe77ec43": {}, + "0x7c0f72d80d9d8b822e2fb217e56be732a12fc8c9": {}, + "0x7c1f132c335f04002178d0d29fe785ad329bdfb1": {}, + "0x7e1922ff757b8ec55ab4947afe7ec09aa1f5c7d2": {}, + "0x7f82ddbd91c5fafe6d5fdf417c681eed211fefec": {}, + "0x7fca0e918c06ff0b4e51ecf76670e07714e44a9c": {}, + "0x82183d37848f38c807e274b15b86d16e9ae60fd3": {}, + "0x823a47d0a1f4c5781ead9f0d5b361557a45355bd": {}, + "0x82c85801a8b18c4b2701e552727cea8494bbe9ea": {}, + "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23": {}, + "0x844a6c40b34e2335fc6887db2975d55183082c0d": {}, + "0x84620482d52b71cb18bf84cd34f0cc0dcfd940cd": {}, + "0x8b9654195b7c9a56ae20deb36a29834763800b03": {}, + "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887": {}, + "0x8e9976680f84fab8b1dff91716762855c1a975e1": {}, + "0x8eeeeafaca49e507bc9bba121dac97ec75774ff2": {}, + "0x8f2fb5da850042b7da5097061f098493f8ec6dd8": {}, + "0x8f5fdc5f5f5f8c9832d4df256414f2a982404830": {}, + "0x9043fafbe8833adafb449b559cef300a9632763f": {}, + "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04": {}, + "0x9200e4fe8959f0268eb9daf06aba4756e595b99f": {}, + "0x92d32364313c376dcae272e113fd04cea194d2c8": {}, + "0x934a05866a7a44b212b55484f201e0ada955ef41": {}, + "0x935a34962ed8237d9700191320e3e0b66741133d": {}, + "0x944dd93e0f6d213b0dce27590bd5a9a4351fafd6": {}, + "0x95e58330cc798c8f079b8c91ba4d960d114cd785": {}, + "0x966f1f7e10f9bd531e31ab6bba0936944e00ebf9": {}, + "0x9682520376f26a733a75588c0bdede7645bdfc4a": {}, + "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0": {}, + "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0": {}, + "0x9bbf9e3af8a473124a17656f0e84d99aa8b51864": {}, + "0x9d38187eccc49419c99af4b99dbb1494592b8a56": {}, + "0x9e057cebf2101a5e3e57906b834a2a82893b7739": {}, + "0x9fce52c5c451599235c17bc37e99f846d25ee6ec": {}, + "0xa1d4e0b87306ec8410049464730ae79ba40a3258": {}, + "0xa43a99c9752166ec30c8369ce1e84de43be1e617": {}, + "0xa45457cc0153092a7e717e8e6d41221b827c28ae": {}, + "0xa4657c02208797985adedcbd048efc82291dbdb2": {}, + "0xa478633e8aba4188c25159e1103206eeca98bced": {}, + "0xa59318ba345b293f4ac5acb9f59a47365987b7da": {}, + "0xa65010026b83368ca05df6e8b467985d6de3eac5": {}, + "0xa6d916b338291ae14402d67af2b9d9e19bf72fd5": {}, + "0xa70b87c39a1237ba53953a1da04b23d4db28eace": {}, + "0xa72ce94a09db26dce57a4852409abc2fff07a962": {}, + "0xa828c2381bb91fc96cc269de73b99a4314ac4b5b": {}, + "0xa9c2b73ba170ddf37bc92fee1bafaf54e138ce87": {}, + "0xab5d74a461bb0f2231abcc5341ba7d89b24f0926": {}, + "0xac95f4af1e9efbc914895695e232fb8dbaa66275": {}, + "0xae990d44bc1d4476f8ebf71e286b85ad8453774c": {}, + "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f": {}, + "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d": {}, + "0xb1847452a58a2e2a4ee658a192f0d5d511c6f3f2": {}, + "0xb2610a596e2e34cf25adda2f05d867b3dc96b47d": {}, + "0xb2e8a55ea7fccdd8cdfb1af8e497a6f793ddf63e": {}, + "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a": {}, + "0xb495b026cbf87664d68f279e55524aa61e6e9d5e": {}, + "0xb55f4ca1a5741a91ff4ea4e15e9324eb973f4ccd": {}, + "0xb570b13fa9ca093347448dc600ed0d09333ac9fa": {}, + "0xb594c78a71763d543d10358b2dde579ff041319a": {}, + "0xb653aa2df1b710894bc1b94b3bd06799701d6d6b": {}, + "0xb8ad6e0a7bffb5ea0b24c095e16bb4a2c936203c": {}, + "0xb95d3439a7d3654e7871e72213caaad472ec8325": {}, + "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708": {}, + "0xba96294248d34b90f5b893ef82fd736cc1cc00ad": {}, + "0xbb0830e2d006d557541935362a621d002b0d6b00": {}, + "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe": {}, + "0xbd46f94ca626a3ac72e60ca7efde379e42603b98": {}, + "0xc02aed857b01b4d60b378096221db3b60afadc37": {}, + "0xc1c9152c47ddb5002ed2501df812061ae6f75398": {}, + "0xc428369353c7de2782370ee634be1516d836ddad": {}, + "0xc67c2dec79da735d6587d8db3c23271d557196ab": {}, + "0xc6b903af2816a2423a3300ed853e5e7d26ea0cf0": {}, + "0xc7bf1cd426e6f47d879fbaba789d7c5740ce9b4b": {}, + "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb": {}, + "0xc7f52a1c275d470ff92718dfe27be7800f7bb697": {}, + "0xcac04ac16876a65d3bf797679f34fc8272a1f6b4": {}, + "0xcb67c6c9ea422e33feef44aa5564bdf89997f57b": {}, + "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c": {}, + "0xccab2f5267bc66b69f1688560c2e075216908a2c": {}, + "0xcd52996e7a6c75ddf85baab529af6c55f254ac15": {}, + "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0": {}, + "0xd22fdac1459760f698618d927bbe22249e2b29b9": {}, + "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf": {}, + "0xd438128b57cf71ab2168a263f24708263775c54f": {}, + "0xd4ff534569c5bfd12d2280b8bd27aa8876f6b5fa": {}, + "0xd5384163e03481b8b1c13e8da611e05e2612586c": {}, + "0xd5bb37763625bc16f2ad0791d87e2726004241e4": {}, + "0xd64c15787bb52bbfe0d195df0d954725469a318e": {}, + "0xd6e9161fad50d2e697cda2b960fd26bf52a5d169": {}, + "0xd97d7434af4ad873585c71df55fce07996e27a82": {}, + "0xd9d474b83c514920f44c519f83e23e7b6927d552": {}, + "0xd9d4f525683b2b54508727ae44ac147e4f0db441": {}, + "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5": {}, + "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73": {}, + "0xde1470c0f478ca7efd151be5a13c2addcfff328c": {}, + "0xdef4bd67f9e2627ca495b5f71794fab1bab40619": {}, + "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e": {}, + "0xe05e3146327d8fb775f50fd8d8f943dbe200ef4b": {}, + "0xe230905c99aaa7b68402af8611b89ceda743191e": {}, + "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7": {}, + "0xe446bf0f76dcc53d36d6c18d9b4fd7d63ff4f740": {}, + "0xe4710a854b24062ff37ab6636bd9a456e24c1635": {}, + "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7": {}, + "0xe495a6242b78fe35211116839ad1882e7c4fc564": {}, + "0xe79ef2d92a8e4d758d78dfcc8e61b2fa377ee78d": {}, + "0xe7a5556c87fe764dcba9bcd31e1f4aa27b638117": {}, + "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21": {}, + "0xe8b4fd78437831cb9a182771bef485b619cef31f": {}, + "0xe8bc0e78114ad8dc4290eaed78bcb9e3f5b91e32": {}, + "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d": {}, + "0xeb0f1565b5d3bbf4489deb67972b814ee84c6cb7": {}, + "0xebf8e4904fe2bd561475e9e0e65a3336c56f83d3": {}, + "0xec4a5fbd2e46e97be98c212e668ef1d08d695440": {}, + "0xec5273989dd0e18d658f037cae2eff6803369c5c": {}, + "0xef7ce03b7fdea2d0bf2ad6e0a1e9b0f2ed547447": {}, + "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03": {}, + "0xf0dee298ac62b7e351148b4fbde1d45d7d9b1560": {}, + "0xf11e012f56ac7341be939cb668e63a37e79db84e": {}, + "0xf2a1d535f4bda9e810c067975d08dd8724f9066a": {}, + "0xf38f7402de55c5c7cf7a5a29244148b817d7bca3": {}, + "0xf48aa29de23c45c54a96c2a7b8ce5218abf46874": {}, + "0xf7ff86c0d2c2795dbd2731ca122a7d13a802b7b8": {}, + "0xfa9a1f2ec3d92428fc6105a4e05832ae74170ac4": {}, + "0xfab275bfc83c3bc8aa17c16ed5a0b4e60caca299": {}, + "0xfc2f29a87a63e07a341d0bb9462e9a14af013a6c": {}, + "0xfc5fea016be9ac2d23dfe18e16d3be79547e5466": {}, + "0xfcbddd58be4616042543637a84ad18cb065adba4": {}, + "0xfce02e190f722e790be06b3a6ec43e2f606dba65": {}, + "0xfe5b2f3e7fb6fc3b8c65f2af4d3f4cabe024bce9": {} + }, + "recents": null, + "votes": null, + "tally": null + } +} diff --git a/docs/XDPoSChain/admin/admin.md b/docs/XDPoSChain/admin/admin.md new file mode 100644 index 0000000..144aeea --- /dev/null +++ b/docs/XDPoSChain/admin/admin.md @@ -0,0 +1,508 @@ +# Module admin + +The `admin` API gives you access to several non-standard RPC methods, which will allow you to have a fine grained control over your Geth instance, including but not limited to network peer and RPC endpoint management. + +## Method admin_addPeer + +The `addPeer` administrative method requests adding a new remote node to the list of tracked static nodes. The node will try to maintain connectivity to these nodes at all times, reconnecting every once in a while if the remote connection goes down. + +Parameters: + +- url: string, required, the enode URL of the remote peer to start tracking + +Returns: + +result: bool, indicating whether the peer was accepted for tracking or some error occurred. + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_addPeer", + "params": [ + "enode://1f5a9bd8bd4abb4ecec8812f0f440fec30dd745c91871ac57ebbadcd23ceafbdf7035f29bf0092feb5087ad72ad208dd12966bfcb88b339884e08cff4d167d87@194.180.176.105:38645" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": true +} +``` + +## Method admin_addTrustedPeer + +The `addTrustedPeer` method allows a remote node to always connect, even if slots are full. + +Parameters: + +- url: string, required + +Returns: + +result: bool + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_addTrustedPeer", + "params": [ + "enode://1f5a9bd8bd4abb4ecec8812f0f440fec30dd745c91871ac57ebbadcd23ceafbdf7035f29bf0092feb5087ad72ad208dd12966bfcb88b339884e08cff4d167d87@194.180.176.105:38645" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": true +} +``` + +## Method admin_datadir + +The `datadir` administrative property can be queried for the absolute path the running Geth node currently uses to store all its databases. + +Parameters: + +None + +Returns: + +result: string + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_datadir" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "/home/node/xdc_chain/mainnet_2" +} +``` + +## Method admin_exportChain + +The `exportChain` method exports the current blockchain into a local file. It optionally takes a first and last block number, in which case it exports only that range of blocks. + +Parameters: + +- fn: string, required, filen name + +Returns: + +result: bool, indicating whether the operation succeeded + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_exportChain", + "params": [ + "filename" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": true +} +``` + +## Method admin_importChain + +The `importChain` method imports an exported list of blocks from a local file. Importing involves processing the blocks and inserting them into the canonical chain. The state from the parent block of this range is required. It returns a boolean indicating whether the operation succeeded. + +Parameters: + +- file: string, required, filen name + +Returns: + +result: bool, indicating whether the operation succeeded + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_importChain", + "params": [ + "filename" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": true +} +``` + +## Method admin_nodeInfo + +The `nodeInfo` administrative property can be queried for all the information known about the running Geth node at the networking granularity. These include general information about the node itself as a participant of the P2P overlay protocol, as well as specialized information added by each of the running application protocols (e.g. eth, les, shh, bzz). + +Parameters: + +None + +Returns: + +result: object NodeInfo: + +- id: string, unique node identifier (also the encryption key) +- name: string, name of the node, including client type, version, OS, custom data +- enode: string, enode URL for adding this peer from remote peers +- ip: string, IP address of the node +- ports: object + - discovery: int, UDP listening port for discovery protocol + - listener: int, TCP listening port for RLPx +- listenAddr: string +- protocols: object + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_nodeInfo" +}' | jq +``` + +Response: + +See [admin_nodeInfo_response.json](./admin_nodeInfo_response.json) + +## Method admin_peerEvents + +The `peerEvents` creates an RPC subscription which receives peer events from the node's p2p server. The type of events emitted by the server are as follows: + +- add: emitted when a peer is added +- drop: emitted when a peer is dropped +- msgsend: emitted when a message is successfully sent to a peer +- msgrecv: emitted when a message is received from a peer + +Parameters: + +None + +Returns: + +result: object Subscription + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_peerEvents" +}' | jq +``` + +## Method admin_peers + +The `peers` administrative property can be queried for all the information known about the connected remote nodes at the networking granularity. + +Parameters: + +None + +Returns: + +result: array of PeerInfo: + +- id: string,unique node identifier (also the encryption key) +- name: string, name of the node, including client type, version, OS, custom data +- caps: array of string, sum-protocols advertised by this particular peer +- network object: + - localAddress: string, local endpoint of the TCP data connection + - remoteAddress: string, remote endpoint of the TCP data connection + - inbound: bool + - trusted: bool + - static: bool +- protocols: object, sub-protocol specific metadata fields + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_peers" +}' | jq +``` + +Response: + +See [admin_peers_response.json](./admin_peers_response.json) + +## Method admin_removePeer + +The `removePeer` method disconnects from a remote node if the connection exists. It returns a boolean indicating validations succeeded. Note a true value doesn't necessarily mean that there was a connection which was disconnected. + +Parameters: + +- url: string, required + +Returns: + +result: bool, indicating validations succeeded + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_removePeer", + "params": [ + "enode://1f5a9bd8bd4abb4ecec8812f0f440fec30dd745c91871ac57ebbadcd23ceafbdf7035f29bf0092feb5087ad72ad208dd12966bfcb88b339884e08cff4d167d87@194.180.176.105:38645" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": true +} +``` + +## Method admin_removeTrustedPeer + +The `removeTrustedPeer` method removes a remote node from the trusted peer set, but it does not disconnect it automatically. + +Parameters: + +- url: string, required + +Returns: + +result: bool, indicating validations succeeded + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_removeTrustedPeer", + "params": [ + "enode://1f5a9bd8bd4abb4ecec8812f0f440fec30dd745c91871ac57ebbadcd23ceafbdf7035f29bf0092feb5087ad72ad208dd12966bfcb88b339884e08cff4d167d87@194.180.176.105:38645" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": true +} +``` + +## Method admin_startHTTP + +The `startHTTP` method starts the HTTP RPC API server. + +Parameters: + +- host: string, optional, network interface to open the listener socket on (defaults to "localhost") +- port: int, optional, network port to open the listener socket on (defaults to 8545) +- cors: string, optional, cross-origin resource sharing header to use (defaults to "") +- apis: string, optional, API modules to offer over this interface (defaults to "eth,net,web3") +- vhosts: string, optional + +Returns: + +result: bool, indicating whether the operation succeeded + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_startHTTP" +}' | jq +``` + +## Method admin_startRPC + +The `startRPC` method is a deprecated alias of `admin_startHTTP`. + +Parameters: + +- host: string, optional, network interface to open the listener socket on (defaults to "localhost") +- port: int, optional, network port to open the listener socket on (defaults to 8545) +- cors: string, optional, cross-origin resource sharing header to use (defaults to "") +- apis: string, optional, API modules to offer over this interface (defaults to "eth,net,web3") +- vhosts: string, optional + +Returns: + +result: bool, indicating whether the operation succeeded + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_startRPC" +}' | jq +``` + +## Method admin_startWS + +The startWS administrative method starts an WebSocket based JSON RPC API webserver to handle client requests. + +Parameters: + +- host: string, optional, network interface to open the listener socket on (defaults to "localhost") +- port: int, optional, network port to open the listener socket on (defaults to 8546) +- allowedOrigins: string, optional, allowed WebSocket origins (defaults to server configuration) +- apis: string, optional, API modules to offer over this interface (defaults to "eth,net,web3") + +Returns: + +result: bool, indicating whether the operation succeeded + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_startWS" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": true +} +``` + +## Method admin_stopHTTP + +The `stopHTTP` method shuts down the HTTP server. + +Parameters: + +None + +Returns: + +result: bool, indicating whether the operation succeeded + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_stopHTTP" +}' | jq +``` + +## Method admin_stopRPC + +The `stopRPC` method is a deprecated alias of `admin_stopHTTP`. + +Parameters: + +None + +Returns: + +result: bool, indicating whether the operation succeeded + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_stopRPC" +}' | jq +``` + +## Method admin_stopWS + +The `stopWS` administrative method closes the currently open WebSocket RPC endpoint. + +Parameters: + +None + +Returns: + +result: bool, indicating whether the endpoint was closed or not + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "admin_stopWS" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": true +} +``` diff --git a/docs/XDPoSChain/admin/admin_nodeInfo_response.json b/docs/XDPoSChain/admin/admin_nodeInfo_response.json new file mode 100644 index 0000000..99a3e49 --- /dev/null +++ b/docs/XDPoSChain/admin/admin_nodeInfo_response.json @@ -0,0 +1,187 @@ +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "id": "419f0320b0048b7b8e446b0bbba724928a6703a545cb2dea841957fb830ec938acdd8b5ee03a30a3a7f0f3eb413bcd4ac3d873b9861fc6aab01344eeedfd58ea", + "name": "XDC/v2.6.1-beta-3ca2ff4f/linux-amd64/go1.23.6", + "enode": "enode://419f0320b0048b7b8e446b0bbba724928a6703a545cb2dea841957fb830ec938acdd8b5ee03a30a3a7f0f3eb413bcd4ac3d873b9861fc6aab01344eeedfd58ea@[::]:35348", + "ip": "::", + "ports": { + "discovery": 35348, + "listener": 35348 + }, + "listenAddr": "[::]:35348", + "protocols": { + "eth": { + "network": 50, + "difficulty": 15254612, + "genesis": "0x4a9d748bd78a8d0385b67788c2435dcdb914f98a96250b68863a1f8b7642d6b1", + "config": { + "chainId": 50, + "homesteadBlock": 1, + "eip150Block": 2, + "eip155Block": 3, + "eip158Block": 3, + "byzantiumBlock": 4, + "XDPoS": { + "period": 2, + "epoch": 900, + "reward": 5000, + "rewardCheckpoint": 900, + "gap": 450, + "foundationWalletAddr": "0x92a289fe95a85c53b8d0d113cbaef0c1ec98ac65", + "SkipV1Validation": false, + "v2": { + "SwitchEpoch": 89300, + "switchBlock": 80370000, + "config": { + "maxMasternodes": 108, + "maxProtectorNodes": 0, + "maxObserverNodes": 0, + "switchRound": 0, + "minePeriod": 2, + "timeoutSyncThreshold": 3, + "timeoutPeriod": 30, + "certificateThreshold": 0.667, + "masternodeReward": 0, + "protectorReward": 0, + "observerReward": 0, + "minimumMinerBlockPerEpoch": 0, + "limitPenaltyEpoch": 0, + "minimumSigningTx": 0, + "expTimeoutConfig": { + "base": 1, + "maxExponent": 0 + } + }, + "allConfigs": { + "0": { + "maxMasternodes": 108, + "maxProtectorNodes": 0, + "maxObserverNodes": 0, + "switchRound": 0, + "minePeriod": 2, + "timeoutSyncThreshold": 3, + "timeoutPeriod": 30, + "certificateThreshold": 0.667, + "masternodeReward": 0, + "protectorReward": 0, + "observerReward": 0, + "minimumMinerBlockPerEpoch": 0, + "limitPenaltyEpoch": 0, + "minimumSigningTx": 0, + "expTimeoutConfig": { + "base": 1, + "maxExponent": 0 + } + }, + "2000": { + "maxMasternodes": 108, + "maxProtectorNodes": 0, + "maxObserverNodes": 0, + "switchRound": 2000, + "minePeriod": 2, + "timeoutSyncThreshold": 2, + "timeoutPeriod": 600, + "certificateThreshold": 0.667, + "masternodeReward": 0, + "protectorReward": 0, + "observerReward": 0, + "minimumMinerBlockPerEpoch": 0, + "limitPenaltyEpoch": 0, + "minimumSigningTx": 0, + "expTimeoutConfig": { + "base": 1, + "maxExponent": 0 + } + }, + "220000": { + "maxMasternodes": 108, + "maxProtectorNodes": 0, + "maxObserverNodes": 0, + "switchRound": 220000, + "minePeriod": 2, + "timeoutSyncThreshold": 2, + "timeoutPeriod": 30, + "certificateThreshold": 0.667, + "masternodeReward": 0, + "protectorReward": 0, + "observerReward": 0, + "minimumMinerBlockPerEpoch": 0, + "limitPenaltyEpoch": 0, + "minimumSigningTx": 0, + "expTimeoutConfig": { + "base": 1, + "maxExponent": 0 + } + }, + "3200000": { + "maxMasternodes": 108, + "maxProtectorNodes": 0, + "maxObserverNodes": 0, + "switchRound": 3200000, + "minePeriod": 2, + "timeoutSyncThreshold": 3, + "timeoutPeriod": 10, + "certificateThreshold": 0.667, + "masternodeReward": 0, + "protectorReward": 0, + "observerReward": 0, + "minimumMinerBlockPerEpoch": 0, + "limitPenaltyEpoch": 0, + "minimumSigningTx": 0, + "expTimeoutConfig": { + "base": 1, + "maxExponent": 0 + } + }, + "460000": { + "maxMasternodes": 108, + "maxProtectorNodes": 0, + "maxObserverNodes": 0, + "switchRound": 460000, + "minePeriod": 2, + "timeoutSyncThreshold": 2, + "timeoutPeriod": 20, + "certificateThreshold": 0.667, + "masternodeReward": 0, + "protectorReward": 0, + "observerReward": 0, + "minimumMinerBlockPerEpoch": 0, + "limitPenaltyEpoch": 0, + "minimumSigningTx": 0, + "expTimeoutConfig": { + "base": 1, + "maxExponent": 0 + } + }, + "8000": { + "maxMasternodes": 108, + "maxProtectorNodes": 0, + "maxObserverNodes": 0, + "switchRound": 8000, + "minePeriod": 2, + "timeoutSyncThreshold": 2, + "timeoutPeriod": 60, + "certificateThreshold": 0.667, + "masternodeReward": 0, + "protectorReward": 0, + "observerReward": 0, + "minimumMinerBlockPerEpoch": 0, + "limitPenaltyEpoch": 0, + "minimumSigningTx": 0, + "expTimeoutConfig": { + "base": 1, + "maxExponent": 0 + } + } + }, + "SkipV2Validation": false + } + } + }, + "head": "0xac9bb1fbf52d95d672952a3242b5b6bec360b967ce7ed903e1190c5815d05f23" + } + } + } +} diff --git a/docs/XDPoSChain/admin/admin_peers_response.json b/docs/XDPoSChain/admin/admin_peers_response.json new file mode 100644 index 0000000..67f6221 --- /dev/null +++ b/docs/XDPoSChain/admin/admin_peers_response.json @@ -0,0 +1,466 @@ +{ + "jsonrpc": "2.0", + "id": 1001, + "result": [ + { + "id": "0eb3dcc3ffdfd8a48de5b5b08d09d7d745ab45bd29f18df74329c6628c754a919ab0a7f9c869ef3ae71977e7a6de41cd99c42c02fe3b09a711413714c8f8df8d", + "name": "XDC/v2.4.0-stable/linux-amd64/go1.21.13", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "54.169.143.138:61539", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213129, + "head": "0x27a832028f6903a6ff4818f43c728feaefe320975107ff04880a3b1989f0da2f" + } + } + }, + { + "id": "0f166e7c0b16c09eaaef63bad04e4ad9c0bda45727c146915e998a75985c58c78eb10553139c200a556ec5accce49eb40d7dd79d1f437bfe8f1fe8338d1069b5", + "name": "XDC/v2.4.0-stable/linux-amd64/go1.21.13", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "3.1.211.70:50661", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213120, + "head": "0x32910f20fa33c85fd0b5374ae4112d5d139a45da119185d72520ef14891411aa" + } + } + }, + { + "id": "12711126475d7924af98d359e178f71c5d9607de32d2c5b4ab1afff4b0bb16b793b4bbda0a42bf41a309e5349b6106d053ae4ae92aa848b5879e3ef3687c6203", + "name": "XDC/v2.4.2-stable/linux-amd64/go1.21.13", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:47282", + "remoteAddress": "89.117.49.48:30303", + "inbound": false, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213510, + "head": "0x04b4469429b813e6cfe5b7e9462b61e5df079c385a2674d0c279f913b18623d3" + } + } + }, + { + "id": "1fae843082602b086ff76c1add20c648ba19be76864488ab2c1e74ed38a44318b9e1b864c46037973ef6e1d897ce72ea92ca0717d634459f9662de2f61236114", + "name": "XDC/v2.4.2-stable/linux-amd64/go1.21.13", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "152.114.194.219:54846", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213111, + "head": "0xb052c4d7a5afe8ef7c7ace29647b124306618ce4b0a8f497ac572634994b4d66" + } + } + }, + { + "id": "3ba77849e19902881c7465befdb81d03f9fc624fe052999cc02b3449a80343c7022c70b76dd3b84dbbb4086862f15506359ed776f6438856f58363e8ed648537", + "name": "XDC/v2.4.0-stable/linux-amd64/go1.21.13", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "3.0.202.44:27331", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213135, + "head": "0xe052c3187e3f9a3a1d246603ce549706d6ca4fddf7d333a78e0b023a1e5ae65d" + } + } + }, + { + "id": "46a9045d80495f64005a69de91fba356308b095f47f75e1c5ff49a0cec789fb04012bda1ab84c9544c68a474605741316a5764917a96e9d9d8ec3f0c592e82a2", + "name": "XDC/v2.4.2-stable/linux-amd64/go1.21.13", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "52.58.199.226:33031", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213137, + "head": "0xee58a4ecc984e48758f52cdbce8d05c7bab17d819c3ded896505bdfbda9058dd" + } + } + }, + { + "id": "4b1a1252749376b332bff17643a58008e5fe61713320f03009783ed6a4f7e2ae32a6bde4c683b7b7d4bd337a453c936b38959aeac9955b325a9ea2a70a3d907c", + "name": "XDC/v2.6.2-beta/linux-amd64/go1.23.9", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "157.173.195.189:37952", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 2623725301, + "head": "0xd6036fb87803d44b03abf0d4de01ca84f5a013383589346ba7abc6d1ae554d9d" + } + } + }, + { + "id": "4c658e248c59a874e373198fa3dacd3c7d1210265f147bab0c9dccb8411ddbe4d866c3d73b7383ce3f463183f1ad35f4dbf0c7bc2abca8600ec3bd68d270064f", + "name": "XDC/v2.4.0-stable/linux-amd64/go1.21.13", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "18.142.119.111:54288", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213147, + "head": "0x4bf71c6281ea0f3498db0516ca4f2543775928c975b324a9a9e093d62ad820f8" + } + } + }, + { + "id": "4e29358a897b264ef8d4c7b9857cb995e76439ba07c06ad6e1d7dd0e4ec19661c449e1a56d722c77d0a5c87eede3a3a8bf9eedb81acdbe459055178016720c6a", + "name": "XDC/v2.4.2-stable/linux-amd64/go1.22.12", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "44.252.103.194:25820", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213132, + "head": "0xba6e8562d6f62feca1c0374a95a422125af8111521694e49a2f40075233c3b3d" + } + } + }, + { + "id": "54f91c1ec709862cb56593de401c1354b52e3383f6d063696e8bcc6464ad45b85ce973730cc92acd46835f4d2c0742512312fff55bdf92748172060cbb72ecb2", + "name": "XDC/v2.4.2-stable/linux-amd64/go1.21.13", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "18.157.253.143:16205", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213124, + "head": "0xb5de61e11908cf960328dd61b520a30a03b92828c47a6f6e1f7bd4b2f502bb42" + } + } + }, + { + "id": "568b64deae2a2c49589220b90a664f61981fa042bd806fc405fed36eb821baee360038b56e76c6d17a30ced1090619b61c8dca173119b591eb1b6ba132dfe06e", + "name": "XDC/bd-d2ir75p8hlcs73bjkdsg-2/v2.4.2-stable/linux-amd64/go1.24.1", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "108.130.22.31:41572", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 47016937, + "head": "0x41bbb14d8b5ee5c740730137b15866335ceeb7b5c3ef3c8076ace0d616d343f0" + } + } + }, + { + "id": "5d0ceb92dfdc50deb77d7cdf8212ac91bd07370e18ebdae754bc3403230cc976701eb0b17dd01a3b81aed8ee19db3382e3337c6c818df77083de96b55ec7e3de", + "name": "XDC/v2.4.0-stable/linux-amd64/go1.21.13", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "13.250.38.209:57405", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213145, + "head": "0x372f5bd5c3c511c6e2fe09e3ea1bcbe96d6d8b306cf765e93592d169f2cb3b58" + } + } + }, + { + "id": "6432d945b879cec90b594944bbae28d292bb582606a83b6165184ee1935bc875499ce31ff65a5523beb6cfc60d7c958d081844cfa7a8f9a3a5394cd0f6e0f2f0", + "name": "XDC/v2.6.2-beta/linux-amd64/go1.23.9", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "158.255.6.148:49422", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213139, + "head": "0xf269967148e85cd7bdb4ed9b24e6d5f85a971e3d2d563282ae7514888115370a" + } + } + }, + { + "id": "71dd373d0a8d2b461e82741815cba05893a023b364fe3ea6efa6008c6143b4822acc3670d6113652bdb6db916bec189020e71241d08967cdf58ed4cf765df0be", + "name": "XDC/v2.4.2-stable/linux-amd64/go1.21.13", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "18.157.253.143:15190", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213137, + "head": "0xee58a4ecc984e48758f52cdbce8d05c7bab17d819c3ded896505bdfbda9058dd" + } + } + }, + { + "id": "83869a09d134a9e30bcd0041c009d79566fcfea253fc0174df01112455318463762ddf4870f0cb10bf724f91f1f7852f2b4ea8f26ac07e9b092b150ce3f92fd0", + "name": "XDC/v2.4.0-stable/linux-amd64/go1.21.13", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "3.0.49.113:16574", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213144, + "head": "0x1e360948f58d31c66e895ed7444bcf1a496666b1a72341f9f8aaafb0b81eaf74" + } + } + }, + { + "id": "b634c06bbe0c69cf2d5823d2e2b8b9853bd52cd246551ee37b974383ec70db4319caed47f88c1513a686d01f1e0a032eef486745bb11da6159e62904029e2edf", + "name": "XDC/v2.4.2-stable/linux-amd64/go1.21.13", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35078", + "remoteAddress": "103.7.54.106:30303", + "inbound": false, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436198024, + "head": "0x6483f0aa3da10d50a84cede5dd9e8481f637225597f11470111bbc9bea35a2ca" + } + } + }, + { + "id": "d838ae731fa6849b3418947a2a50d79e5aa3f76db016084b00a13484e74553568c3ad9a976e9c183232c0875caf84d8de8bf138d438d522ce04dc819f3012eb3", + "name": "XDC/v2.4.2-stable/linux-amd64/go1.24.2", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:53716", + "remoteAddress": "46.23.75.37:41210", + "inbound": false, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213365, + "head": "0x827daed8099aa6aa0f8af70e417a5ef234e1d9707c14f95c219dc9a5a866d503" + } + } + }, + { + "id": "f593b08ed50a5872ad5a454286ef9083ddf6b55f25a9d9944bdd39b3a15db39228f5a19e95f81a11d511eff8b1e4b509bf29b7c1c289a42a2cf4dc08e0181262", + "name": "XDC/v2.4.2-stable/linux-amd64/go1.21.13", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "18.157.253.143:50540", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213112, + "head": "0x30db54e1bc26b28e5c44d34a65148f34f6bf8a2b384ce32c49d04c9368364ce5" + } + } + }, + { + "id": "f8ba2cb7f31eb94d71f109a61f3c271f11b4ae4e7e6ded685b030998bdb9d31f596ff6b8014d763abe925a61e85fadc2037847a9a6691e7fe5bb92d4e85171e6", + "name": "XDC/v2.4.2-stable/linux-amd64/go1.21.13", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "193.247.81.143:64604", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 3085111624, + "head": "0xaf961221b0e78055711e0a3d353838ad8e66433d33318c07a9c4e575d68be2cc" + } + } + }, + { + "id": "fa6e5c8824b85706ad51456f2e1a2e722448959405d39f2020e16a59a096fd50a74edf879d7c166f5ac409688c4e41b33011f7f6611ce2b5b6a15399a2c16613", + "name": "XDC/v2.4.2-stable/linux-amd64/go1.24.2", + "caps": [ + "eth/62", + "eth/63", + "eth/100" + ], + "network": { + "localAddress": "80.243.180.176:35348", + "remoteAddress": "103.50.32.50:55342", + "inbound": true, + "trusted": false, + "static": false + }, + "protocols": { + "eth": { + "version": 100, + "difficulty": 7436213111, + "head": "0xb052c4d7a5afe8ef7c7ace29647b124306618ce4b0a8f497ac572634994b4d66" + } + } + } + ] +} diff --git a/docs/XDPoSChain/debug/debug.md b/docs/XDPoSChain/debug/debug.md new file mode 100644 index 0000000..25da5a8 --- /dev/null +++ b/docs/XDPoSChain/debug/debug.md @@ -0,0 +1,1144 @@ +# Module debug + +The `debug` API gives you access to several non-standard RPC methods, which will allow you to inspect, debug and set certain debugging flags during runtime. + +## Method debug_blockProfile + +The `blockProfile` method turns on block profiling for the given duration and writes profile data to disk. It uses a profile rate of 1 for most accurate information. If a different rate is desired, set the rate and write the profile manually using debug_writeBlockProfile. + +Parameters: + +- file: string, required, file name +- nsec: uint, required, number of seconds + +Returns: + +result: error + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_blockProfile", + "params": [ + "block-profile.bin", + 10 + ] +}' | jq +``` + +## Method debug_chaindbCompact + +The `chaindbCompact` method flattens the entire key-value database into a single level, removing all unused slots and merging all keys. + +Parameters: + +None + +Returns: + +result: error + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_chaindbCompact" +}' | jq +``` + +## Method debug_chaindbProperty + +The `chaindbProperty` method returns leveldb properties of the key-value database. + +Parameters: + +- property: string, required + +Returns: + +result: string + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_chaindbProperty", + "params": [ + "" + ] +}' | jq +``` + +## Method debug_cpuProfile + +The `cpuProfile` method turns on CPU profiling for the given duration and writes profile data to disk. + +Parameters: + +- file: string, required, file name +- nsec: uint, required, number of seconds + +Returns: + +result: error + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_cpuProfile", + "params": [ + "cpu-profile.bin", + 10 + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` + +## Method debug_dbGet + +The `dbGet` method returns the raw value of a key stored in the database. + +Parameters: + +- key: string, required + +Returns: + +result: array of byte + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_dbGet", + "params": [ + "key" + ] +}' | jq +``` + +## Method debug_dumpBlock + +The `dumpBlock` method retrieves the entire state of the database at a given block. + +Parameters: + +- number: BlockNumber, required, block number + +Returns: + +result: object Dump + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_dumpBlock", + "params": [ + "earliest" + ] +}' | jq +``` + +Response: + +See [debug_dumpBlock.json](./debug_dumpBlock_response.json) + +## Method debug_getBadBlocks + +The `getBadBlocks` method returns a list of the last 'bad blocks' that the client has seen on the network and returns them as a JSON list of block-hashes. + +Parameters: + +None + +Returns: + +result: array of BadBlockArgs + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_getBadBlocks" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": [] +} +``` + +## Method debug_gcStats + +The `gcStats` method returns garbage collection statistics. + +Parameters: + +None + +Returns: + +result: ojbect GCStats + +See for information about the fields of the returned object. + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_gcStats" +}' | jq +``` + +Response: + +See [debug_gcStats.json](./debug_gcStats_response.json) + +## Method debug_getBlockRlp + +The `getBlockRlp` retrieves the RLP encoded for of a single block. + +Parameters: + +- number: uint64, required, block number + +Returns: + +result: string + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_getBlockRlp", + "params": [ + 0 + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "f9029af90295a00000000000000000000000000000000000000000000000000000000000000000a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347940000000000000000000000000000000000000000a049be235b0098b048f9805aed38a279d8c189b469ff9ba307b39c7ad3a3bc55aea056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001808347b76080845cefae27b89d000000000000000000000000000000000000000000000000000000000000000025c65b4b379ac37cf78357c4915f73677022eaffc7d49d0a2cf198deebd6ce581af465944ec8b2bbcfccdea1006a5cfa7d9484b5b293b46964c265c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000880000000000000000808080c0c0" +} +``` + +## Method debug_getModifiedAccountsByHash + +The `getModifiedAccountsByHash` method returns all accounts that have changed between the two blocks specified. A change is defined as a difference in nonce, balance, code hash, or storage hash. With one parameter, returns the list of accounts modified in the specified block. + +Parameters: + +- startHash: hash, required, start block hash +- endHash: hash optional, end block hash + +Returns: + +result: array of address + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_getModifiedAccountsByNumber", + "params": [ + "start-hash", + "end-hash" + ] +}' | jq +``` + +## Method debug_getModifiedAccountsByNumber + +The `getModifiedAccountsByNumber` method returns all accounts that have changed between the two blocks specified. A change is defined as a difference in nonce, balance, code hash or storage hash. + +Parameters: + +- startNum: uint64, required, start block number +- endNum: uint64, optional, end block number + +Returns: + +result: array of address + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_getModifiedAccountsByNumber", + "params": [ + 1 + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` + +## Method debug_goTrace + +The `goTrace` method turns on Go runtime tracing for the given duration and writes trace data to disk. + +Parameters: + +- file: string, required, file name +- nsec: uint, required, number of seconds + +Returns: + +result: error + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_goTrace", + "params": [ + "go-trace.bin", + 10 + ] +}' | jq +``` + +## Method debug_freeOSMemory + +The debug `freeOSMemory` forces garbage collection. + +Parameters: + +None + +Returns: + +result: null + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_freeOSMemory" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` + +## Method debug_memStats + +The `memStats` method returns detailed runtime memory statistics. + +Parameters: + +None + +Returns: + +result: object MemStats + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_memStats" +}' | jq +``` + +Response: + +See [debug_memStats_response.json](./debug_memStats_response.json) + +## Method debug_mutexProfile + +The `mutexProfile` method turns on mutex profiling for nsec seconds and writes profile data to file. It uses a profile rate of 1 for most accurate information. If a different rate is desired, set the rate and write the profile manually. + +Parameters: + +- file: string, required, file name +- nsec: uint, required, number of seconds + +Returns: + +result: error + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_mutexProfile", + "params": [ + "mutex-profile.bin", + 10 + ] +}' | jq +``` + +## Method debug_preimage + +The `preimage` method returns the preimage for a sha3 hash, if known. + +Parameters: + +- hash: hash, required + +Returns: + +result: array of bytes + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_preimage", + "params": [ + "hash", + ] +}' | jq +``` + +## Method debug_printBlock + +The `printBlock` method retrieves a block and returns its pretty printed form. + +Parameters: + +- number: uint64, required, block number + +Returns: + +result: string + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_printBlock", + "params": [ + 0 + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "Block(#0): Size: 669.00 B {\nMinerHash: 5b1ad24d49ce2360509d0c13fd05358abbab323bf6021d8e85ebcc2b2ec7841f\nHeader(4a9d748bd78a8d0385b67788c2435dcdb914f98a96250b68863a1f8b7642d6b1):\n[\n\tParentHash:\t 0000000000000000000000000000000000000000000000000000000000000000\n\tUncleHash:\t 1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347\n\tCoinbase:\t 0000000000000000000000000000000000000000\n\tRoot:\t\t 49be235b0098b048f9805aed38a279d8c189b469ff9ba307b39c7ad3a3bc55ae\n\tTxSha\t\t 56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421\n\tReceiptSha:\t 56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421\n\tBloom:\t\t 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\n\tDifficulty:\t 1\n\tNumber:\t\t 0\n\tGasLimit:\t 4700000\n\tGasUsed:\t 0\n\tTime:\t\t 1559211559\n\tExtra:\t\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000%ĸ[K7ĸĸ|ĸĸWsŐ_sgp\"ĸĸĸĸԝ\n,ĸĸĸĸĸĸX\u001aĸeĸNȲĸĸĸޡ\u0000j\\ĸ}ĸĸĸĸĸĸidbĸe\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n\tMixDigest: 0000000000000000000000000000000000000000000000000000000000000000\n\tNonce:\t\t 0000000000000000\n]\nTransactions:\n[]\nUncles:\n[]\n}\n" +} +``` + +## Method debug_setBlockProfileRate + +The `setBlockProfileRate` method sets the rate (in samples/sec) of goroutine block profile data collection. A non-zero rate enables block profiling, setting it to zero stops the profile. Collected profile data can be written using `debug_writeBlockProfile`. + +Parameters: + +- rate: int, required + +Returns: + +result: null + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_setBlockProfileRate", + "params": [ + 0 + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` + +## Method debug_setGCPercent + +The `setGCPercent` method sets the garbage collection target percentage. A negative value disables garbage collection. + +Parameters: + +- v: int, required + +Returns: + +result: int + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_setGCPercent", + "params": [ + 80 + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": 100 +} +``` + +## Method debug_setHead + +The `setHead` method sets the current head of the local chain by block number. Note, this is a destructive action and may severely damage your chain. Use with extreme caution. + +Parameters: + +- number: uint64, required, block number + +Returns: + +result: string + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_setHead", + "params": [ + "0x544b420" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` + +## Method debug_stacks + +The `stacks` method returns a printed representation of the stacks of all goroutines. Note that the web3 wrapper for this method takes care of the printing and does not return the string. + +Parameters: + +None + +Returns: + +result: string + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_stacks" +}' | jq +``` + +Response: + +See [debug_stacks_response.json](./debug_stacks_response.json) + +## Method debug_startCPUProfile + +The `startCPUProfile` method turns on CPU profiling indefinitely, writing to the given file. + +Parameters: + +- file: string, required, file name + +Returns: + +result: error + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_startCPUProfile", + "params": [ + "cpu-profile.bin" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` + +## Method debug_stopCPUProfile + +The `stopCPUProfile` method stops an ongoing CPU profile. + +Parameters: + +None + +Returns: + +result: error + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_stopCPUProfile" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` + +## Method debug_startGoTrace + +The `startGoTrace` starts writing a Go runtime trace to the given file. + +Parameters: + +- file: string, required, file name + +Returns: + +result: error + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_startGoTrace", + "params": [ + "go-trace.bin" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` + +## Method debug_stopGoTrace + +The `stopGoTrace` method stops writing the Go runtime trace. + +Parameters: + +None + +Returns: + +result: error + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_stopGoTrace" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` + +## Method debug_storageRangeAt + +The `storageRangeAt` method returns the storage at the given block height and transaction index. The result can be paged by providing a maxResult to cap the number of storage slots returned as well as specifying the offset via keyStart (hash of storage key). + +Parameters: + +- blockHash: Hash, required +- txIndex: int, required +- contractAddress: address, required +- keyStart: array of bytes, required +- maxResult: int, required + +Returns: + +result: object StorageRangeResult + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_storageRangeAt" +}' | jq +``` + +## Method debug_traceBlock + +The `debug_traceBlock` method will return a full stack trace of all invoked opcodes of all transaction that were included in this block. Note, the parent of this block must be present or it will fail. For the second parameter see TraceConfig reference. + +Parameters: + +- blob: array of byte, required, the RLP encoded block +- config: object of TraceConfig, optional + +Returns: + +result: array of object txTraceResult + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_traceBlock", + "params": [ + "RLP_ENCODED_BLOCK" + ] +}' | jq +``` + +## Method debug_traceBlockByHash + +The `traceBlockByHash` method accepts a block hash and will replay the block that is already present in the database. + +Parameters: + +- hash: Hash, required, block hash +- config: TraceConfig, optional + +Returns: + +result: array of object txTraceResult + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_traceBlockByHash", + "params": [ + "block-hash" + ] +}' | jq +``` + +## Method debug_traceBlockByNumber + +The `debug_traceBlockByNumber` method accepts a block number and will replay the block that is already present in the database. + +Parameters: + +- number: BlockNumber, required, block number +- config: TraceConfig, optional + +Returns: + +result: array of object txTraceResult + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_traceBlockByNumber", + "params": [ + "latest" + ] +}' | jq +``` + +Response: + +See [debug_traceBlockByNumber_response.json](./debug_traceBlockByNumber_response.json) + +## Method debug_traceBlockFromFile + +The `traceBlockFromFile` meothod accepts a file containing the RLP of the block. + +Parameters: + +- file: string, required, file name +- config: object of TraceConfig, optional + +Returns: + +result: array of object txTraceResult + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_traceBlockFromFile", + "params": [ + "filename" + ] +}' | jq +``` + +## Method debug_traceCall + +The `traceCall` method lets you run an eth_call within the context of the given block execution using the final state of parent block as the base. + +Parameters: + +- args: TransactionArgs, required +- blockNrOrHash: BlockNumberOrHash, required, hash or number +- config: TraceCallConfig, optional + +Returns: + +same as debug_traceTransaction + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_traceCall", + "params": [ + { + "to": "0x46eda75e7ca73cb1c2f83c3927211655420dbc44", + "data": "0x3fb5c1cb00000000000000000000000000000000000000000000000000000000000003e7" + }, + "latest", + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "gas": 21528, + "failed": false, + "returnValue": "", + "structLogs": [] + } +} +``` + +## Method debug_traceTransaction + +The `traceTransaction` method debugging method will attempt to run the transaction in the exact same manner as it was executed on the network. It will replay any transaction that may have been executed prior to this one before it will finally attempt to execute the transaction that corresponds to the given hash. + +Parameters: + +- hash: Hash, required, transaction hash +- config: TraceConfig, optional + +Returns: + +result: object + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_traceTransaction", + "params": [ + "tx-hash" + ] +}' | jq +``` + +## Method debug_verbosity + +The `verbosity` method sets the logging verbosity ceiling. Log messages with level up to and including the given level will be printed. + +Parameters: + +- level: int, required + +Returns: + +result: null + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_verbosity", + "params": [ + 3 + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` + +## Method debug_vmodule + +The `vmodule` method sets the logging verbosity pattern. + +Parameters: + +- pattern: string, required + +Returns: + +result: error + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_vmodule", + "params": [ + "eth/*=3,p2p=4" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` + +## Method debug_writeBlockProfile + +The `writeBlockProfile` method writes a goroutine blocking profile to the given file. + +Parameters: + +- file: string, required + +Returns: + +result: error + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_writeBlockProfile", + "params": [ + "block-profile.bin" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` + +## Method debug_writeMemProfile + +The `writeMemProfile` method writes an allocation profile to the given file. Note that the profiling rate cannot be set through the API, it must be set on the command line using the `--pprof-memprofilerate` flag. + +Parameters: + +- file: string, required, file name + +Returns: + +result: error + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_writeMemProfile", + "params": [ + "memory-profile.bin", + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` + +## Method debug_writeMutexProfile + +The `writeMutexProfile` method writes a goroutine blocking profile to the given file. + +Parameters: + +- file: string, required, file name + +Returns: + +result: error + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "debug_writeMutexProfile", + "params": [ + "mutex-profile.bin", + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` diff --git a/docs/XDPoSChain/debug/debug_dumpBlock_response.json b/docs/XDPoSChain/debug/debug_dumpBlock_response.json new file mode 100644 index 0000000..ae88939 --- /dev/null +++ b/docs/XDPoSChain/debug/debug_dumpBlock_response.json @@ -0,0 +1,109 @@ +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "root": "49be235b0098b048f9805aed38a279d8c189b469ff9ba307b39c7ad3a3bc55ae", + "accounts": { + "0x0000000000000000000000000000000000000001": { + "balance": "0", + "nonce": 0, + "root": "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", + "codeHash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "0x0000000000000000000000000000000000000088": { + "balance": "30000000000000000000000000", + "nonce": 0, + "root": "4e909490cf1c3e171bb2e376d97fa95abadd9a12d911e252b60ecdfe58b77b05", + "codeHash": "43e5b04f4015a9345835af4980fea519f1a1f499cbfddd624696cca4dcd43657", + "code": "606060405260043610610196576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063012679511461019b578063025e7c27146101c957806302aa9be21461022c57806306a49fce1461026e5780630db02622146102d85780630e3e4fb81461030157806315febd68146103715780632a3640b1146103a85780632d15cc041461042a5780632f9c4bba146104b8578063302b687214610522578063326586521461058e5780633477ee2e14610640578063441a3e70146106a357806358e7525f146106cf5780635b860d271461071c5780635b9cd8cc146107695780636dd7d8ea1461082457806372e44a3814610852578063a9a981a31461089f578063a9ff959e146108c8578063ae6e43f5146108f1578063b642facd1461092a578063c45607df146109a3578063d09f1ab4146109f0578063d161c76714610a19578063d51b9e9314610a42578063d55b7dff14610a93578063ef18374a14610abc578063f2ee3c7d14610ae5578063f5c9512514610b1e578063f8ac9dd514610b4c575b600080fd5b6101c7600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610b75565b005b34156101d457600080fd5b6101ea60048080359060200190919050506111fc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561023757600080fd5b61026c600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061123b565b005b341561027957600080fd5b610281611796565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156102c45780820151818401526020810190506102a9565b505050509050019250505060405180910390f35b34156102e357600080fd5b6102eb61182a565b6040518082815260200191505060405180910390f35b341561030c57600080fd5b610357600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611830565b604051808215151515815260200191505060405180910390f35b341561037c57600080fd5b610392600480803590602001909190505061185f565b6040518082815260200191505060405180910390f35b34156103b357600080fd5b6103e8600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506118bb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561043557600080fd5b610461600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611909565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156104a4578082015181840152602081019050610489565b505050509050019250505060405180910390f35b34156104c357600080fd5b6104cb6119dc565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561050e5780820151818401526020810190506104f3565b505050509050019250505060405180910390f35b341561052d57600080fd5b610578600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611a79565b6040518082815260200191505060405180910390f35b341561059957600080fd5b6105c5600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611b03565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106055780820151818401526020810190506105ea565b50505050905090810190601f1680156106325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561064b57600080fd5b6106616004808035906020019091905050611da2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156106ae57600080fd5b6106cd6004808035906020019091908035906020019091905050611de1565b005b34156106da57600080fd5b610706600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061208d565b6040518082815260200191505060405180910390f35b341561072757600080fd5b610753600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506120d9565b6040518082815260200191505060405180910390f35b341561077457600080fd5b6107a9600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506121a1565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107e95780820151818401526020810190506107ce565b50505050905090810190601f1680156108165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610850600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061226a565b005b341561085d57600080fd5b610889600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050612653565b6040518082815260200191505060405180910390f35b34156108aa57600080fd5b6108b261266b565b6040518082815260200191505060405180910390f35b34156108d357600080fd5b6108db612671565b6040518082815260200191505060405180910390f35b34156108fc57600080fd5b610928600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050612677565b005b341561093557600080fd5b610961600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050612c36565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156109ae57600080fd5b6109da600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050612ca2565b6040518082815260200191505060405180910390f35b34156109fb57600080fd5b610a03612cee565b6040518082815260200191505060405180910390f35b3415610a2457600080fd5b610a2c612cf4565b6040518082815260200191505060405180910390f35b3415610a4d57600080fd5b610a79600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050612cfa565b604051808215151515815260200191505060405180910390f35b3415610a9e57600080fd5b610aa6612d53565b6040518082815260200191505060405180910390f35b3415610ac757600080fd5b610acf612d59565b6040518082815260200191505060405180910390f35b3415610af057600080fd5b610b1c600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050612d63565b005b3415610b2957600080fd5b610b4a600480803590602001908201803590602001919091929050506134f1565b005b3415610b5757600080fd5b610b5f6135f0565b6040518082815260200191505060405180910390f35b6000600b543410151515610b8857600080fd5b6000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050141580610c1c57506000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050115b1515610c2757600080fd5b81600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff16151515610c8457600080fd5b610cd934600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546135f690919063ffffffff16565b915060088054806001018281610cef919061362d565b9160005260206000209001600085909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506060604051908101604052803373ffffffffffffffffffffffffffffffffffffffff16815260200160011515815260200183815250600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548160ff02191690831515021790555060408201518160010155905050610eb834600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f690919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f5160016009546135f690919063ffffffff16565b6009819055506000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905014156110185760078054806001018281610fb6919061362d565b9160005260206000209001600033909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050600a600081548092919060010191905055505b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806001018281611069919061362d565b9160005260206000209001600085909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806001018281611109919061362d565b9160005260206000209001600033909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550507f7635f1d87b47fba9f2b09e56eb4be75cca030e0cb179c1602ac9261d39a8f5c1338434604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a1505050565b60078181548110151561120b57fe5b90600052602060002090016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000828280600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101515156112cd57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff16600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561140657600b546113f882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461361490919063ffffffff16565b1015151561140557600080fd5b5b61145b84600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461361490919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555061153384600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461361490919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115cb43600f546135f690919063ffffffff16565b9250611632846000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000868152602001908152602001600020546135f690919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000858152602001908152602001600020819055506000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010180548060010182816116db9190613659565b9160005260206000209001600085909190915055507faa0e554f781c3c3b2be110a0557f260f11af9a8aa2c64bc1e7a31dbb21e32fa2338686604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a15050505050565b61179e613685565b600880548060200260200160405190810160405280929190818152602001828054801561182057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116117d6575b5050505050905090565b600a5481565b60056020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000838152602001908152602001600020549050919050565b6006602052816000526040600020818154811015156118d657fe5b90600052602060002090016000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611911613685565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156119d057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611986575b50505050509050919050565b6119e4613699565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101805480602002602001604051908101604052809291908181526020018280548015611a6f57602002820191906000526020600020905b815481526020019060010190808311611a5b575b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611b0b6136ad565b611b1482612cfa565b15611c655760036000611b2684612c36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600160036000611b6f86612c36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905003815481101515611bba57fe5b90600052602060002090018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c595780601f10611c2e57610100808354040283529160200191611c59565b820191906000526020600020905b815481529060010190602001808311611c3c57829003601f168201915b50505050509050611d9d565b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905003815481101515611cf657fe5b90600052602060002090018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d955780601f10611d6a57610100808354040283529160200191611d95565b820191906000526020600020905b815481529060010190602001808311611d7857829003601f168201915b505050505090505b919050565b600881815481101515611db157fe5b90600052602060002090016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008282600082111515611df457600080fd5b814310151515611e0357600080fd5b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600084815260200190815260200160002054111515611e6457600080fd5b816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010182815481101515611eb357fe5b906000526020600020900154141515611ecb57600080fd5b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008681526020019081526020016000205492506000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000868152602001908152602001600020600090556000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010184815481101515611fc457fe5b9060005260206000209001600090553373ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050151561201357600080fd5b7ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568338685604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001935050505060405180910390a15050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050919050565b60008082600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff16151561213857600080fd5b61214184612c36565b915061214b612d59565b6064600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540281151561219757fe5b0492505050919050565b6003602052816000526040600020818154811015156121bc57fe5b9060005260206000209001600091509150508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122625780601f1061223757610100808354040283529160200191612262565b820191906000526020600020905b81548152906001019060200180831161224557829003601f168201915b505050505081565b600c54341015151561227b57600080fd5b80600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff1615156122d757600080fd5b61232c34600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546135f690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561249b57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480600101828161244b919061362d565b9160005260206000209001600033909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b61252d34600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f66a9138482c99e9baf08860110ef332cc0c23b4a199a53593d8db0fc8f96fbfc338334604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a15050565b60046020528060005260406000206000915090505481565b60095481565b600f5481565b6000806000833373ffffffffffffffffffffffffffffffffffffffff16600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614151561271957600080fd5b84600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff16151561277557600080fd5b6000600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160146101000a81548160ff0219169083151502179055506127e6600160095461361490919063ffffffff16565b600981905550600094505b6008805490508510156128bb578573ffffffffffffffffffffffffffffffffffffffff1660088681548110151561282457fe5b906000526020600020900160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128ae5760088581548110151561287b57fe5b906000526020600020900160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556128bb565b84806001019550506127f1565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054935061299284600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461361490919063ffffffff16565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a7243600e546135f690919063ffffffff16565b9250612ad9846000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000868152602001908152602001600020546135f690919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000858152602001908152602001600020819055506000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018054806001018281612b829190613659565b9160005260206000209001600085909190915055507f4edf3e325d0063213a39f9085522994a1c44bea5f39e7d63ef61260a1e58c6d33387604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a1505050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b600d5481565b600e5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff169050919050565b600b5481565b6000600a54905090565b600080612d6e613685565b600080600033600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff161515612dcf57600080fd5b87600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff161515612e2b57600080fd5b612e3433612c36565b9750612e3f89612c36565b9650600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151515612ed757600080fd5b6001600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550604b612fc4612d59565b6064600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540281151561301057fe5b041015156134e65760016008805490500360405180591061302e5750595b9080825280602002602001820160405250955060009450600093505b600880549050841015613357578673ffffffffffffffffffffffffffffffffffffffff166130b160088681548110151561308057fe5b906000526020600020900160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612c36565b73ffffffffffffffffffffffffffffffffffffffff16141561334a576130e3600160095461361490919063ffffffff16565b6009819055506008848154811015156130f857fe5b906000526020600020900160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16868680600101975081518110151561313857fe5b9060200190602002019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060088481548110151561318357fe5b906000526020600020900160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160006008868154811015156131c457fe5b906000526020600020900160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a81549060ff021916905560018201600090555050600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006132bb91906136c1565b600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061330691906136e2565b600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090555b838060010194505061304a565b600092505b600780549050831015613439578673ffffffffffffffffffffffffffffffffffffffff1660078481548110151561338f57fe5b906000526020600020900160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561342c576007838154811015156133e657fe5b906000526020600020900160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600a6000815480929190600190039190505550613439565b828060010193505061335c565b7fe18d61a5bf4aa2ab40afc88aa9039d27ae17ff4ec1c65f5f414df6f02ce8b35e8787604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019060200280838360005b838110156134d15780820151818401526020810190506134b6565b50505050905001935050505060405180910390a15b505050505050505050565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060010182816135429190613703565b91600052602060002090016000848490919290919250919061356592919061372f565b50507f949360d814b28a3b393a68909efe1fee120ee09cac30f360a0f80ab5415a611a338383604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018281038252848482818152602001925080828437820191505094505050505060405180910390a15050565b600c5481565b600080828401905083811015151561360a57fe5b8091505092915050565b600082821115151561362257fe5b818303905092915050565b8154818355818115116136545781836000526020600020918201910161365391906137af565b5b505050565b8154818355818115116136805781836000526020600020918201910161367f91906137af565b5b505050565b602060405190810160405280600081525090565b602060405190810160405280600081525090565b602060405190810160405280600081525090565b50805460008255906000526020600020908101906136df91906137d4565b50565b508054600082559060005260206000209081019061370091906137af565b50565b81548183558181151161372a5781836000526020600020918201910161372991906137d4565b5b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061377057803560ff191683800117855561379e565b8280016001018555821561379e579182015b8281111561379d578235825591602001919060010190613782565b5b5090506137ab91906137af565b5090565b6137d191905b808211156137cd5760008160009055506001016137b5565b5090565b90565b6137fd91905b808211156137f957600081816137f09190613800565b506001016137da565b5090565b90565b50805460018160011615610100020316600290046000825580601f106138265750613845565b601f01602090049060005260206000209081019061384491906137af565b5b505600a165627a7a72305820f5bbb127b52ce86c873faef85cff176563476a5e49a3d88eaa9a06a8f432c9080029", + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000007": "01", + "0x0000000000000000000000000000000000000000000000000000000000000008": "03", + "0x0000000000000000000000000000000000000000000000000000000000000009": "03", + "0x000000000000000000000000000000000000000000000000000000000000000a": "01", + "0x000000000000000000000000000000000000000000000000000000000000000b": "084595161401484a000000", + "0x000000000000000000000000000000000000000000000000000000000000000c": "054b40b1f852bda00000", + "0x000000000000000000000000000000000000000000000000000000000000000d": "12", + "0x000000000000000000000000000000000000000000000000000000000000000e": "13c680", + "0x000000000000000000000000000000000000000000000000000000000000000f": "069780", + "0x1cb68bf63bb3b55abf504ef789bb06e8b2b266a334ca39892e163225a47b8267": "084595161401484a000000", + "0x2c6b8fd5b2b39958a7e5a98eebf2c1c31122e89c7961ce1025e69a3d3f07fd20": "01", + "0x3639e2dfabac2c6baff147abd66f76b8e526e974a9a2a14163169aa03d2f8d4b": "01", + "0x473ba2a6d1aa200b3118a8abc51fe248a479e882e6c655ae014d9c66fbc181ed": "25c65b4b379ac37cf78357c4915f73677022eaff", + "0x473ba2a6d1aa200b3118a8abc51fe248a479e882e6c655ae014d9c66fbc181ee": "c7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0x473ba2a6d1aa200b3118a8abc51fe248a479e882e6c655ae014d9c66fbc181ef": "cfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0x53dbb2c13e64ef254df4bb7c7b541e84dd24870927f98f151db88daa464fb4dc": "381047523972c9fdc3aa343e0b96900a8e2fa765", + "0x67a3292220e327ce969d100d7e4d83dd4b05efa763a5e4cdb04e0c0107736472": "01381047523972c9fdc3aa343e0b96900a8e2fa765", + "0x67a3292220e327ce969d100d7e4d83dd4b05efa763a5e4cdb04e0c0107736473": "084595161401484a000000", + "0x78dfe8da08db00fe2cd4ddbd11f9cb7e4245ce35275d7734678593942034e181": "01381047523972c9fdc3aa343e0b96900a8e2fa765", + "0x78dfe8da08db00fe2cd4ddbd11f9cb7e4245ce35275d7734678593942034e182": "084595161401484a000000", + "0x90e333b6971c3ecd09a0da09b031d63cdd2dc213d199a66955a8bf7df8a8142d": "084595161401484a000000", + "0xa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688": "381047523972c9fdc3aa343e0b96900a8e2fa765", + "0xac80bed7555f6f181a34915490d97d0bfe2c0e116d1c73b34523ca0d9749955c": "381047523972c9fdc3aa343e0b96900a8e2fa765", + "0xae7e2a864ae923819e93a9f6183bc7ca0dcee93a0759238acd92344ad3216228": "084595161401484a000000", + "0xb375859c4c97d60e8a699586dc5dd215f38f99e40430bb9261f085ee694ffb2c": "01", + "0xd5d5b62da76a3a9f2df0e9276cbaf8973a778bf41f7f4942e06243f195493e99": "381047523972c9fdc3aa343e0b96900a8e2fa765", + "0xec8699f61c2c8bbdbc66463590788e526c60046dda98e8c70df1fb756050baa4": "03", + "0xf3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3": "25c65b4b379ac37cf78357c4915f73677022eaff", + "0xf3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee4": "c7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "0xf3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee5": "cfccdea1006a5cfa7d9484b5b293b46964c265c0", + "0xf4dd36495f675c407ac8f8d6dd8cc40162c854dba3ce4ce8919af34d0b1ed47c": "01381047523972c9fdc3aa343e0b96900a8e2fa765", + "0xf4dd36495f675c407ac8f8d6dd8cc40162c854dba3ce4ce8919af34d0b1ed47d": "084595161401484a000000" + } + }, + "0x0000000000000000000000000000000000000089": { + "balance": "0", + "nonce": 0, + "root": "7ecabfa9116b41a2386ae597d1f130bbdc1ab1cabc47d3d256d22b7b773a0814", + "codeHash": "5ac4011f785fdf4b18c2385867c2c9eb230e91b8add604a101a560a1b1f407c3", + "code": "6060604052600436106100565763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663e341eaa4811461005b578063e7ec6aef14610076578063f4145a83146100df575b600080fd5b341561006657600080fd5b610074600435602435610104565b005b341561008157600080fd5b61008c600435610227565b60405160208082528190810183818151815260200191508051906020019060200280838360005b838110156100cb5780820151838201526020016100b3565b505050509050019250505060405180910390f35b34156100ea57600080fd5b6100f26102ac565b60405190815260200160405180910390f35b438290101561011257600080fd5b600280546101289184910263ffffffff6102b216565b43111561013457600080fd5b600082815260016020819052604090912080549091810161015583826102c8565b5060009182526020808320919091018390558282528190526040902080546001810161018183826102c8565b506000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff19163373ffffffffffffffffffffffffffffffffffffffff8116919091179091557f62855fa22e051687c32ac285857751f6d3f2c100c72756d8d30cb7ecb1f64f5490838360405173ffffffffffffffffffffffffffffffffffffffff909316835260208301919091526040808301919091526060909101905180910390a15050565b61022f6102f1565b600082815260208181526040918290208054909290918281020190519081016040528092919081815260200182805480156102a057602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff168152600190910190602001808311610275575b50505050509050919050565b60025481565b6000828201838110156102c157fe5b9392505050565b8154818355818115116102ec576000838152602090206102ec918101908301610303565b505050565b60206040519081016040526000815290565b61032191905b8082111561031d5760008155600101610309565b5090565b905600a165627a7a72305820a8ceddaea8e4ae00991e2ae81c8c88e160dd8770f255523282c24c2df4c30ec70029", + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000002": "0384" + } + }, + "0x0000000000000000000000000000000000000090": { + "balance": "0", + "nonce": 0, + "root": "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", + "codeHash": "c56c52e7395da6615e9f1a6507be41dee46ddfd52ae8b7f9cd7c00289fbcc849", + "code": "6060604052600436106100615763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663284180fc811461006657806334d38600146100d8578063d442d6cc14610129578063e11f5ba21461015a575b600080fd5b341561007157600080fd5b610085600160a060020a0360043516610170565b60405160208082528190810183818151815260200191508051906020019060200280838360005b838110156100c45780820151838201526020016100ac565b505050509050019250505060405180910390f35b34156100e357600080fd5b61012760046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437509496506101f395505050505050565b005b341561013457600080fd5b610148600160a060020a0360043516610243565b60405190815260200160405180910390f35b341561016557600080fd5b61012760043561025e565b61017861028e565b60008083600160a060020a0316600160a060020a031681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156101e757602002820191906000526020600020905b815481526001909101906020018083116101d2575b50505050509050919050565b610384430661032081101561020757600080fd5b610352811061021557600080fd5b600160a060020a033316600090815260208190526040902082805161023e9291602001906102a0565b505050565b600160a060020a031660009081526001602052604090205490565b610384430661035281101561027257600080fd5b50600160a060020a033316600090815260016020526040902055565b60206040519081016040526000815290565b8280548282559060005260206000209081019282156102dd579160200282015b828111156102dd57825182556020909201916001909101906102c0565b506102e99291506102ed565b5090565b61030791905b808211156102e957600081556001016102f3565b905600a165627a7a7230582034991c8dc4001fc254f3ba2811c05d2e7d29bee3908946ca56d1545b2c852de20029" + }, + "0x0000000000000000000000000000000000000099": { + "balance": "0", + "nonce": 0, + "root": "782f3dc1e619c462ce4377d37878960ab2b389c378bad835fccaa7900973d0c1", + "codeHash": "198f7c4c360ab0ee1c6d8426f262d07142669cd7b358dec4bb398407e89c3441", + "code": "60606040526004361061011c5763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663025e7c278114610165578063173825d91461019757806320ea8d86146101b65780632f54bf6e146101cc5780633411c81c146101ff57806354741525146102215780637065cb4814610250578063784547a71461026f5780638b51d13f146102855780639ace38c21461029b578063a0e67e2b14610349578063a8abe69a146103af578063b5dc40c3146103d2578063b77bf600146103e8578063ba51a6df146103fb578063c01a8c8414610411578063c642747414610427578063d74f8edd1461048c578063dc8452cd1461049f578063e20056e6146104b2578063ee22610b146104d7575b60003411156101635733600160a060020a03167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c3460405190815260200160405180910390a25b005b341561017057600080fd5b61017b6004356104ed565b604051600160a060020a03909116815260200160405180910390f35b34156101a257600080fd5b610163600160a060020a0360043516610515565b34156101c157600080fd5b6101636004356106aa565b34156101d757600080fd5b6101eb600160a060020a0360043516610788565b604051901515815260200160405180910390f35b341561020a57600080fd5b6101eb600435600160a060020a036024351661079d565b341561022c57600080fd5b61023e600435151560243515156107bd565b60405190815260200160405180910390f35b341561025b57600080fd5b610163600160a060020a0360043516610829565b341561027a57600080fd5b6101eb600435610965565b341561029057600080fd5b61023e6004356109e9565b34156102a657600080fd5b6102b1600435610a58565b604051600160a060020a038516815260208101849052811515606082015260806040820181815290820184818151815260200191508051906020019080838360005b8381101561030b5780820151838201526020016102f3565b50505050905090810190601f1680156103385780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b341561035457600080fd5b61035c610b36565b60405160208082528190810183818151815260200191508051906020019060200280838360005b8381101561039b578082015183820152602001610383565b505050509050019250505060405180910390f35b34156103ba57600080fd5b61035c60043560243560443515156064351515610b9f565b34156103dd57600080fd5b61035c600435610cc7565b34156103f357600080fd5b61023e610e2b565b341561040657600080fd5b610163600435610e31565b341561041c57600080fd5b610163600435610ec4565b341561043257600080fd5b61023e60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610fb295505050505050565b341561049757600080fd5b61023e610fd1565b34156104aa57600080fd5b61023e610fd6565b34156104bd57600080fd5b610163600160a060020a0360043581169060243516610fdc565b34156104e257600080fd5b61016360043561118a565b60038054829081106104fb57fe5b600091825260209091200154600160a060020a0316905081565b600030600160a060020a031633600160a060020a031614151561053757600080fd5b600160a060020a038216600090815260026020526040902054829060ff16151561056057600080fd5b600160a060020a0383166000908152600260205260408120805460ff1916905591505b600354600019018210156106435782600160a060020a03166003838154811015156105aa57fe5b600091825260209091200154600160a060020a03161415610638576003805460001981019081106105d757fe5b60009182526020909120015460038054600160a060020a0390921691849081106105fd57fe5b6000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055610643565b600190910190610583565b6003805460001901906106569082611442565b50600354600454111561066f5760035461066f90610e31565b82600160a060020a03167f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9060405160405180910390a2505050565b33600160a060020a03811660009081526002602052604090205460ff1615156106d257600080fd5b600082815260016020908152604080832033600160a060020a038116855292529091205483919060ff16151561070757600080fd5b600084815260208190526040902060030154849060ff161561072857600080fd5b6000858152600160209081526040808320600160a060020a033316808552925291829020805460ff1916905586917ff6a317157440607f36269043eb55f1287a5a19ba2216afeab88cd46cbcfb88e9905160405180910390a35050505050565b60026020526000908152604090205460ff1681565b600160209081526000928352604080842090915290825290205460ff1681565b6000805b600554811015610822578380156107ea575060008181526020819052604090206003015460ff16155b8061080e575082801561080e575060008181526020819052604090206003015460ff165b1561081a576001820191505b6001016107c1565b5092915050565b30600160a060020a031633600160a060020a031614151561084957600080fd5b600160a060020a038116600090815260026020526040902054819060ff161561087157600080fd5b81600160a060020a038116151561088757600080fd5b600380549050600101600454603282111580156108a45750818111155b80156108af57508015155b80156108ba57508115155b15156108c557600080fd5b600160a060020a0385166000908152600260205260409020805460ff1916600190811790915560038054909181016108fd8382611442565b506000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387169081179091557ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d60405160405180910390a25050505050565b600080805b6003548110156109e2576000848152600160205260408120600380549192918490811061099357fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff16156109c7576001820191505b6004548214156109da57600192506109e2565b60010161096a565b5050919050565b6000805b600354811015610a525760008381526001602052604081206003805491929184908110610a1657fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff1615610a4a576001820191505b6001016109ed565b50919050565b60006020528060005260406000206000915090508060000160009054906101000a9004600160a060020a031690806001015490806002018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b235780601f10610af857610100808354040283529160200191610b23565b820191906000526020600020905b815481529060010190602001808311610b0657829003601f168201915b5050506003909301549192505060ff1684565b610b3e61146b565b6003805480602002602001604051908101604052809291908181526020018280548015610b9457602002820191906000526020600020905b8154600160a060020a03168152600190910190602001808311610b76575b505050505090505b90565b610ba761146b565b610baf61146b565b600080600554604051805910610bc25750595b9080825280602002602001820160405250925060009150600090505b600554811015610c5757858015610c07575060008181526020819052604090206003015460ff16155b80610c2b5750848015610c2b575060008181526020819052604090206003015460ff165b15610c4f5780838381518110610c3d57fe5b60209081029091010152600191909101905b600101610bde565b878703604051805910610c675750595b908082528060200260200182016040525093508790505b86811015610cbc57828181518110610c9257fe5b906020019060200201518489830381518110610caa57fe5b60209081029091010152600101610c7e565b505050949350505050565b610ccf61146b565b610cd761146b565b6003546000908190604051805910610cec5750595b9080825280602002602001820160405250925060009150600090505b600354811015610db45760008581526001602052604081206003805491929184908110610d3157fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff1615610dac576003805482908110610d6c57fe5b600091825260209091200154600160a060020a0316838381518110610d8d57fe5b600160a060020a03909216602092830290910190910152600191909101905b600101610d08565b81604051805910610dc25750595b90808252806020026020018201604052509350600090505b81811015610e2357828181518110610dee57fe5b90602001906020020151848281518110610e0457fe5b600160a060020a03909216602092830290910190910152600101610dda565b505050919050565b60055481565b30600160a060020a031633600160a060020a0316141515610e5157600080fd5b6003548160328211801590610e665750818111155b8015610e7157508015155b8015610e7c57508115155b1515610e8757600080fd5b60048390557fa3f1ee9126a074d9326c682f561767f710e927faa811f7a99829d49dc421797a8360405190815260200160405180910390a1505050565b33600160a060020a03811660009081526002602052604090205460ff161515610eec57600080fd5b6000828152602081905260409020548290600160a060020a03161515610f1157600080fd5b600083815260016020908152604080832033600160a060020a038116855292529091205484919060ff1615610f4557600080fd5b6000858152600160208181526040808420600160a060020a033316808652925292839020805460ff191690921790915586917f4a504a94899432a9846e1aa406dceb1bcfd538bb839071d49d1e5e23f5be30ef905160405180910390a3610fab8561118a565b5050505050565b6000610fbf848484611345565b9050610fca81610ec4565b9392505050565b603281565b60045481565b600030600160a060020a031633600160a060020a0316141515610ffe57600080fd5b600160a060020a038316600090815260026020526040902054839060ff16151561102757600080fd5b600160a060020a038316600090815260026020526040902054839060ff161561104f57600080fd5b600092505b6003548310156110e85784600160a060020a031660038481548110151561107757fe5b600091825260209091200154600160a060020a031614156110dd57836003848154811015156110a257fe5b6000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790556110e8565b600190920191611054565b600160a060020a03808616600081815260026020526040808220805460ff199081169091559388168252908190208054909316600117909255907f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b90905160405180910390a283600160a060020a03167ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d60405160405180910390a25050505050565b33600160a060020a03811660009081526002602052604081205490919060ff1615156111b557600080fd5b600083815260016020908152604080832033600160a060020a038116855292529091205484919060ff1615156111ea57600080fd5b600085815260208190526040902060030154859060ff161561120b57600080fd5b61121486610965565b1561133d576000868152602081905260409081902060038101805460ff19166001908117909155815490820154919750600160a060020a03169160028801905180828054600181600116156101000203166002900480156112b65780601f1061128b576101008083540402835291602001916112b6565b820191906000526020600020905b81548152906001019060200180831161129957829003601f168201915b505091505060006040518083038185875af1925050501561130357857f33e13ecb54c3076d8e8bb8c2881800a4d972b792045ffae98fdf46df365fed7560405160405180910390a261133d565b857f526441bb6c1aba3c9a4a6ca1d6545da9c2333c8c48343ef398eb858d72b7923660405160405180910390a260038501805460ff191690555b505050505050565b600083600160a060020a038116151561135d57600080fd5b600554915060806040519081016040908152600160a060020a0387168252602080830187905281830186905260006060840181905285815290819052208151815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0391909116178155602082015181600101556040820151816002019080516113e892916020019061147d565b506060820151600391909101805460ff191691151591909117905550600580546001019055817fc0ba8fe4b176c1714197d43b9cc6bcf797a4a7461c5fe8d0ef6e184ae7601e5160405160405180910390a2509392505050565b815481835581811511611466576000838152602090206114669181019083016114fb565b505050565b60206040519081016040526000815290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106114be57805160ff19168380011785556114eb565b828001600101855582156114eb579182015b828111156114eb5782518255916020019190600101906114d0565b506114f79291506114fb565b5090565b610b9c91905b808211156114f757600081556001016115015600a165627a7a72305820d42d65ce3cd184b1c0e98ae5fe9841a03ddd21c504e98c38f8d89df83b2b6be60029", + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "02", + "0x0000000000000000000000000000000000000000000000000000000000000004": "02", + "0x78b26c076ef10b04070ffc86c9b244b91eb38d2b654f4e2e617edf56d2d830d8": "01", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "6aaf1ac2c2afdd2bca4fea2dc471d467781418c3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "c476ce3240bb44e36746f74001d8a0d62bc917f6", + "0xc420d2a03bcba1d1b98a4b32ba6d074d885b5a5f366e4de6b9a7fd70184950cd": "01" + } + }, + "0x54d4369719bf06b194c32f8be57e2605dd5b59e5": { + "balance": "37470000000000000000000000000", + "nonce": 0, + "root": "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", + "codeHash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "0x746249c61f5832c5eed53172776b460491bdcd5c": { + "balance": "0", + "nonce": 0, + "root": "d411b685867a7bb115e734b30b4b5cdf326be8730a7517565b62e57994215a74", + "codeHash": "198f7c4c360ab0ee1c6d8426f262d07142669cd7b358dec4bb398407e89c3441", + "code": "60606040526004361061011c5763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663025e7c278114610165578063173825d91461019757806320ea8d86146101b65780632f54bf6e146101cc5780633411c81c146101ff57806354741525146102215780637065cb4814610250578063784547a71461026f5780638b51d13f146102855780639ace38c21461029b578063a0e67e2b14610349578063a8abe69a146103af578063b5dc40c3146103d2578063b77bf600146103e8578063ba51a6df146103fb578063c01a8c8414610411578063c642747414610427578063d74f8edd1461048c578063dc8452cd1461049f578063e20056e6146104b2578063ee22610b146104d7575b60003411156101635733600160a060020a03167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c3460405190815260200160405180910390a25b005b341561017057600080fd5b61017b6004356104ed565b604051600160a060020a03909116815260200160405180910390f35b34156101a257600080fd5b610163600160a060020a0360043516610515565b34156101c157600080fd5b6101636004356106aa565b34156101d757600080fd5b6101eb600160a060020a0360043516610788565b604051901515815260200160405180910390f35b341561020a57600080fd5b6101eb600435600160a060020a036024351661079d565b341561022c57600080fd5b61023e600435151560243515156107bd565b60405190815260200160405180910390f35b341561025b57600080fd5b610163600160a060020a0360043516610829565b341561027a57600080fd5b6101eb600435610965565b341561029057600080fd5b61023e6004356109e9565b34156102a657600080fd5b6102b1600435610a58565b604051600160a060020a038516815260208101849052811515606082015260806040820181815290820184818151815260200191508051906020019080838360005b8381101561030b5780820151838201526020016102f3565b50505050905090810190601f1680156103385780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b341561035457600080fd5b61035c610b36565b60405160208082528190810183818151815260200191508051906020019060200280838360005b8381101561039b578082015183820152602001610383565b505050509050019250505060405180910390f35b34156103ba57600080fd5b61035c60043560243560443515156064351515610b9f565b34156103dd57600080fd5b61035c600435610cc7565b34156103f357600080fd5b61023e610e2b565b341561040657600080fd5b610163600435610e31565b341561041c57600080fd5b610163600435610ec4565b341561043257600080fd5b61023e60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610fb295505050505050565b341561049757600080fd5b61023e610fd1565b34156104aa57600080fd5b61023e610fd6565b34156104bd57600080fd5b610163600160a060020a0360043581169060243516610fdc565b34156104e257600080fd5b61016360043561118a565b60038054829081106104fb57fe5b600091825260209091200154600160a060020a0316905081565b600030600160a060020a031633600160a060020a031614151561053757600080fd5b600160a060020a038216600090815260026020526040902054829060ff16151561056057600080fd5b600160a060020a0383166000908152600260205260408120805460ff1916905591505b600354600019018210156106435782600160a060020a03166003838154811015156105aa57fe5b600091825260209091200154600160a060020a03161415610638576003805460001981019081106105d757fe5b60009182526020909120015460038054600160a060020a0390921691849081106105fd57fe5b6000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055610643565b600190910190610583565b6003805460001901906106569082611442565b50600354600454111561066f5760035461066f90610e31565b82600160a060020a03167f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9060405160405180910390a2505050565b33600160a060020a03811660009081526002602052604090205460ff1615156106d257600080fd5b600082815260016020908152604080832033600160a060020a038116855292529091205483919060ff16151561070757600080fd5b600084815260208190526040902060030154849060ff161561072857600080fd5b6000858152600160209081526040808320600160a060020a033316808552925291829020805460ff1916905586917ff6a317157440607f36269043eb55f1287a5a19ba2216afeab88cd46cbcfb88e9905160405180910390a35050505050565b60026020526000908152604090205460ff1681565b600160209081526000928352604080842090915290825290205460ff1681565b6000805b600554811015610822578380156107ea575060008181526020819052604090206003015460ff16155b8061080e575082801561080e575060008181526020819052604090206003015460ff165b1561081a576001820191505b6001016107c1565b5092915050565b30600160a060020a031633600160a060020a031614151561084957600080fd5b600160a060020a038116600090815260026020526040902054819060ff161561087157600080fd5b81600160a060020a038116151561088757600080fd5b600380549050600101600454603282111580156108a45750818111155b80156108af57508015155b80156108ba57508115155b15156108c557600080fd5b600160a060020a0385166000908152600260205260409020805460ff1916600190811790915560038054909181016108fd8382611442565b506000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387169081179091557ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d60405160405180910390a25050505050565b600080805b6003548110156109e2576000848152600160205260408120600380549192918490811061099357fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff16156109c7576001820191505b6004548214156109da57600192506109e2565b60010161096a565b5050919050565b6000805b600354811015610a525760008381526001602052604081206003805491929184908110610a1657fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff1615610a4a576001820191505b6001016109ed565b50919050565b60006020528060005260406000206000915090508060000160009054906101000a9004600160a060020a031690806001015490806002018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b235780601f10610af857610100808354040283529160200191610b23565b820191906000526020600020905b815481529060010190602001808311610b0657829003601f168201915b5050506003909301549192505060ff1684565b610b3e61146b565b6003805480602002602001604051908101604052809291908181526020018280548015610b9457602002820191906000526020600020905b8154600160a060020a03168152600190910190602001808311610b76575b505050505090505b90565b610ba761146b565b610baf61146b565b600080600554604051805910610bc25750595b9080825280602002602001820160405250925060009150600090505b600554811015610c5757858015610c07575060008181526020819052604090206003015460ff16155b80610c2b5750848015610c2b575060008181526020819052604090206003015460ff165b15610c4f5780838381518110610c3d57fe5b60209081029091010152600191909101905b600101610bde565b878703604051805910610c675750595b908082528060200260200182016040525093508790505b86811015610cbc57828181518110610c9257fe5b906020019060200201518489830381518110610caa57fe5b60209081029091010152600101610c7e565b505050949350505050565b610ccf61146b565b610cd761146b565b6003546000908190604051805910610cec5750595b9080825280602002602001820160405250925060009150600090505b600354811015610db45760008581526001602052604081206003805491929184908110610d3157fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff1615610dac576003805482908110610d6c57fe5b600091825260209091200154600160a060020a0316838381518110610d8d57fe5b600160a060020a03909216602092830290910190910152600191909101905b600101610d08565b81604051805910610dc25750595b90808252806020026020018201604052509350600090505b81811015610e2357828181518110610dee57fe5b90602001906020020151848281518110610e0457fe5b600160a060020a03909216602092830290910190910152600101610dda565b505050919050565b60055481565b30600160a060020a031633600160a060020a0316141515610e5157600080fd5b6003548160328211801590610e665750818111155b8015610e7157508015155b8015610e7c57508115155b1515610e8757600080fd5b60048390557fa3f1ee9126a074d9326c682f561767f710e927faa811f7a99829d49dc421797a8360405190815260200160405180910390a1505050565b33600160a060020a03811660009081526002602052604090205460ff161515610eec57600080fd5b6000828152602081905260409020548290600160a060020a03161515610f1157600080fd5b600083815260016020908152604080832033600160a060020a038116855292529091205484919060ff1615610f4557600080fd5b6000858152600160208181526040808420600160a060020a033316808652925292839020805460ff191690921790915586917f4a504a94899432a9846e1aa406dceb1bcfd538bb839071d49d1e5e23f5be30ef905160405180910390a3610fab8561118a565b5050505050565b6000610fbf848484611345565b9050610fca81610ec4565b9392505050565b603281565b60045481565b600030600160a060020a031633600160a060020a0316141515610ffe57600080fd5b600160a060020a038316600090815260026020526040902054839060ff16151561102757600080fd5b600160a060020a038316600090815260026020526040902054839060ff161561104f57600080fd5b600092505b6003548310156110e85784600160a060020a031660038481548110151561107757fe5b600091825260209091200154600160a060020a031614156110dd57836003848154811015156110a257fe5b6000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790556110e8565b600190920191611054565b600160a060020a03808616600081815260026020526040808220805460ff199081169091559388168252908190208054909316600117909255907f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b90905160405180910390a283600160a060020a03167ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d60405160405180910390a25050505050565b33600160a060020a03811660009081526002602052604081205490919060ff1615156111b557600080fd5b600083815260016020908152604080832033600160a060020a038116855292529091205484919060ff1615156111ea57600080fd5b600085815260208190526040902060030154859060ff161561120b57600080fd5b61121486610965565b1561133d576000868152602081905260409081902060038101805460ff19166001908117909155815490820154919750600160a060020a03169160028801905180828054600181600116156101000203166002900480156112b65780601f1061128b576101008083540402835291602001916112b6565b820191906000526020600020905b81548152906001019060200180831161129957829003601f168201915b505091505060006040518083038185875af1925050501561130357857f33e13ecb54c3076d8e8bb8c2881800a4d972b792045ffae98fdf46df365fed7560405160405180910390a261133d565b857f526441bb6c1aba3c9a4a6ca1d6545da9c2333c8c48343ef398eb858d72b7923660405160405180910390a260038501805460ff191690555b505050505050565b600083600160a060020a038116151561135d57600080fd5b600554915060806040519081016040908152600160a060020a0387168252602080830187905281830186905260006060840181905285815290819052208151815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0391909116178155602082015181600101556040820151816002019080516113e892916020019061147d565b506060820151600391909101805460ff191691151591909117905550600580546001019055817fc0ba8fe4b176c1714197d43b9cc6bcf797a4a7461c5fe8d0ef6e184ae7601e5160405160405180910390a2509392505050565b815481835581811511611466576000838152602090206114669181019083016114fb565b505050565b60206040519081016040526000815290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106114be57805160ff19168380011785556114eb565b828001600101855582156114eb579182015b828111156114eb5782518255916020019190600101906114d0565b506114f79291506114fb565b5090565b610b9c91905b808211156114f757600081556001016115015600a165627a7a72305820d42d65ce3cd184b1c0e98ae5fe9841a03ddd21c504e98c38f8d89df83b2b6be60029", + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "02", + "0x0000000000000000000000000000000000000000000000000000000000000004": "02", + "0x53a74cb8e1409f2fa6885f50a9cd170366c9e7e52c8ca5e4c8268ec2e66088e0": "01", + "0xb689ca06605d85e946f5fb4cd76cafa04abd8cd4d1cd4e2e8a559464b7f2b8ca": "01", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b": "ca97040ea64b0eb127370b92f6941e9d0cb87134", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c": "d1c8103106710ba08b5596c0ed115b508c879c74" + } + } + } + } +} diff --git a/docs/XDPoSChain/debug/debug_gcStats_response.json b/docs/XDPoSChain/debug/debug_gcStats_response.json new file mode 100644 index 0000000..f08e087 --- /dev/null +++ b/docs/XDPoSChain/debug/debug_gcStats_response.json @@ -0,0 +1,526 @@ +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "LastGC": "2025-08-14T14:02:17.045756305+08:00", + "NumGC": 2142, + "PauseTotal": 2480994411, + "Pause": [ + 375799, + 311390, + 570912, + 592723, + 1281174, + 717404, + 711753, + 630494, + 478149, + 279428, + 223616, + 631484, + 407958, + 504688, + 818353, + 1005451, + 756737, + 546927, + 708596, + 566245, + 336175, + 263601, + 374286, + 347065, + 326436, + 726652, + 1361902, + 1008435, + 474181, + 835331, + 564378, + 295139, + 315736, + 475855, + 267778, + 438606, + 671008, + 1331337, + 995092, + 569449, + 613581, + 608283, + 1044784, + 2219387, + 749604, + 657744, + 924600, + 323162, + 271256, + 265254, + 319923, + 401166, + 304507, + 612951, + 1500040, + 802723, + 843699, + 1016540, + 334573, + 436963, + 253782, + 477849, + 381179, + 676648, + 1301139, + 1143256, + 834172, + 669356, + 358306, + 502666, + 359550, + 523663, + 697619, + 570532, + 466348, + 1306632, + 1197237, + 706735, + 838159, + 284901, + 297003, + 586543, + 264362, + 329192, + 439387, + 790971, + 1373845, + 918377, + 1093264, + 781923, + 652153, + 265363, + 355401, + 544253, + 449374, + 503205, + 1239205, + 1097311, + 936070, + 726883, + 402199, + 574889, + 462751, + 289209, + 282917, + 822429, + 753571, + 1496982, + 713988, + 751838, + 1093121, + 652593, + 217314, + 742741, + 285348, + 351533, + 788644, + 1404233, + 821489, + 664056, + 611198, + 489291, + 358958, + 232453, + 415011, + 429730, + 677281, + 1440819, + 1116896, + 992737, + 1498870, + 519286, + 487137, + 362063, + 389834, + 443916, + 1339833, + 1019116, + 755486, + 720900, + 278409, + 649498, + 258090, + 272237, + 340091, + 1310950, + 1336297, + 1077035, + 488199, + 299577, + 500392, + 352456, + 275914, + 812992, + 1313443, + 1111057, + 558769, + 1336054, + 580438, + 547638, + 404774, + 329232, + 221781, + 449495, + 602871, + 764602, + 1173893, + 707956, + 989210, + 522160, + 283966, + 386439, + 273379, + 304235, + 291213, + 488708, + 1542028, + 837036, + 924881, + 1093825, + 489298, + 356314, + 209438, + 400235, + 763579, + 574648, + 1036948, + 1105485, + 758231, + 670447, + 433126, + 709429, + 1542629, + 1056796, + 942863, + 690244, + 399714, + 369918, + 402188, + 420331, + 484221, + 727544, + 1165758, + 1175977, + 628008, + 593924, + 287895, + 569639, + 342577, + 719888, + 799697, + 1358557, + 1064450, + 751017, + 837809, + 413420, + 273268, + 381069, + 760154, + 485713, + 1175406, + 1090760, + 584787, + 1021240, + 771586, + 1733284, + 1445327, + 696335, + 1746729, + 465626, + 292284, + 255926, + 302683, + 378003, + 516831, + 1488778, + 3211775, + 1347237, + 1303554, + 756327, + 984951, + 2170978, + 819946, + 551004, + 639880, + 200704, + 304226, + 401466, + 337728, + 383703, + 1142846, + 843018, + 1141282, + 913548, + 585349, + 249624 + ], + "PauseEnd": [ + "2025-08-14T14:02:17.045756305+08:00", + "2025-08-14T14:00:16.711488438+08:00", + "2025-08-14T13:58:16.332449888+08:00", + "2025-08-14T13:56:15.889044686+08:00", + "2025-08-14T13:54:15.460937221+08:00", + "2025-08-14T13:52:15.040401571+08:00", + "2025-08-14T13:50:14.676716915+08:00", + "2025-08-14T13:48:14.294815359+08:00", + "2025-08-14T13:46:13.952140781+08:00", + "2025-08-14T13:44:13.622141539+08:00", + "2025-08-14T13:42:13.29612277+08:00", + "2025-08-14T13:40:12.95763499+08:00", + "2025-08-14T13:38:12.614370606+08:00", + "2025-08-14T13:36:12.292264245+08:00", + "2025-08-14T13:34:11.896251373+08:00", + "2025-08-14T13:32:11.553651325+08:00", + "2025-08-14T13:30:11.138824916+08:00", + "2025-08-14T13:28:10.735197529+08:00", + "2025-08-14T13:26:10.325521567+08:00", + "2025-08-14T13:24:09.966272092+08:00", + "2025-08-14T13:22:09.573033146+08:00", + "2025-08-14T13:20:09.24849065+08:00", + "2025-08-14T13:18:08.906577085+08:00", + "2025-08-14T13:16:08.603431812+08:00", + "2025-08-14T13:14:08.236204323+08:00", + "2025-08-14T13:12:07.90165098+08:00", + "2025-08-14T13:10:07.533453622+08:00", + "2025-08-14T13:08:07.221113678+08:00", + "2025-08-14T13:06:06.859585938+08:00", + "2025-08-14T13:04:06.508696943+08:00", + "2025-08-14T13:02:06.085527135+08:00", + "2025-08-14T13:00:05.743025924+08:00", + "2025-08-14T12:58:05.387369603+08:00", + "2025-08-14T12:56:05.068265749+08:00", + "2025-08-14T12:54:04.778670381+08:00", + "2025-08-14T12:52:04.471542302+08:00", + "2025-08-14T12:50:04.035096913+08:00", + "2025-08-14T12:48:03.681480873+08:00", + "2025-08-14T12:46:03.269379034+08:00", + "2025-08-14T12:44:02.887713825+08:00", + "2025-08-14T12:42:02.59603398+08:00", + "2025-08-14T12:40:02.191697251+08:00", + "2025-08-14T12:38:01.860549153+08:00", + "2025-08-14T12:36:01.504909523+08:00", + "2025-08-14T12:34:01.068210838+08:00", + "2025-08-14T12:32:00.777911704+08:00", + "2025-08-14T12:30:00.370837212+08:00", + "2025-08-14T12:28:00.006775713+08:00", + "2025-08-14T12:25:59.676139806+08:00", + "2025-08-14T12:23:59.36127977+08:00", + "2025-08-14T12:21:58.990761005+08:00", + "2025-08-14T12:19:58.711043873+08:00", + "2025-08-14T12:17:58.366432426+08:00", + "2025-08-14T12:15:58.001716952+08:00", + "2025-08-14T12:13:57.678519924+08:00", + "2025-08-14T12:11:57.287288559+08:00", + "2025-08-14T12:09:56.874635111+08:00", + "2025-08-14T12:07:56.509621495+08:00", + "2025-08-14T12:05:56.054486598+08:00", + "2025-08-14T12:03:55.725886325+08:00", + "2025-08-14T12:01:55.389690094+08:00", + "2025-08-14T11:59:55.091364277+08:00", + "2025-08-14T11:57:54.797648019+08:00", + "2025-08-14T11:55:54.458726+08:00", + "2025-08-14T11:53:54.102371216+08:00", + "2025-08-14T11:51:53.729041195+08:00", + "2025-08-14T11:49:53.393106465+08:00", + "2025-08-14T11:47:53.0454975+08:00", + "2025-08-14T11:45:52.662485673+08:00", + "2025-08-14T11:43:52.2733209+08:00", + "2025-08-14T11:41:51.854889787+08:00", + "2025-08-14T11:39:51.48853726+08:00", + "2025-08-14T11:37:51.123313513+08:00", + "2025-08-14T11:35:50.70850945+08:00", + "2025-08-14T11:33:50.387271353+08:00", + "2025-08-14T11:31:50.063812863+08:00", + "2025-08-14T11:29:49.66603267+08:00", + "2025-08-14T11:27:49.257737695+08:00", + "2025-08-14T11:25:48.898734757+08:00", + "2025-08-14T11:23:48.392642374+08:00", + "2025-08-14T11:21:48.003266783+08:00", + "2025-08-14T11:19:47.711019804+08:00", + "2025-08-14T11:17:47.349678887+08:00", + "2025-08-14T11:15:46.992473348+08:00", + "2025-08-14T11:13:46.67677397+08:00", + "2025-08-14T11:11:46.253412591+08:00", + "2025-08-14T11:09:45.887282597+08:00", + "2025-08-14T11:07:45.466771262+08:00", + "2025-08-14T11:05:45.130532289+08:00", + "2025-08-14T11:03:44.762413325+08:00", + "2025-08-14T11:01:44.377402442+08:00", + "2025-08-14T10:59:44.016132763+08:00", + "2025-08-14T10:57:43.681436229+08:00", + "2025-08-14T10:55:43.380329871+08:00", + "2025-08-14T10:53:43.03704556+08:00", + "2025-08-14T10:51:42.751606537+08:00", + "2025-08-14T10:49:42.364799407+08:00", + "2025-08-14T10:47:41.955329232+08:00", + "2025-08-14T10:45:41.573574864+08:00", + "2025-08-14T10:43:41.161842928+08:00", + "2025-08-14T10:41:40.819495295+08:00", + "2025-08-14T10:39:40.438525251+08:00", + "2025-08-14T10:37:40.062788357+08:00", + "2025-08-14T10:35:39.720314641+08:00", + "2025-08-14T10:33:39.432021371+08:00", + "2025-08-14T10:31:39.099016741+08:00", + "2025-08-14T10:29:38.77684957+08:00", + "2025-08-14T10:27:38.425187426+08:00", + "2025-08-14T10:25:38.077693171+08:00", + "2025-08-14T10:23:37.57382442+08:00", + "2025-08-14T10:21:37.259780366+08:00", + "2025-08-14T10:19:36.929388865+08:00", + "2025-08-14T10:17:36.544523009+08:00", + "2025-08-14T10:15:36.24007798+08:00", + "2025-08-14T10:13:35.875926515+08:00", + "2025-08-14T10:11:35.543461031+08:00", + "2025-08-14T10:09:35.201287718+08:00", + "2025-08-14T10:07:34.866047088+08:00", + "2025-08-14T10:05:34.54160254+08:00", + "2025-08-14T10:03:34.202506938+08:00", + "2025-08-14T10:01:33.872226926+08:00", + "2025-08-14T09:59:33.486702192+08:00", + "2025-08-14T09:57:33.162174219+08:00", + "2025-08-14T09:55:32.859052415+08:00", + "2025-08-14T09:53:32.55408279+08:00", + "2025-08-14T09:51:32.122052203+08:00", + "2025-08-14T09:49:31.783944896+08:00", + "2025-08-14T09:47:31.43793018+08:00", + "2025-08-14T09:45:31.080604417+08:00", + "2025-08-14T09:43:30.761142054+08:00", + "2025-08-14T09:41:30.411018616+08:00", + "2025-08-14T09:39:30.010559921+08:00", + "2025-08-14T09:37:29.692682806+08:00", + "2025-08-14T09:35:29.356129214+08:00", + "2025-08-14T09:33:29.017621086+08:00", + "2025-08-14T09:31:28.685131696+08:00", + "2025-08-14T09:29:28.321621564+08:00", + "2025-08-14T09:27:27.973148114+08:00", + "2025-08-14T09:25:27.68469612+08:00", + "2025-08-14T09:23:27.320210339+08:00", + "2025-08-14T09:21:26.989266425+08:00", + "2025-08-14T09:19:26.731515604+08:00", + "2025-08-14T09:17:26.441627361+08:00", + "2025-08-14T09:15:26.097976341+08:00", + "2025-08-14T09:13:25.800525633+08:00", + "2025-08-14T09:11:25.480777022+08:00", + "2025-08-14T09:09:25.146856563+08:00", + "2025-08-14T09:07:24.790161582+08:00", + "2025-08-14T09:05:24.47732989+08:00", + "2025-08-14T09:03:24.19669992+08:00", + "2025-08-14T09:01:23.939277144+08:00", + "2025-08-14T08:59:23.656839244+08:00", + "2025-08-14T08:57:23.353277478+08:00", + "2025-08-14T08:55:23.059351894+08:00", + "2025-08-14T08:53:22.695731056+08:00", + "2025-08-14T08:51:22.336079336+08:00", + "2025-08-14T08:49:21.945880583+08:00", + "2025-08-14T08:47:21.583903867+08:00", + "2025-08-14T08:46:39.663678564+08:00", + "2025-08-14T08:45:51.538425593+08:00", + "2025-08-14T08:44:58.51563893+08:00", + "2025-08-14T08:43:37.34435425+08:00", + "2025-08-14T08:42:20.361561463+08:00", + "2025-08-14T08:40:20.110636399+08:00", + "2025-08-14T08:38:19.78762133+08:00", + "2025-08-14T08:36:19.469346+08:00", + "2025-08-14T08:34:19.159575851+08:00", + "2025-08-14T08:32:18.864579245+08:00", + "2025-08-14T08:30:18.495689064+08:00", + "2025-08-14T08:28:18.181496136+08:00", + "2025-08-14T08:26:17.880258744+08:00", + "2025-08-14T08:24:17.552794275+08:00", + "2025-08-14T08:22:17.202476332+08:00", + "2025-08-14T08:20:16.929701923+08:00", + "2025-08-14T08:18:16.631012294+08:00", + "2025-08-14T08:16:16.297595979+08:00", + "2025-08-14T08:14:15.963874471+08:00", + "2025-08-14T08:12:15.642642764+08:00", + "2025-08-14T08:10:15.33422177+08:00", + "2025-08-14T08:08:15.012295928+08:00", + "2025-08-14T08:06:14.642466118+08:00", + "2025-08-14T08:04:14.325559413+08:00", + "2025-08-14T08:02:14.012366498+08:00", + "2025-08-14T08:00:13.731406006+08:00", + "2025-08-14T07:58:13.41790997+08:00", + "2025-08-14T07:56:13.074946594+08:00", + "2025-08-14T07:54:12.745564714+08:00", + "2025-08-14T07:52:12.409824193+08:00", + "2025-08-14T07:50:12.086983787+08:00", + "2025-08-14T07:48:11.785603541+08:00", + "2025-08-14T07:46:11.463206864+08:00", + "2025-08-14T07:44:11.149712315+08:00", + "2025-08-14T07:42:10.81909266+08:00", + "2025-08-14T07:40:10.487259073+08:00", + "2025-08-14T07:38:10.151510577+08:00", + "2025-08-14T07:36:09.768170585+08:00", + "2025-08-14T07:34:09.487364207+08:00", + "2025-08-14T07:32:09.152813495+08:00", + "2025-08-14T07:30:08.86314943+08:00", + "2025-08-14T07:28:08.558652655+08:00", + "2025-08-14T07:26:08.263825026+08:00", + "2025-08-14T07:24:07.927417815+08:00", + "2025-08-14T07:22:07.557360282+08:00", + "2025-08-14T07:20:07.204011269+08:00", + "2025-08-14T07:18:06.858332258+08:00", + "2025-08-14T07:16:06.502047786+08:00", + "2025-08-14T07:14:06.169728441+08:00", + "2025-08-14T07:12:05.896328638+08:00", + "2025-08-14T07:10:05.575297952+08:00", + "2025-08-14T07:08:05.290459348+08:00", + "2025-08-14T07:06:04.936478618+08:00", + "2025-08-14T07:04:04.5922034+08:00", + "2025-08-14T07:02:04.289773607+08:00", + "2025-08-14T07:00:03.917208307+08:00", + "2025-08-14T06:58:03.573240785+08:00", + "2025-08-14T06:56:03.233106971+08:00", + "2025-08-14T06:54:02.903207479+08:00", + "2025-08-14T06:52:02.584597468+08:00", + "2025-08-14T06:50:02.260466377+08:00", + "2025-08-14T06:48:01.917099859+08:00", + "2025-08-14T06:46:01.589967297+08:00", + "2025-08-14T06:44:01.237343127+08:00", + "2025-08-14T06:42:00.915284764+08:00", + "2025-08-14T06:40:00.61290192+08:00", + "2025-08-14T06:38:00.330917755+08:00", + "2025-08-14T06:35:59.965876361+08:00", + "2025-08-14T06:33:59.61459835+08:00", + "2025-08-14T06:31:59.302840122+08:00", + "2025-08-14T06:29:58.939245098+08:00", + "2025-08-14T06:27:58.588467421+08:00", + "2025-08-14T06:25:58.272266628+08:00", + "2025-08-14T06:23:57.949641533+08:00", + "2025-08-14T06:21:57.636239898+08:00", + "2025-08-14T06:19:57.355862259+08:00", + "2025-08-14T06:17:57.077861161+08:00", + "2025-08-14T06:15:56.737704299+08:00", + "2025-08-14T06:13:56.388685785+08:00", + "2025-08-14T06:11:55.964493298+08:00", + "2025-08-14T06:09:55.628433618+08:00", + "2025-08-14T06:07:55.258909317+08:00", + "2025-08-14T06:05:54.965581851+08:00", + "2025-08-14T06:03:54.639652211+08:00", + "2025-08-14T06:01:54.237927035+08:00", + "2025-08-14T05:59:53.881918258+08:00", + "2025-08-14T05:57:53.608402973+08:00", + "2025-08-14T05:55:53.323222673+08:00", + "2025-08-14T05:53:53.025646687+08:00", + "2025-08-14T05:51:52.771522441+08:00", + "2025-08-14T05:49:52.454250142+08:00", + "2025-08-14T05:47:52.132721645+08:00", + "2025-08-14T05:45:51.838583545+08:00", + "2025-08-14T05:43:51.521221809+08:00", + "2025-08-14T05:41:51.260958426+08:00", + "2025-08-14T05:39:50.954862883+08:00", + "2025-08-14T05:37:50.651592034+08:00", + "2025-08-14T05:35:50.388993448+08:00" + ], + "PauseQuantiles": null + } +} diff --git a/docs/XDPoSChain/debug/debug_memStats_response.json b/docs/XDPoSChain/debug/debug_memStats_response.json new file mode 100644 index 0000000..b78414b --- /dev/null +++ b/docs/XDPoSChain/debug/debug_memStats_response.json @@ -0,0 +1,858 @@ +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "Alloc": 2926701936, + "TotalAlloc": 2170054345792, + "Sys": 7683272072, + "Lookups": 0, + "Mallocs": 22499609521, + "Frees": 22487783928, + "HeapAlloc": 2926701936, + "HeapSys": 7570800640, + "HeapIdle": 4304191488, + "HeapInuse": 3266609152, + "HeapReleased": 4300120064, + "HeapObjects": 11825593, + "StackInuse": 7897088, + "StackSys": 7897088, + "MSpanInuse": 28240160, + "MSpanSys": 50053440, + "MCacheInuse": 21600, + "MCacheSys": 31200, + "BuckHashSys": 11047028, + "GCSys": 35206976, + "OtherSys": 8235700, + "NextGC": 5135410136, + "LastGC": 1755152097936085500, + "PauseTotalNs": 2487773606, + "PauseNs": [ + 544253, + 355401, + 265363, + 652153, + 781923, + 1093264, + 918377, + 1373845, + 790971, + 439387, + 329192, + 264362, + 586543, + 297003, + 284901, + 838159, + 706735, + 1197237, + 1306632, + 466348, + 570532, + 697619, + 523663, + 359550, + 502666, + 358306, + 669356, + 834172, + 1143256, + 1301139, + 676648, + 381179, + 477849, + 253782, + 436963, + 334573, + 1016540, + 843699, + 802723, + 1500040, + 612951, + 304507, + 401166, + 319923, + 265254, + 271256, + 323162, + 924600, + 657744, + 749604, + 2219387, + 1044784, + 608283, + 613581, + 569449, + 995092, + 1331337, + 671008, + 438606, + 267778, + 475855, + 315736, + 295139, + 564378, + 835331, + 474181, + 1008435, + 1361902, + 726652, + 326436, + 347065, + 374286, + 263601, + 336175, + 566245, + 708596, + 546927, + 756737, + 1005451, + 818353, + 504688, + 407958, + 631484, + 223616, + 279428, + 478149, + 630494, + 711753, + 717404, + 1281174, + 592723, + 570912, + 311390, + 375799, + 409331, + 435730, + 1293686, + 1009748, + 675465, + 2062976, + 609393, + 282866, + 401466, + 304226, + 200704, + 639880, + 551004, + 819946, + 2170978, + 984951, + 756327, + 1303554, + 1347237, + 3211775, + 1488778, + 516831, + 378003, + 302683, + 255926, + 292284, + 465626, + 1746729, + 696335, + 1445327, + 1733284, + 771586, + 1021240, + 584787, + 1090760, + 1175406, + 485713, + 760154, + 381069, + 273268, + 413420, + 837809, + 751017, + 1064450, + 1358557, + 799697, + 719888, + 342577, + 569639, + 287895, + 593924, + 628008, + 1175977, + 1165758, + 727544, + 484221, + 420331, + 402188, + 369918, + 399714, + 690244, + 942863, + 1056796, + 1542629, + 709429, + 433126, + 670447, + 758231, + 1105485, + 1036948, + 574648, + 763579, + 400235, + 209438, + 356314, + 489298, + 1093825, + 924881, + 837036, + 1542028, + 488708, + 291213, + 304235, + 273379, + 386439, + 283966, + 522160, + 989210, + 707956, + 1173893, + 764602, + 602871, + 449495, + 221781, + 329232, + 404774, + 547638, + 580438, + 1336054, + 558769, + 1111057, + 1313443, + 812992, + 275914, + 352456, + 500392, + 299577, + 488199, + 1077035, + 1336297, + 1310950, + 340091, + 272237, + 258090, + 649498, + 278409, + 720900, + 755486, + 1019116, + 1339833, + 443916, + 389834, + 362063, + 487137, + 519286, + 1498870, + 992737, + 1116896, + 1440819, + 677281, + 429730, + 415011, + 232453, + 358958, + 489291, + 611198, + 664056, + 821489, + 1404233, + 788644, + 351533, + 285348, + 742741, + 217314, + 652593, + 1093121, + 751838, + 713988, + 1496982, + 753571, + 822429, + 282917, + 289209, + 462751, + 574889, + 402199, + 726883, + 936070, + 1097311, + 1239205, + 503205, + 449374 + ], + "PauseEnd": [ + 1755140143380330000, + 1755140263681436200, + 1755140384016132900, + 1755140504377402400, + 1755140624762413300, + 1755140745130532400, + 1755140865466771200, + 1755140985887282700, + 1755141106253412600, + 1755141226676774000, + 1755141346992473300, + 1755141467349678800, + 1755141587711019800, + 1755141708003266800, + 1755141828392642300, + 1755141948898734800, + 1755142069257737700, + 1755142189666032600, + 1755142310063812900, + 1755142430387271400, + 1755142550708509400, + 1755142671123313400, + 1755142791488537300, + 1755142911854889700, + 1755143032273321000, + 1755143152662485800, + 1755143273045497600, + 1755143393393106400, + 1755143513729041200, + 1755143634102371300, + 1755143754458726000, + 1755143874797648100, + 1755143995091364400, + 1755144115389690000, + 1755144235725886200, + 1755144356054486500, + 1755144476509621500, + 1755144596874635000, + 1755144717287288600, + 1755144837678519800, + 1755144958001717000, + 1755145078366432500, + 1755145198711043800, + 1755145318990761000, + 1755145439361279700, + 1755145559676139800, + 1755145680006775800, + 1755145800370837200, + 1755145920777911800, + 1755146041068211000, + 1755146161504909600, + 1755146281860549000, + 1755146402191697200, + 1755146522596034000, + 1755146642887713800, + 1755146763269379000, + 1755146883681481000, + 1755147004035096800, + 1755147124471542300, + 1755147244778670300, + 1755147365068265700, + 1755147485387369700, + 1755147605743026000, + 1755147726085527000, + 1755147846508696800, + 1755147966859586000, + 1755148087221113600, + 1755148207533453600, + 1755148327901651000, + 1755148448236204300, + 1755148568603432000, + 1755148688906577200, + 1755148809248490800, + 1755148929573033200, + 1755149049966272000, + 1755149170325521700, + 1755149290735197400, + 1755149411138825000, + 1755149531553651200, + 1755149651896251400, + 1755149772292264200, + 1755149892614370600, + 1755150012957635000, + 1755150133296123000, + 1755150253622141400, + 1755150373952140800, + 1755150494294815200, + 1755150614676716800, + 1755150735040401700, + 1755150855460937200, + 1755150975889044700, + 1755151096332449800, + 1755151216711488500, + 1755151337045756400, + 1755151457454713300, + 1755151577789187800, + 1755151698190271200, + 1755151818662215700, + 1755151938967036000, + 1755152059397435000, + 1755152085287754000, + 1755152097936085500, + 1755121912771522600, + 1755122033025646600, + 1755122153323222800, + 1755122273608403000, + 1755122393881918200, + 1755122514237927000, + 1755122634639652000, + 1755122754965581800, + 1755122875258909400, + 1755122995628433700, + 1755123115964493300, + 1755123236388685800, + 1755123356737704200, + 1755123477077861000, + 1755123597355862300, + 1755123717636240000, + 1755123837949641500, + 1755123958272266800, + 1755124078588467500, + 1755124198939245000, + 1755124319302840000, + 1755124439614598400, + 1755124559965876500, + 1755124680330917600, + 1755124800612902000, + 1755124920915284700, + 1755125041237343200, + 1755125161589967400, + 1755125281917099800, + 1755125402260466400, + 1755125522584597500, + 1755125642903207400, + 1755125763233107000, + 1755125883573240800, + 1755126003917208300, + 1755126124289773600, + 1755126244592203500, + 1755126364936478700, + 1755126485290459400, + 1755126605575298000, + 1755126725896328700, + 1755126846169728500, + 1755126966502047700, + 1755127086858332200, + 1755127207204011300, + 1755127327557360400, + 1755127447927417900, + 1755127568263825200, + 1755127688558652700, + 1755127808863149300, + 1755127929152813600, + 1755128049487364000, + 1755128169768170500, + 1755128290151510500, + 1755128410487259100, + 1755128530819092700, + 1755128651149712400, + 1755128771463207000, + 1755128891785603600, + 1755129012086983700, + 1755129132409824300, + 1755129252745564700, + 1755129373074946600, + 1755129493417910000, + 1755129613731406000, + 1755129734012366600, + 1755129854325559300, + 1755129974642466000, + 1755130095012296000, + 1755130215334221800, + 1755130335642642700, + 1755130455963874600, + 1755130576297596000, + 1755130696631012400, + 1755130816929702000, + 1755130937202476300, + 1755131057552794400, + 1755131177880258800, + 1755131298181496000, + 1755131418495689000, + 1755131538864579300, + 1755131659159575800, + 1755131779469346000, + 1755131899787621400, + 1755132020110636300, + 1755132140361561300, + 1755132217344354300, + 1755132298515639000, + 1755132351538425600, + 1755132399663678500, + 1755132441583903700, + 1755132561945880600, + 1755132682336079400, + 1755132802695731000, + 1755132923059351800, + 1755133043353277400, + 1755133163656839200, + 1755133283939277000, + 1755133404196700000, + 1755133524477330000, + 1755133644790161700, + 1755133765146856400, + 1755133885480777000, + 1755134005800525600, + 1755134126097976300, + 1755134246441627400, + 1755134366731515600, + 1755134486989266400, + 1755134607320210400, + 1755134727684696000, + 1755134847973148200, + 1755134968321621500, + 1755135088685131800, + 1755135209017621000, + 1755135329356129300, + 1755135449692682800, + 1755135570010560000, + 1755135690411018500, + 1755135810761142000, + 1755135931080604400, + 1755136051437930200, + 1755136171783945000, + 1755136292122052000, + 1755136412554082800, + 1755136532859052300, + 1755136653162174200, + 1755136773486702000, + 1755136893872226800, + 1755137014202507000, + 1755137134541602600, + 1755137254866047000, + 1755137375201287700, + 1755137495543461000, + 1755137615875926500, + 1755137736240078000, + 1755137856544523000, + 1755137976929388800, + 1755138097259780400, + 1755138217573824500, + 1755138338077693200, + 1755138458425187300, + 1755138578776849700, + 1755138699099016700, + 1755138819432021200, + 1755138939720314600, + 1755139060062788400, + 1755139180438525200, + 1755139300819495200, + 1755139421161843000, + 1755139541573575000, + 1755139661955329300, + 1755139782364799500, + 1755139902751606500, + 1755140023037045500 + ], + "NumGC": 2150, + "NumForcedGC": 2, + "GCCPUFraction": 0.0006321487579162093, + "EnableGC": true, + "DebugGC": false, + "BySize": [ + { + "Size": 0, + "Mallocs": 0, + "Frees": 0 + }, + { + "Size": 8, + "Mallocs": 359739092, + "Frees": 359629506 + }, + { + "Size": 16, + "Mallocs": 2976331768, + "Frees": 2975287834 + }, + { + "Size": 24, + "Mallocs": 1780675506, + "Frees": 1780195732 + }, + { + "Size": 32, + "Mallocs": 7580256899, + "Frees": 7577557025 + }, + { + "Size": 48, + "Mallocs": 2027658493, + "Frees": 2024805571 + }, + { + "Size": 64, + "Mallocs": 723194824, + "Frees": 722522711 + }, + { + "Size": 80, + "Mallocs": 1316490426, + "Frees": 1315138956 + }, + { + "Size": 96, + "Mallocs": 876817423, + "Frees": 876352280 + }, + { + "Size": 112, + "Mallocs": 335925186, + "Frees": 335794415 + }, + { + "Size": 128, + "Mallocs": 1090577294, + "Frees": 1090367321 + }, + { + "Size": 144, + "Mallocs": 131914284, + "Frees": 131886413 + }, + { + "Size": 160, + "Mallocs": 68458842, + "Frees": 68453759 + }, + { + "Size": 176, + "Mallocs": 275343390, + "Frees": 275287076 + }, + { + "Size": 192, + "Mallocs": 7206887, + "Frees": 7205738 + }, + { + "Size": 208, + "Mallocs": 30957226, + "Frees": 30919996 + }, + { + "Size": 224, + "Mallocs": 32545728, + "Frees": 32541973 + }, + { + "Size": 240, + "Mallocs": 353813798, + "Frees": 353790229 + }, + { + "Size": 256, + "Mallocs": 8131603, + "Frees": 8126704 + }, + { + "Size": 288, + "Mallocs": 34885186, + "Frees": 33484645 + }, + { + "Size": 320, + "Mallocs": 191705181, + "Frees": 191672448 + }, + { + "Size": 352, + "Mallocs": 3797011, + "Frees": 3796067 + }, + { + "Size": 384, + "Mallocs": 6085228, + "Frees": 6084654 + }, + { + "Size": 416, + "Mallocs": 14333625, + "Frees": 14291661 + }, + { + "Size": 448, + "Mallocs": 11511620, + "Frees": 11507819 + }, + { + "Size": 480, + "Mallocs": 7375231, + "Frees": 7374171 + }, + { + "Size": 512, + "Mallocs": 593202355, + "Frees": 593081117 + }, + { + "Size": 576, + "Mallocs": 32667251, + "Frees": 32660758 + }, + { + "Size": 640, + "Mallocs": 12509385, + "Frees": 12507041 + }, + { + "Size": 704, + "Mallocs": 4886695, + "Frees": 4886246 + }, + { + "Size": 768, + "Mallocs": 426532, + "Frees": 426423 + }, + { + "Size": 896, + "Mallocs": 14362336, + "Frees": 14360143 + }, + { + "Size": 1024, + "Mallocs": 3153810, + "Frees": 3153385 + }, + { + "Size": 1152, + "Mallocs": 3473677, + "Frees": 3473034 + }, + { + "Size": 1280, + "Mallocs": 2656643, + "Frees": 2656555 + }, + { + "Size": 1408, + "Mallocs": 6756458, + "Frees": 6755063 + }, + { + "Size": 1536, + "Mallocs": 2632937, + "Frees": 2632577 + }, + { + "Size": 1792, + "Mallocs": 5852323, + "Frees": 5851420 + }, + { + "Size": 2048, + "Mallocs": 6973900, + "Frees": 6972448 + }, + { + "Size": 2304, + "Mallocs": 4536211, + "Frees": 4534361 + }, + { + "Size": 2688, + "Mallocs": 733150, + "Frees": 732962 + }, + { + "Size": 3072, + "Mallocs": 6679877, + "Frees": 6678483 + }, + { + "Size": 3200, + "Mallocs": 23266, + "Frees": 23263 + }, + { + "Size": 3456, + "Mallocs": 239685, + "Frees": 239653 + }, + { + "Size": 4096, + "Mallocs": 6690434, + "Frees": 6688997 + }, + { + "Size": 4864, + "Mallocs": 242307, + "Frees": 241451 + }, + { + "Size": 5376, + "Mallocs": 14956429, + "Frees": 14952706 + }, + { + "Size": 6144, + "Mallocs": 6177305, + "Frees": 6175992 + }, + { + "Size": 6528, + "Mallocs": 2454168, + "Frees": 2453635 + }, + { + "Size": 6784, + "Mallocs": 954508, + "Frees": 954374 + }, + { + "Size": 6912, + "Mallocs": 7099592, + "Frees": 7097987 + }, + { + "Size": 8192, + "Mallocs": 3181510, + "Frees": 3180941 + }, + { + "Size": 9472, + "Mallocs": 4034369, + "Frees": 4028545 + }, + { + "Size": 9728, + "Mallocs": 121357, + "Frees": 121348 + }, + { + "Size": 10240, + "Mallocs": 369334, + "Frees": 369322 + }, + { + "Size": 10880, + "Mallocs": 221173, + "Frees": 221144 + }, + { + "Size": 12288, + "Mallocs": 856943, + "Frees": 856770 + }, + { + "Size": 13568, + "Mallocs": 68925, + "Frees": 68891 + }, + { + "Size": 14336, + "Mallocs": 32997, + "Frees": 32968 + }, + { + "Size": 16384, + "Mallocs": 608106, + "Frees": 607934 + }, + { + "Size": 18432, + "Mallocs": 460897, + "Frees": 454902 + } + ] + } +} diff --git a/docs/XDPoSChain/debug/debug_stacks_response.json b/docs/XDPoSChain/debug/debug_stacks_response.json new file mode 100644 index 0000000..7d8a581 --- /dev/null +++ b/docs/XDPoSChain/debug/debug_stacks_response.json @@ -0,0 +1,5 @@ +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "goroutine 90297979 [running]:\ngithub.com/XinFinOrg/XDPoSChain/internal/debug.(*HandlerT).Stacks(0x0?)\n\t/home/me/XDPoSChain/internal/debug/api.go:235 +0x3c\nreflect.Value.call({0xc019866690?, 0xc01a630f50?, 0x13742a0?}, {0x15ed644, 0x4}, {0xc071210c90, 0x1, 0xc071210c90?})\n\t/home/me/govm/golang/go-1.23.11/src/reflect/value.go:584 +0xca6\nreflect.Value.Call({0xc019866690?, 0xc01a630f50?, 0x5d5925?}, {0xc071210c90?, 0x56fb7c?, 0xc05c2477c0?})\n\t/home/me/govm/golang/go-1.23.11/src/reflect/value.go:368 +0xb9\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*callback).call(0xc01a660420, {0x19f4f50, 0xc01e8f20f0}, {0xc08357ff10, 0xc}, {0x0, 0x0, 0x4f97af?})\n\t/home/me/XDPoSChain/rpc/service.go:205 +0x365\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*handler).runMethod(0x0?, {0x19f4f50?, 0xc01e8f20f0?}, 0xc06776f500, 0x0?, {0x0?, 0xc009188d90?, 0x41e710?})\n\t/home/me/XDPoSChain/rpc/handler.go:568 +0x3c\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*handler).handleCall(0xc035fde460, 0xc071210ba0, 0xc06776f500)\n\t/home/me/XDPoSChain/rpc/handler.go:515 +0x235\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*handler).handleCallMsg(0xc035fde460, 0xc071210ba0, 0xc06776f500)\n\t/home/me/XDPoSChain/rpc/handler.go:473 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*handler).handleNonBatchCall(0xc035fde460, 0xc071210ba0, 0xc06776f500)\n\t/home/me/XDPoSChain/rpc/handler.go:299 +0x18a\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*handler).handleMsg.func1.1(0x19f4f50?)\n\t/home/me/XDPoSChain/rpc/handler.go:272 +0x25\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*handler).startCallProc.func1()\n\t/home/me/XDPoSChain/rpc/handler.go:390 +0xbb\ncreated by github.com/XinFinOrg/XDPoSChain/rpc.(*handler).startCallProc in goroutine 90297990\n\t/home/me/XDPoSChain/rpc/handler.go:386 +0x79\n\ngoroutine 1 [chan receive, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/node.(*Node).Wait(...)\n\t/home/me/XDPoSChain/node/node.go:546\nmain.XDC(0xc000218d80)\n\t/home/me/XDPoSChain/cmd/XDC/main.go:272 +0x107\ngithub.com/urfave/cli/v2.(*Command).Run(0xc0001d2420, 0xc000218d80, {0xc000040788, 0x27, 0x27})\n\t/home/me/go/pkg/mod/github.com/urfave/cli/v2@v2.27.5/command.go:276 +0x7e2\ngithub.com/urfave/cli/v2.(*App).RunContext(0xc00021a400, {0x19f4460, 0x26b8740}, {0xc000040788, 0x27, 0x27})\n\t/home/me/go/pkg/mod/github.com/urfave/cli/v2@v2.27.5/app.go:333 +0x5a5\ngithub.com/urfave/cli/v2.(*App).Run(...)\n\t/home/me/go/pkg/mod/github.com/urfave/cli/v2@v2.27.5/app.go:307\nmain.main()\n\t/home/me/XDPoSChain/cmd/XDC/main.go:259 +0x45\n\ngoroutine 42 [chan receive]:\ngithub.com/XinFinOrg/XDPoSChain/metrics.(*meterTicker).loop(0x268df80)\n\t/home/me/XDPoSChain/metrics/meter.go:159 +0x59\ncreated by github.com/XinFinOrg/XDPoSChain/metrics.(*meterTicker).add in goroutine 1\n\t/home/me/XDPoSChain/metrics/meter.go:145 +0xb8\n\ngoroutine 43 [select]:\ngithub.com/globalsign/mgo.newcoarseTimeProvider.func1()\n\t/home/me/go/pkg/mod/github.com/globalsign/mgo@v0.0.0-20181015135952-eeefdecb41b8/coarse_time.go:51 +0xca\ncreated by github.com/globalsign/mgo.newcoarseTimeProvider in goroutine 1\n\t/home/me/go/pkg/mod/github.com/globalsign/mgo@v0.0.0-20181015135952-eeefdecb41b8/coarse_time.go:48 +0xec\n\ngoroutine 44 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0x0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 45 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0x0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 46 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0x0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 47 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0x0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 48 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0x0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 49 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0x0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 50 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0x0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 51 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0xc000122330?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 52 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0xc000122330?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 53 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0x0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 54 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0xc0001222d0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 55 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0xc0001222d0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 56 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0x0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 57 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0x0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 58 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0x0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 59 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0xc000122f00?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 60 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0xc000122ea0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 61 [chan receive, 613 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*txSenderCacher).cache(0xc000122ea0?)\n\t/home/me/XDPoSChain/core/sender_cacher.go:63 +0x35\ncreated by github.com/XinFinOrg/XDPoSChain/core.newTxSenderCacher in goroutine 1\n\t/home/me/XDPoSChain/core/sender_cacher.go:55 +0x72\n\ngoroutine 66 [IO wait, 4215 minutes]:\ninternal/poll.runtime_pollWait(0x7fa99ad14760, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc0001d0300?, 0xc0004bdcdf?, 0x1)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc0001d0300, {0xc0004bdcdf, 0x10000, 0x10000})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nos.(*File).read(...)\n\t/home/me/govm/golang/go-1.23.11/src/os/file_posix.go:29\nos.(*File).Read(0xc00008e040, {0xc0004bdcdf?, 0x0?, 0x0?})\n\t/home/me/govm/golang/go-1.23.11/src/os/file.go:124 +0x52\ngithub.com/fsnotify/fsnotify.(*inotify).readEvents(0xc000264280)\n\t/home/me/go/pkg/mod/github.com/fsnotify/fsnotify@v1.8.0/backend_inotify.go:431 +0xc5\ncreated by github.com/fsnotify/fsnotify.newBufferedBackend in goroutine 14\n\t/home/me/go/pkg/mod/github.com/fsnotify/fsnotify@v1.8.0/backend_inotify.go:195 +0x196\n\ngoroutine 13 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/accounts.(*Manager).update(0xc0001c0460)\n\t/home/me/XDPoSChain/accounts/manager.go:137 +0x133\ncreated by github.com/XinFinOrg/XDPoSChain/accounts.NewManager in goroutine 1\n\t/home/me/XDPoSChain/accounts/manager.go:94 +0x48b\n\ngoroutine 14 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/accounts/keystore.(*watcher).loop(0xc0002b8180)\n\t/home/me/XDPoSChain/accounts/keystore/watch.go:108 +0x5c5\ncreated by github.com/XinFinOrg/XDPoSChain/accounts/keystore.(*watcher).start in goroutine 1\n\t/home/me/XDPoSChain/accounts/keystore/watch.go:56 +0x66\n\ngoroutine 15 [select]:\ngithub.com/XinFinOrg/XDPoSChain/accounts/keystore.(*KeyStore).updater(0xc0006a40f0)\n\t/home/me/XDPoSChain/accounts/keystore/keystore.go:204 +0xc6\ncreated by github.com/XinFinOrg/XDPoSChain/accounts/keystore.(*KeyStore).Subscribe in goroutine 13\n\t/home/me/XDPoSChain/accounts/keystore/keystore.go:187 +0x105\n\ngoroutine 16 [select]:\ngithub.com/syndtr/goleveldb/leveldb.(*session).refLoop(0xc0006a41e0)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/session_util.go:189 +0x53c\ncreated by github.com/syndtr/goleveldb/leveldb.newSession in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/session.go:93 +0x296\n\ngoroutine 82 [select, 4215 minutes]:\ngithub.com/syndtr/goleveldb/leveldb.(*DB).compactionError(0xc000585500)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db_compaction.go:91 +0x149\ncreated by github.com/syndtr/goleveldb/leveldb.openDB in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db.go:148 +0x447\n\ngoroutine 83 [select]:\ngithub.com/syndtr/goleveldb/leveldb.(*DB).mpoolDrain(0xc000585500)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db_state.go:101 +0x9c\ncreated by github.com/syndtr/goleveldb/leveldb.openDB in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db.go:149 +0x485\n\ngoroutine 84 [select, 4215 minutes]:\ngithub.com/syndtr/goleveldb/leveldb.(*DB).tCompaction(0xc000585500)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db_compaction.go:836 +0x6b7\ncreated by github.com/syndtr/goleveldb/leveldb.openDB in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db.go:155 +0x4f6\n\ngoroutine 85 [select, 4215 minutes]:\ngithub.com/syndtr/goleveldb/leveldb.(*DB).mCompaction(0xc000585500)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db_compaction.go:773 +0xf3\ncreated by github.com/syndtr/goleveldb/leveldb.openDB in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db.go:156 +0x536\n\ngoroutine 86 [select]:\ngithub.com/XinFinOrg/XDPoSChain/ethdb/leveldb.(*Database).meter(0xc00067a780, 0xb2d05e00)\n\t/home/me/XDPoSChain/ethdb/leveldb/leveldb.go:441 +0x167e\ncreated by github.com/XinFinOrg/XDPoSChain/ethdb/leveldb.NewCustom in goroutine 1\n\t/home/me/XDPoSChain/ethdb/leveldb/leveldb.go:148 +0x96c\n\ngoroutine 87 [select]:\ngithub.com/syndtr/goleveldb/leveldb.(*session).refLoop(0xc0006a42d0)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/session_util.go:189 +0x53c\ncreated by github.com/syndtr/goleveldb/leveldb.newSession in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/session.go:93 +0x296\n\ngoroutine 23 [select]:\ngithub.com/syndtr/goleveldb/leveldb.(*DB).compactionError(0xc001f80700)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db_compaction.go:91 +0x149\ncreated by github.com/syndtr/goleveldb/leveldb.openDB in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db.go:148 +0x447\n\ngoroutine 24 [select]:\ngithub.com/syndtr/goleveldb/leveldb.(*DB).mpoolDrain(0xc001f80700)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db_state.go:101 +0x9c\ncreated by github.com/syndtr/goleveldb/leveldb.openDB in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db.go:149 +0x485\n\ngoroutine 25 [select]:\ngithub.com/syndtr/goleveldb/leveldb.(*DB).tCompaction(0xc001f80700)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db_compaction.go:836 +0x6b7\ncreated by github.com/syndtr/goleveldb/leveldb.openDB in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db.go:155 +0x4f6\n\ngoroutine 26 [select]:\ngithub.com/syndtr/goleveldb/leveldb.(*DB).mCompaction(0xc001f80700)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db_compaction.go:773 +0xf3\ncreated by github.com/syndtr/goleveldb/leveldb.openDB in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db.go:156 +0x536\n\ngoroutine 27 [select]:\ngithub.com/XinFinOrg/XDPoSChain/ethdb/leveldb.(*Database).meter(0xc00067a6e0, 0xb2d05e00)\n\t/home/me/XDPoSChain/ethdb/leveldb/leveldb.go:441 +0x167e\ncreated by github.com/XinFinOrg/XDPoSChain/ethdb/leveldb.NewCustom in goroutine 1\n\t/home/me/XDPoSChain/ethdb/leveldb/leveldb.go:148 +0x96c\n\ngoroutine 29 [chan receive]:\ngithub.com/XinFinOrg/XDPoSChain/consensus/XDPoS/engines/engine_v2.(*XDPoS_v2).periodicJob.func1()\n\t/home/me/XDPoSChain/consensus/XDPoS/engines/engine_v2/engine.go:1009 +0x68\ncreated by github.com/XinFinOrg/XDPoSChain/consensus/XDPoS/engines/engine_v2.(*XDPoS_v2).periodicJob in goroutine 1\n\t/home/me/XDPoSChain/consensus/XDPoS/engines/engine_v2/engine.go:1005 +0x4f\n\ngoroutine 30 [select, 44 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*ChainIndexer).updateLoop(0xc000000600)\n\t/home/me/XDPoSChain/core/chain_indexer.go:280 +0xc9\ncreated by github.com/XinFinOrg/XDPoSChain/core.NewChainIndexer in goroutine 1\n\t/home/me/XDPoSChain/core/chain_indexer.go:114 +0x2d8\n\ngoroutine 31 [select]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*BlockChain).futureBlocksLoop(0xc000235008)\n\t/home/me/XDPoSChain/core/blockchain.go:2477 +0xe8\ncreated by github.com/XinFinOrg/XDPoSChain/core.NewBlockChain in goroutine 1\n\t/home/me/XDPoSChain/core/blockchain.go:311 +0x1648\n\ngoroutine 33 [select]:\ngithub.com/XinFinOrg/XDPoSChain/common/countdown.(*CountdownTimer).startTimer(0xc019058c30, {0x15dbda0, 0xc000235008}, 0xb73df6, 0xb73df5)\n\t/home/me/XDPoSChain/common/countdown/countdown.go:72 +0x155\ncreated by github.com/XinFinOrg/XDPoSChain/common/countdown.(*CountdownTimer).Reset in goroutine 1\n\t/home/me/XDPoSChain/common/countdown/countdown.go:59 +0xd5\n\ngoroutine 99 [select]:\ngithub.com/XinFinOrg/XDPoSChain/core.(*ChainIndexer).eventLoop(0xc000000600, 0xc0198dc008, 0xc000246e70, {0x19ef138?, 0xc01997c9a8?})\n\t/home/me/XDPoSChain/core/chain_indexer.go:198 +0x205\ncreated by github.com/XinFinOrg/XDPoSChain/core.(*ChainIndexer).Start in goroutine 1\n\t/home/me/XDPoSChain/core/chain_indexer.go:139 +0xe6\n\ngoroutine 100 [select]:\ngithub.com/XinFinOrg/XDPoSChain/core/txpool.(*TxPool).scheduleReorgLoop(0xc00021aa00)\n\t/home/me/XDPoSChain/core/txpool/txpool.go:1244 +0x2cc\ncreated by github.com/XinFinOrg/XDPoSChain/core/txpool.NewTxPool in goroutine 1\n\t/home/me/XDPoSChain/core/txpool/txpool.go:338 +0x86f\n\ngoroutine 101 [select]:\ngithub.com/XinFinOrg/XDPoSChain/core/txpool.(*TxPool).loop(0xc00021aa00)\n\t/home/me/XDPoSChain/core/txpool/txpool.go:382 +0x2b7\ncreated by github.com/XinFinOrg/XDPoSChain/core/txpool.NewTxPool in goroutine 1\n\t/home/me/XDPoSChain/core/txpool/txpool.go:355 +0xb4e\n\ngoroutine 102 [select]:\ngithub.com/XinFinOrg/XDPoSChain/core/txpool.(*OrderPool).loop(0xc019078b60)\n\t/home/me/XDPoSChain/core/txpool/order_pool.go:222 +0x254\ncreated by github.com/XinFinOrg/XDPoSChain/core/txpool.NewOrderPool in goroutine 1\n\t/home/me/XDPoSChain/core/txpool/order_pool.go:195 +0x6a9\n\ngoroutine 103 [select]:\ngithub.com/XinFinOrg/XDPoSChain/core/txpool.(*LendingPool).loop(0xc019078d00)\n\t/home/me/XDPoSChain/core/txpool/lending_pool.go:214 +0x25f\ncreated by github.com/XinFinOrg/XDPoSChain/core/txpool.NewLendingPool in goroutine 1\n\t/home/me/XDPoSChain/core/txpool/lending_pool.go:186 +0x6a9\n\ngoroutine 104 [select]:\ngithub.com/XinFinOrg/XDPoSChain/eth/downloader.(*Downloader).qosTuner(0xc019078ea0)\n\t/home/me/XDPoSChain/eth/downloader/downloader.go:1780 +0x310\ncreated by github.com/XinFinOrg/XDPoSChain/eth/downloader.New in goroutine 1\n\t/home/me/XDPoSChain/eth/downloader/downloader.go:238 +0x465\n\ngoroutine 105 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth/downloader.(*Downloader).stateFetcher(0xc019078ea0)\n\t/home/me/XDPoSChain/eth/downloader/statesync.go:82 +0x8b\ncreated by github.com/XinFinOrg/XDPoSChain/eth/downloader.New in goroutine 1\n\t/home/me/XDPoSChain/eth/downloader/downloader.go:239 +0x4a5\n\ngoroutine 106 [select]:\ngithub.com/XinFinOrg/XDPoSChain/miner.(*worker).update(0xc00021ac00)\n\t/home/me/XDPoSChain/miner/worker.go:314 +0x595\ncreated by github.com/XinFinOrg/XDPoSChain/miner.newWorker in goroutine 1\n\t/home/me/XDPoSChain/miner/worker.go:183 +0x4f6\n\ngoroutine 107 [chan receive, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/miner.(*worker).wait(0xc00021ac00)\n\t/home/me/XDPoSChain/miner/worker.go:400 +0x6f\ncreated by github.com/XinFinOrg/XDPoSChain/miner.newWorker in goroutine 1\n\t/home/me/XDPoSChain/miner/worker.go:185 +0x536\n\ngoroutine 88 [select]:\ngithub.com/XinFinOrg/XDPoSChain/miner.(*worker).update.func1()\n\t/home/me/XDPoSChain/miner/worker.go:294 +0xb3\ncreated by github.com/XinFinOrg/XDPoSChain/miner.(*worker).update in goroutine 106\n\t/home/me/XDPoSChain/miner/worker.go:291 +0x3a9\n\ngoroutine 108 [chan receive, 1692 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/miner.(*Miner).update(0xc019059450)\n\t/home/me/XDPoSChain/miner/miner.go:87 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/miner.New in goroutine 1\n\t/home/me/XDPoSChain/miner/miner.go:76 +0x218\n\ngoroutine 114 [chan receive]:\ngithub.com/XinFinOrg/XDPoSChain/eth/gasprice.NewOracle.func1()\n\t/home/me/XDPoSChain/eth/gasprice/gasprice.go:125 +0x72\ncreated by github.com/XinFinOrg/XDPoSChain/eth/gasprice.NewOracle in goroutine 1\n\t/home/me/XDPoSChain/eth/gasprice/gasprice.go:123 +0x9f1\n\ngoroutine 115 [select, 1692 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth/downloader.(*DownloaderAPI).eventLoop(0xc0006b40c0)\n\t/home/me/XDPoSChain/eth/downloader/api.go:63 +0x1db\ncreated by github.com/XinFinOrg/XDPoSChain/eth/downloader.NewDownloaderAPI in goroutine 1\n\t/home/me/XDPoSChain/eth/downloader/api.go:49 +0xe5\n\ngoroutine 116 [select]:\ngithub.com/XinFinOrg/XDPoSChain/eth/filters.(*EventSystem).eventLoop(0xc019bb8000)\n\t/home/me/XDPoSChain/eth/filters/filter_system.go:575 +0x40c\ncreated by github.com/XinFinOrg/XDPoSChain/eth/filters.NewEventSystem in goroutine 1\n\t/home/me/XDPoSChain/eth/filters/filter_system.go:250 +0x34c\n\ngoroutine 117 [chan receive]:\ngithub.com/XinFinOrg/XDPoSChain/eth/filters.(*FilterAPI).timeoutLoop(0xc019b8e1e0, 0x28?)\n\t/home/me/XDPoSChain/eth/filters/api.go:82 +0x45\ncreated by github.com/XinFinOrg/XDPoSChain/eth/filters.NewFilterAPI in goroutine 1\n\t/home/me/XDPoSChain/eth/filters/api.go:71 +0xe5\n\ngoroutine 118 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p/nat.Map({0x19f4818, 0xc000219b00}, 0xc019b9c540, {0x15ecfa1, 0x3}, 0x96f5, 0x96f5, {0x16038b8, 0x12})\n\t/home/me/XDPoSChain/p2p/nat/nat.go:114 +0x446\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).Start in goroutine 1\n\t/home/me/XDPoSChain/p2p/server.go:474 +0x647\n\ngoroutine 134 [select, 5 minutes]:\ngithub.com/syndtr/goleveldb/leveldb.(*session).refLoop(0xc019a44ff0)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/session_util.go:189 +0x53c\ncreated by github.com/syndtr/goleveldb/leveldb.newSession in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/session.go:93 +0x296\n\ngoroutine 39889640 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa92342d000, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc026270f80?, 0xc0751b3700?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc026270f80, {0xc0751b3700, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc026270f80, {0xc0751b3700?, 0x7fa92342d110?, 0x41b3e6?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc057c8fd70, {0xc0751b3700?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc057c8fd70}, {0xc0751b3700, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc05ed201c0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc05cdd1e00)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc06eef6850, 0xc0862881c0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39889629\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 36558100 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc04e3852d0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 36558093\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 147 [select, 15 minutes]:\ngithub.com/syndtr/goleveldb/leveldb.(*DB).compactionError(0xc019a6b880)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db_compaction.go:91 +0x149\ncreated by github.com/syndtr/goleveldb/leveldb.openDB in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db.go:148 +0x447\n\ngoroutine 148 [select]:\ngithub.com/syndtr/goleveldb/leveldb.(*DB).mpoolDrain(0xc019a6b880)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db_state.go:101 +0x9c\ncreated by github.com/syndtr/goleveldb/leveldb.openDB in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db.go:149 +0x485\n\ngoroutine 149 [select, 15 minutes]:\ngithub.com/syndtr/goleveldb/leveldb.(*DB).tCompaction(0xc019a6b880)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db_compaction.go:836 +0x6b7\ncreated by github.com/syndtr/goleveldb/leveldb.openDB in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db.go:155 +0x4f6\n\ngoroutine 150 [select, 15 minutes]:\ngithub.com/syndtr/goleveldb/leveldb.(*DB).mCompaction(0xc019a6b880)\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db_compaction.go:773 +0xf3\ncreated by github.com/syndtr/goleveldb/leveldb.openDB in goroutine 1\n\t/home/me/go/pkg/mod/github.com/syndtr/goleveldb@v1.0.1-0.20210819022825-2ae1ddf74ef7/leveldb/db.go:156 +0x536\n\ngoroutine 151 [select, 15 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/p2p/discover.(*nodeDB).expirer(0xc019800ba0)\n\t/home/me/XDPoSChain/p2p/discover/database.go:232 +0xba\ncreated by github.com/XinFinOrg/XDPoSChain/p2p/discover.(*nodeDB).ensureExpirer.func1 in goroutine 1\n\t/home/me/XDPoSChain/p2p/discover/database.go:223 +0x56\n\ngoroutine 152 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p/discover.(*Table).loop(0xc019832000)\n\t/home/me/XDPoSChain/p2p/discover/table.go:407 +0x2f2\ncreated by github.com/XinFinOrg/XDPoSChain/p2p/discover.newTable in goroutine 1\n\t/home/me/XDPoSChain/p2p/discover/table.go:161 +0x5d9\n\ngoroutine 153 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p/discover.(*udp).loop(0xc000253500)\n\t/home/me/XDPoSChain/p2p/discover/udp.go:390 +0x248\ncreated by github.com/XinFinOrg/XDPoSChain/p2p/discover.newUDP in goroutine 1\n\t/home/me/XDPoSChain/p2p/discover/udp.go:267 +0x2ea\n\ngoroutine 154 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa99ad14648, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc019b88100?, 0xc019ad6000?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).ReadFromInet6(0xc019b88100, {0xc019ad6000, 0x500, 0x500}, 0xc019c0ddb0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:275 +0x21c\nnet.(*netFD).readFromInet6(0xc019b88100, {0xc019ad6000?, 0x28?, 0xc019c0ddf0?}, 0x424ccb?)\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:72 +0x25\nnet.(*UDPConn).readFrom(0xc064a59ec0?, {0xc019ad6000?, 0x0?, 0xc064a59ec0?}, 0xc064a59ec0)\n\t/home/me/govm/golang/go-1.23.11/src/net/udpsock_posix.go:59 +0x76\nnet.(*UDPConn).readFromUDP(0xc00ab00030, {0xc019ad6000?, 0x0?, 0xc06b86ab00?}, 0x15f9bba?)\n\t/home/me/govm/golang/go-1.23.11/src/net/udpsock.go:149 +0x30\nnet.(*UDPConn).ReadFromUDP(0xc00ab00030, {0xc019ad6000, 0x500, 0x500})\n\t/home/me/govm/golang/go-1.23.11/src/net/udpsock.go:141 +0x4a\ngithub.com/XinFinOrg/XDPoSChain/p2p/discover.(*udp).readLoop(0xc000253500, 0x0)\n\t/home/me/XDPoSChain/p2p/discover/udp.go:525 +0xe5\ncreated by github.com/XinFinOrg/XDPoSChain/p2p/discover.newUDP in goroutine 1\n\t/home/me/XDPoSChain/p2p/discover/udp.go:268 +0x354\n\ngoroutine 155 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa99ad14418, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc019804480?, 0x900000036?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Accept(0xc019804480)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:620 +0x295\nnet.(*netFD).accept(0xc019804480)\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_unix.go:172 +0x29\nnet.(*TCPListener).accept(0xc019803980)\n\t/home/me/govm/golang/go-1.23.11/src/net/tcpsock_posix.go:159 +0x1e\nnet.(*TCPListener).Accept(0xc019803980)\n\t/home/me/govm/golang/go-1.23.11/src/net/tcpsock.go:372 +0x30\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).listenLoop(0xc00002ea08)\n\t/home/me/XDPoSChain/p2p/server.go:833 +0x509\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).startListening in goroutine 1\n\t/home/me/XDPoSChain/p2p/server.go:558 +0x125\n\ngoroutine 156 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p/nat.Map({0x19f4818, 0xc000219b00}, 0xc019b9c540, {0x15ecf50, 0x3}, 0x96f5, 0x96f5, {0x15fb0d6, 0xc})\n\t/home/me/XDPoSChain/p2p/nat/nat.go:114 +0x446\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).startListening.func1()\n\t/home/me/XDPoSChain/p2p/server.go:563 +0x56\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).startListening in goroutine 1\n\t/home/me/XDPoSChain/p2p/server.go:562 +0x1b3\n\ngoroutine 157 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).run(0xc00002ea08, {0x19f4a10, 0xc01a56e140})\n\t/home/me/XDPoSChain/p2p/server.go:627 +0x4ca\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).Start in goroutine 1\n\t/home/me/XDPoSChain/p2p/server.go:543 +0x126a\n\ngoroutine 39887386 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc0330ef570)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc00a921e00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc00a921e00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0xbc7345d80f90da79?, {0x19ef6b0?, 0xc0330ef570?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39887383\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 158 [IO wait, 4215 minutes]:\ninternal/poll.runtime_pollWait(0x7fa99ad141e8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc019804980?, 0x424ccb?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Accept(0xc019804980)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:620 +0x295\nnet.(*netFD).accept(0xc019804980)\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_unix.go:172 +0x29\nnet.(*UnixListener).accept(0x457f60?)\n\t/home/me/govm/golang/go-1.23.11/src/net/unixsock_posix.go:172 +0x16\nnet.(*UnixListener).Accept(0xc01a648f30)\n\t/home/me/govm/golang/go-1.23.11/src/net/unixsock.go:260 +0x30\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*Server).ServeListener(0xc019867bd0, {0x19f2140, 0xc01a648f30})\n\t/home/me/XDPoSChain/rpc/ipc.go:30 +0x36\ncreated by github.com/XinFinOrg/XDPoSChain/rpc.StartIPCEndpoint in goroutine 1\n\t/home/me/XDPoSChain/rpc/endpoints.go:50 +0x4d8\n\ngoroutine 32599 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc01803db90)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc000121300)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc000121300)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x249ac80?, {0x19ef6b0?, 0xc01803db90?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 32596\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 88696559 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc05ae49ea0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 88696696\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39883874 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc0d76a05b0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39883726\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39887244 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc05e9a2310)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc091e42800)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc091e42800)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x57fdbc6?, {0x19ef6b0?, 0xc05e9a2310?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39887241\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39891799 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc04ee559d0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc00d947100)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc00d947100)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0xc01cc0cf68?, {0x19ef6b0?, 0xc04ee559d0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39891792\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39889502 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc074b1b880)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39889353\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39884393 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc0417d7960)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc045097100)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc045097100)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x57fdbc0?, {0x19ef6b0?, 0xc0417d7960?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39884390\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39887383 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc0330ef650)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc0330ef650)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 79205048 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc03e820e00)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 79205171\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 40278446 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc06a626850)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc046548a00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc046548a00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x57fdd41?, {0x19ef6b0?, 0xc06a626850?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 40278482\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 73901545 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc04515d180)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc046274600)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc046274600)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0xc01a9dc518?, {0x19ef6b0?, 0xc04515d180?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 73901541\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 64979987 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc05e355030)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 64979967\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 55848446 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9221319c0, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc047259580?, 0xc06b4d3f60?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc047259580, {0xc06b4d3f60, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc047259580, {0xc06b4d3f60?, 0x7fa922131ad0?, 0x4af69a?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc05c606c90, {0xc06b4d3f60?, 0x0?, 0x2691020?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc05c606c90}, {0xc06b4d3f60, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc059f07b20)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc0733c3dd0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc059f07f10, 0xc0238351f0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 55848474\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 1726 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa99ad13ea0, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc01a9bd280?, 0xc01bc06000?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc01a9bd280, {0xc01bc06000, 0x1000, 0x1000})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc01a9bd280, {0xc01bc06000?, 0xc04d349aa0?, 0x5032a5?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc01a993820, {0xc01bc06000?, 0x0?, 0xc01bc000f8?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nnet/http.(*connReader).Read(0xc01bc000f0, {0xc01bc06000, 0x1000, 0x1000})\n\t/home/me/govm/golang/go-1.23.11/src/net/http/server.go:798 +0x14b\nbufio.(*Reader).fill(0xc01a9a2d80)\n\t/home/me/govm/golang/go-1.23.11/src/bufio/bufio.go:110 +0x103\nbufio.(*Reader).Peek(0xc01a9a2d80, 0x4)\n\t/home/me/govm/golang/go-1.23.11/src/bufio/bufio.go:148 +0x53\nnet/http.(*conn).serve(0xc01bc02000, {0x19f4f18, 0xc01ab00300})\n\t/home/me/govm/golang/go-1.23.11/src/net/http/server.go:2127 +0x738\ncreated by net/http.(*Server).Serve in goroutine 159\n\t/home/me/govm/golang/go-1.23.11/src/net/http/server.go:3360 +0x485\n\ngoroutine 77726484 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc014a0b2d0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc034fdf900)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc034fdf900)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x58097cc?, {0x19ef6b0?, 0xc014a0b2d0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 77726467\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 42681936 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc07224c770)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc04f34c300)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc04f34c300)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x57fe88e?, {0x19ef6b0?, 0xc07224c770?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 42682120\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 55850000 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa92342d690, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc04ba24a00?, 0xc06ae1ee20?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc04ba24a00, {0xc06ae1ee20, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc04ba24a00, {0xc06ae1ee20?, 0x7fa92342d7a0?, 0x603ec6?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc0d8395950, {0xc06ae1ee20?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc0d8395950}, {0xc06ae1ee20, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0620e10a0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc05ede2ed0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc04c1062a0, 0xc06af012d0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 55849950\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39889353 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc074b1b880)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc074b1b880)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39884390 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc0417d7a40)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc0417d7a40)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 40346502 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc06491b030)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc06491b030)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 74617130 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc058c50b60)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc058c50b60)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39889926 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc03eb475e0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39889821\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 68494199 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa92342cee8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc03f1c4d80?, 0xc06ae1ec80?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc03f1c4d80, {0xc06ae1ec80, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc03f1c4d80, {0xc06ae1ec80?, 0x7fa92342cff8?, 0x1b47b7?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc0329f7cd8, {0xc06ae1ec80?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc0329f7cd8}, {0xc06ae1ec80, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc06d6d6d90)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc061e7f230)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc06d6d72d0, 0xc050b95810)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 68494159\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 40278445 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc06a626930)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 40278482\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 37589431 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc043773c00)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc043773c00)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 36558235 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa92342d9d8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc034601d80?, 0xc0772530a0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc034601d80, {0xc0772530a0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc034601d80, {0xc0772530a0?, 0x7fa92342dae8?, 0x8a1c98?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc06c32fe80, {0xc0772530a0?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc06c32fe80}, {0xc0772530a0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc04e385880)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc0f2ed23f0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc072d26ee0, 0xc072d26fc0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 36558234\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 159 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa99ad14300, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc019805080?, 0x900000036?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Accept(0xc019805080)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:620 +0x295\nnet.(*netFD).accept(0xc019805080)\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_unix.go:172 +0x29\nnet.(*TCPListener).accept(0xc01a67e240)\n\t/home/me/govm/golang/go-1.23.11/src/net/tcpsock_posix.go:159 +0x1e\nnet.(*TCPListener).Accept(0xc01a67e240)\n\t/home/me/govm/golang/go-1.23.11/src/net/tcpsock.go:372 +0x30\nnet/http.(*Server).Serve(0xc01a570960, {0x19f2110, 0xc01a67e240})\n\t/home/me/govm/golang/go-1.23.11/src/net/http/server.go:3330 +0x30c\ncreated by github.com/XinFinOrg/XDPoSChain/node.(*httpServer).start in goroutine 1\n\t/home/me/XDPoSChain/node/rpcstack.go:160 +0x45c\n\ngoroutine 160 [IO wait, 60 minutes]:\ninternal/poll.runtime_pollWait(0x7fa99ad14530, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc019805180?, 0x900000036?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Accept(0xc019805180)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:620 +0x295\nnet.(*netFD).accept(0xc019805180)\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_unix.go:172 +0x29\nnet.(*TCPListener).accept(0xc01a67e280)\n\t/home/me/govm/golang/go-1.23.11/src/net/tcpsock_posix.go:159 +0x1e\nnet.(*TCPListener).Accept(0xc01a67e280)\n\t/home/me/govm/golang/go-1.23.11/src/net/tcpsock.go:372 +0x30\nnet/http.(*Server).Serve(0xc01a570a50, {0x19f2110, 0xc01a67e280})\n\t/home/me/govm/golang/go-1.23.11/src/net/http/server.go:3330 +0x30c\ncreated by github.com/XinFinOrg/XDPoSChain/node.(*httpServer).start in goroutine 1\n\t/home/me/XDPoSChain/node/rpcstack.go:160 +0x45c\n\ngoroutine 161 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 306 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 307 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 308 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 309 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 310 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 311 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 312 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 313 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 314 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 315 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 316 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 317 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 318 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 319 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 320 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers.func1()\n\t/home/me/XDPoSChain/eth/bloombits.go:56 +0xbd\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*Ethereum).startBloomHandlers in goroutine 1\n\t/home/me/XDPoSChain/eth/bloombits.go:54 +0x34\n\ngoroutine 321 [select]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).txBroadcastLoop(0xc0190671e0)\n\t/home/me/XDPoSChain/eth/handler.go:1041 +0xb5\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).Start in goroutine 1\n\t/home/me/XDPoSChain/eth/handler.go:295 +0x1ee\n\ngoroutine 322 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).orderTxBroadcastLoop(0xc0190671e0)\n\t/home/me/XDPoSChain/eth/handler.go:1058 +0x105\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).Start in goroutine 1\n\t/home/me/XDPoSChain/eth/handler.go:296 +0x22a\n\ngoroutine 323 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).lendingTxBroadcastLoop(0xc0190671e0)\n\t/home/me/XDPoSChain/eth/handler.go:1075 +0x105\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).Start in goroutine 1\n\t/home/me/XDPoSChain/eth/handler.go:297 +0x266\n\ngoroutine 324 [chan receive, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).minedBroadcastLoop(...)\n\t/home/me/XDPoSChain/eth/handler.go:1030\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).Start in goroutine 1\n\t/home/me/XDPoSChain/eth/handler.go:300 +0x305\n\ngoroutine 325 [select]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).syncer(0xc0190671e0)\n\t/home/me/XDPoSChain/eth/sync.go:147 +0x18d\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).Start in goroutine 1\n\t/home/me/XDPoSChain/eth/handler.go:303 +0x345\n\ngoroutine 326 [select, 98 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).txsyncLoop(0xc0190671e0)\n\t/home/me/XDPoSChain/eth/sync.go:109 +0x1ba\ncreated by github.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).Start in goroutine 1\n\t/home/me/XDPoSChain/eth/handler.go:304 +0x385\n\ngoroutine 327 [chan receive, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/cmd/utils.StartNode.func1()\n\t/home/me/XDPoSChain/cmd/utils/cmd.go:75 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/cmd/utils.StartNode in goroutine 1\n\t/home/me/XDPoSChain/cmd/utils/cmd.go:71 +0x96\n\ngoroutine 328 [chan receive, 4215 minutes]:\nmain.startNode.func1()\n\t/home/me/XDPoSChain/cmd/XDC/main.go:320 +0x294\ncreated by main.startNode in goroutine 1\n\t/home/me/XDPoSChain/cmd/XDC/main.go:308 +0x349\n\ngoroutine 329 [chan receive, 9 minutes]:\nmain.startNode.func2()\n\t/home/me/XDPoSChain/cmd/XDC/main.go:385 +0x1c7\ncreated by main.startNode in goroutine 1\n\t/home/me/XDPoSChain/cmd/XDC/main.go:351 +0x434\n\ngoroutine 338 [select]:\ngithub.com/XinFinOrg/XDPoSChain/eth/fetcher.(*Fetcher).loop(0xc019a44960)\n\t/home/me/XDPoSChain/eth/fetcher/fetcher.go:329 +0x2e7\ncreated by github.com/XinFinOrg/XDPoSChain/eth/fetcher.(*Fetcher).Start in goroutine 325\n\t/home/me/XDPoSChain/eth/fetcher/fetcher.go:191 +0x4f\n\ngoroutine 339 [select]:\ngithub.com/XinFinOrg/XDPoSChain/eth/bft.(*Bfter).loop(0xc0001c2f80)\n\t/home/me/XDPoSChain/eth/bft/bft_handler.go:188 +0x94\ncreated by github.com/XinFinOrg/XDPoSChain/eth/bft.(*Bfter).Start in goroutine 325\n\t/home/me/XDPoSChain/eth/bft/bft_handler.go:180 +0x4f\n\ngoroutine 341 [syscall, 4215 minutes]:\nos/signal.signal_recv()\n\t/home/me/govm/golang/go-1.23.11/src/runtime/sigqueue.go:152 +0x29\nos/signal.loop()\n\t/home/me/govm/golang/go-1.23.11/src/os/signal/signal_unix.go:23 +0x13\ncreated by os/signal.Notify.func1.1 in goroutine 327\n\t/home/me/govm/golang/go-1.23.11/src/os/signal/signal.go:151 +0x1f\n\ngoroutine 330 [chan receive, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*Server).ServeCodec(0xc00017e5f0, {0x19f8308, 0xc01a8862d0}, 0xc019848820?)\n\t/home/me/XDPoSChain/rpc/server.go:119 +0x14a\ncreated by github.com/XinFinOrg/XDPoSChain/rpc.DialInProc.func1 in goroutine 328\n\t/home/me/XDPoSChain/rpc/inproc.go:30 +0xb1\n\ngoroutine 331 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*Client).dispatch(0xc019868360, {0x19f8308, 0xc01a886320})\n\t/home/me/XDPoSChain/rpc/client.go:688 +0x28c\ncreated by github.com/XinFinOrg/XDPoSChain/rpc.initClient in goroutine 328\n\t/home/me/XDPoSChain/rpc/client.go:270 +0x385\n\ngoroutine 332 [select, 4215 minutes]:\nnet.(*pipe).read(0xc019805280, {0xc01aea0000, 0x200, 0x487329?})\n\t/home/me/govm/golang/go-1.23.11/src/net/pipe.go:159 +0x155\nnet.(*pipe).Read(0xc01a88c1c0?, {0xc01aea0000?, 0xb58ab9?, 0xc01a631868?})\n\t/home/me/govm/golang/go-1.23.11/src/net/pipe.go:142 +0x1c\nencoding/json.(*Decoder).refill(0xc01ae9a140)\n\t/home/me/govm/golang/go-1.23.11/src/encoding/json/stream.go:165 +0x188\nencoding/json.(*Decoder).readValue(0xc01ae9a140)\n\t/home/me/govm/golang/go-1.23.11/src/encoding/json/stream.go:140 +0x85\nencoding/json.(*Decoder).Decode(0xc01ae9a140, {0x140ea40, 0xc01a634870})\n\t/home/me/govm/golang/go-1.23.11/src/encoding/json/stream.go:63 +0x75\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*jsonCodec).readBatch(0xc01a886320)\n\t/home/me/XDPoSChain/rpc/json.go:236 +0x49\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*Client).read(0xc019868360, {0x19f8308, 0xc01a886320})\n\t/home/me/XDPoSChain/rpc/client.go:761 +0x87\ncreated by github.com/XinFinOrg/XDPoSChain/rpc.(*Client).dispatch in goroutine 331\n\t/home/me/XDPoSChain/rpc/client.go:685 +0x119\n\ngoroutine 333 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*Client).dispatch(0xc019868480, {0x19f8308, 0xc01a8862d0})\n\t/home/me/XDPoSChain/rpc/client.go:688 +0x28c\ncreated by github.com/XinFinOrg/XDPoSChain/rpc.initClient in goroutine 330\n\t/home/me/XDPoSChain/rpc/client.go:270 +0x385\n\ngoroutine 334 [select, 4215 minutes]:\nnet.(*pipe).read(0xc019805200, {0xc01aea0200, 0x200, 0x487329?})\n\t/home/me/govm/golang/go-1.23.11/src/net/pipe.go:159 +0x155\nnet.(*pipe).Read(0xc01a88c1c0?, {0xc01aea0200?, 0xb58ab9?, 0xc01a631868?})\n\t/home/me/govm/golang/go-1.23.11/src/net/pipe.go:142 +0x1c\nencoding/json.(*Decoder).refill(0xc01ae9a000)\n\t/home/me/govm/golang/go-1.23.11/src/encoding/json/stream.go:165 +0x188\nencoding/json.(*Decoder).readValue(0xc01ae9a000)\n\t/home/me/govm/golang/go-1.23.11/src/encoding/json/stream.go:140 +0x85\nencoding/json.(*Decoder).Decode(0xc01ae9a000, {0x140ea40, 0xc01a6348a0})\n\t/home/me/govm/golang/go-1.23.11/src/encoding/json/stream.go:63 +0x75\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*jsonCodec).readBatch(0xc01a8862d0)\n\t/home/me/XDPoSChain/rpc/json.go:236 +0x49\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*Client).read(0xc019868480, {0x19f8308, 0xc01a8862d0})\n\t/home/me/XDPoSChain/rpc/client.go:761 +0x87\ncreated by github.com/XinFinOrg/XDPoSChain/rpc.(*Client).dispatch in goroutine 333\n\t/home/me/XDPoSChain/rpc/client.go:685 +0x119\n\ngoroutine 36558234 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc072d26ee0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc072d26ee0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 789 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc01ad1aaf0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc019bd0800)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc019bd0800)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x28?, {0x19ef6b0?, 0xc01ad1aaf0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 778\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 73858733 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc05acfa930)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc05acfa930)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 81614125 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc070661c70)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc070661c70)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39891781 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc04ee54e70)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39891779\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39887241 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc05e9a23f0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc05e9a23f0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 76137458 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc07b1b93b0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 76131744\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 40278444 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa921f69520, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc0266cfa00?, 0xc0751b3d00?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc0266cfa00, {0xc0751b3d00, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc0266cfa00, {0xc0751b3d00?, 0x7fa921f69630?, 0x5f61d1?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc04cf376e0, {0xc0751b3d00?, 0x0?, 0xc000506008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc04cf376e0}, {0xc0751b3d00, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc06a6265b0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc053c513e0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc06a626930, 0xc057f9a850)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 40278482\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 42681742 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc056350930)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc076f57600)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc076f57600)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6c?, {0x19ef6b0?, 0xc056350930?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 42682048\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39955 [select, 9 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*Client).dispatch(0xc01c4e70e0, {0x19f8308, 0xc0308fcd70})\n\t/home/me/XDPoSChain/rpc/client.go:688 +0x28c\ncreated by github.com/XinFinOrg/XDPoSChain/rpc.initClient in goroutine 41536\n\t/home/me/XDPoSChain/rpc/client.go:270 +0x385\n\ngoroutine 64979988 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc05e354ee0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc03ec1e700)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc03ec1e700)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6c?, {0x19ef6b0?, 0xc05e354ee0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 64979967\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39889603 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc02874ad20)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc02874ad20)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39889501 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa92342ccb8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc026355080?, 0xc0751b34c0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc026355080, {0xc0751b34c0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc026355080, {0xc0751b34c0?, 0x7fa92342cdc8?, 0x14e6dd?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc0ff82d738, {0xc0751b34c0?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc0ff82d738}, {0xc0751b34c0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc057f9b420)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc0780ede90)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc074b1b880, 0xc055026770)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39889353\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 40586545 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc00fad8690)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc04f34d200)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc04f34d200)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x57fdea6?, {0x19ef6b0?, 0xc00fad8690?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 40586266\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39887243 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc05e9a23f0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39887241\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 76131744 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc07b1b93b0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc07b1b93b0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 32667 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc00bbdb810)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc0265f6800)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc0265f6800)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0xc019832000?, {0x19ef6b0?, 0xc00bbdb810?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 32664\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 73901541 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc04515d260)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc04515d260)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39889925 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9807f03d0, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc0267d8380?, 0xc060a1a660?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc0267d8380, {0xc060a1a660, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc0267d8380, {0xc060a1a660?, 0x7fa9807f04e0?, 0x567f51?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc062b23e18, {0xc060a1a660?, 0x1?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc062b23e18}, {0xc060a1a660, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc062009570)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc045c7eb70)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc03eb475e0, 0xc072b04230)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39889821\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 42681741 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc056350a80)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 42682048\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 68494159 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc06d6d72d0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc06d6d72d0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 68494201 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc06d6d71f0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc01b899a00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc01b899a00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x5806538?, {0x19ef6b0?, 0xc06d6d71f0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 68494159\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 32666 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc00bbdb8f0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 32664\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 773 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa99ad140d0, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc01ad3a200?, 0xc068f30b80?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc01ad3a200, {0xc068f30b80, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc01ad3a200, {0xc068f30b80?, 0x7fa99ad141e0?, 0x1c05e2?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc01ad0a968, {0xc068f30b80?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc01ad0a968}, {0xc068f30b80, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc01ad1a2a0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc01ad00960)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc01ad1a5b0, 0xc01ad1a690)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 772\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39883864 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc058708070)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc058708070)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 788 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc01ad1abd0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 778\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 774 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc01ad1a5b0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 772\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 76135818 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc07b1b8d20)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc03d319800)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc03d319800)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0xc00021aa90?, {0x19ef6b0?, 0xc07b1b8d20?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 76131742\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 79284105 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc03e2abc70)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 79283980\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 36558101 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc04e3851f0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc09eb1b700)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc09eb1b700)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6c?, {0x19ef6b0?, 0xc04e3851f0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 36558093\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 778 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc01ad1abd0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc01ad1abd0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39889821 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc03eb475e0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc03eb475e0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 79284116 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc068d4ea10)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc0420d9d00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc0420d9d00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x4184e0?, {0x19ef6b0?, 0xc068d4ea10?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 79284083\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 40586544 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc00fad8770)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 40586266\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 73901555 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc04515ca80)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 73901538\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 37589206 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa99ad13b58, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc03595bf00?, 0xc06ae1e360?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc03595bf00, {0xc06ae1e360, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc03595bf00, {0xc06ae1e360?, 0x7fa99ad13c68?, 0x3a9dbd?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc050485788, {0xc06ae1e360?, 0x0?, 0xc000580708?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc050485788}, {0xc06ae1e360, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0437738f0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc05a071020)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc043773c00, 0xc08fd0ed20)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 37589431\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 63239082 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc07b1b9b90)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc07b1b9b90)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 81614218 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc070661c70)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 81614125\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 775 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc01ad1a4d0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc01ad70100)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc01ad70100)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0xc019832000?, {0x19ef6b0?, 0xc01ad1a4d0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 772\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39884391 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa922131bf0, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc054c1fc00?, 0xc063c720a0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc054c1fc00, {0xc063c720a0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc054c1fc00, {0xc063c720a0?, 0x7fa922131d00?, 0x885209?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc043893f78, {0xc063c720a0?, 0xc076be4a50?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc043893f78}, {0xc063c720a0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0417d7650)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc063c0a480)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc0417d7a40, 0xc0417d7b90)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39884390\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39889555 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc0548929a0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc091e42d00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc091e42d00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0xb3938dafa6e2fe1c?, {0x19ef6b0?, 0xc0548929a0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39889319\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39891782 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc04ee54d90)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc091e43500)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc091e43500)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6c?, {0x19ef6b0?, 0xc04ee54d90?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39891779\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 40586749 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc049c11340)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 40586770\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 787 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa99ad13fb8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc01ab56400?, 0xc06faf5c00?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc01ab56400, {0xc06faf5c00, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc01ab56400, {0xc06faf5c00?, 0x7fa99ad140c8?, 0x889c94?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc01ab0aa20, {0xc06faf5c00?, 0x0?, 0xc01ae1c008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc01ab0aa20}, {0xc06faf5c00, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0002a2850)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc01a5d0630)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc01ad1abd0, 0xc0002a29a0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 778\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 37589418 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc08fd0f110)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc065281a00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc065281a00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6c?, {0x19ef6b0?, 0xc08fd0f110?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 37589213\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39884255 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc0530b7ea0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc00f534c00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc00f534c00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0xafa3a72cdc0a3572?, {0x19ef6b0?, 0xc0530b7ea0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39884252\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 40277889 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9807f0da8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc0231c6780?, 0xc0624868e0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc0231c6780, {0xc0624868e0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc0231c6780, {0xc0624868e0?, 0x7fa9807f0eb8?, 0x582801?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc04cf37388, {0xc0624868e0?, 0xc0807afd40?, 0xc000580708?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc04cf37388}, {0xc0624868e0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc042b20690)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc026d75e90)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc042b20a80, 0xc06dbe4150)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 40277664\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 55849950 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc04c1062a0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc04c1062a0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 74617002 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa92342cba0, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc03365d700?, 0xc0751b3820?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc03365d700, {0xc0751b3820, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc03365d700, {0xc0751b3820?, 0x7fa92342ccb0?, 0xa25c8?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc04f9678f0, {0xc0751b3820?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc04f9678f0}, {0xc0751b3820, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc044f0b260)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc0649c0300)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc058c50b60, 0xc041b1dc70)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 74617130\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39883708 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc058708070)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39883864\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39889526 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa921f692f0, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc026620e00?, 0xc073d35800?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc026620e00, {0xc073d35800, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc026620e00, {0xc073d35800?, 0x7fa921f69400?, 0x7ff266?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc061bff340, {0xc073d35800?, 0x0?, 0xc000506708?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc061bff340}, {0xc073d35800, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc074b1b570)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc061c47b90)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc0655ebb20, 0xc055026e00)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39889515\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39887384 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9807f04e8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc01cf91a00?, 0xc0729b5f20?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc01cf91a00, {0xc0729b5f20, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc01cf91a00, {0xc0729b5f20?, 0x7fa9807f05f8?, 0x1c4cb1?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc064d81830, {0xc0729b5f20?, 0x0?, 0xc000580708?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc064d81830}, {0xc0729b5f20, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc050d175e0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc01bfcf9e0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc0330ef650, 0xc0330ef730)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39887383\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 74617003 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc058c50b60)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 74617130\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 79205171 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc03e820e00)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc03e820e00)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 772 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc01ad1a5b0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc01ad1a5b0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 68494166 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc052c66930)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 68494164\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 63238814 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc0575a98f0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 63238854\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39893325 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc012a23650)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc012a23650)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39887385 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc0330ef650)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39887383\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 34568 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth/filters.(*FilterAPI).NewFilter.func1()\n\t/home/me/XDPoSChain/eth/filters/api.go:302 +0xb7\ncreated by github.com/XinFinOrg/XDPoSChain/eth/filters.(*FilterAPI).NewFilter in goroutine 34567\n\t/home/me/XDPoSChain/eth/filters/api.go:300 +0x285\n\ngoroutine 40586770 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc049c11340)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc049c11340)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 32596 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc01803dc70)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc01803dc70)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 74617266 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc0499c23f0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc01c5fe100)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc01c5fe100)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x580874b?, {0x19ef6b0?, 0xc0499c23f0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 74617263\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 63238815 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc0575a9810)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc01bf3b100)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc01bf3b100)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x73eafcf52e2feb10?, {0x19ef6b0?, 0xc0575a9810?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 63238854\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 55850114 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc04c1060e0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc05b947800)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc05b947800)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6c?, {0x19ef6b0?, 0xc04c1060e0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 55849950\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 32665 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa99ad13928, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc01acde680?, 0xc06ae1e240?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc01acde680, {0xc06ae1e240, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc01acde680, {0xc06ae1e240?, 0x7fa99ad13a38?, 0x135c44?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc026be2138, {0xc06ae1e240?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc026be2138}, {0xc06ae1e240, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0266e6ee0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc026bce900)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc00bbdb8f0, 0xc00bbdb9d0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 32664\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39890046 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc06d4150a0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc06d4150a0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39893362 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc01384bab0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc01384bab0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 76135817 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc07b1b8e00)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 76131742\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 76131742 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc07b1b8e00)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc07b1b8e00)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 32597 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9807f0fd8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc01c0c8700?, 0xc08b012880?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc01c0c8700, {0xc08b012880, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc01c0c8700, {0xc08b012880?, 0x7fa9807f10e8?, 0x87f0c4?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc01ad81810, {0xc08b012880?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc01ad81810}, {0xc08b012880, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc01b4fab60)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc018e7b8c0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc01803dc70, 0xc01803dd50)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 32596\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 40586266 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc00fad8770)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc00fad8770)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 40347845 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc06491b030)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 40346502\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 40586750 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc049c11180)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc06de5dd00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc06de5dd00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x3eb3132e56921a7d?, {0x19ef6b0?, 0xc049c11180?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 40586770\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 74617263 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc0499c24d0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc0499c24d0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39890215 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc06d4150a0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39890046\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 55848448 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc059f07dc0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc0633a7e00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc0633a7e00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x58024d1?, {0x19ef6b0?, 0xc059f07dc0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 55848474\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 73901544 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc04515d260)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 73901541\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 55850152 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc0794fa850)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc0794fa850)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39890175 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc03f8bee70)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39890195\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 33395 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth/filters.(*FilterAPI).NewFilter.func1()\n\t/home/me/XDPoSChain/eth/filters/api.go:302 +0xb7\ncreated by github.com/XinFinOrg/XDPoSChain/eth/filters.(*FilterAPI).NewFilter in goroutine 33394\n\t/home/me/XDPoSChain/eth/filters/api.go:300 +0x285\n\ngoroutine 39889527 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc0655ebb20)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39889515\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39893239 [runnable]:\ninternal/poll.runtime_pollWait(0x7fa922132168, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc02f113e80?, 0xc061f6e3e0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc02f113e80, {0xc061f6e3e0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc02f113e80, {0xc061f6e3e0?, 0x7fa922132278?, 0x14a027?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc041896fd8, {0xc061f6e3e0?, 0xc079d5bf50?, 0xc000580708?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc041896fd8}, {0xc061f6e3e0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc09cca5500)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc01074d110)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc01384bab0, 0xc09cca5e30)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39893362\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 88696604 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa92342d118, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc02aa73e00?, 0xc06153d880?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc02aa73e00, {0xc06153d880, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc02aa73e00, {0xc06153d880?, 0x7fa92342d228?, 0x2e4bd1?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc06ee5c3a8, {0xc06153d880?, 0x1?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc06ee5c3a8}, {0xc06153d880, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc05c0dd3b0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc08d8f9a70)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc05c0dd7a0, 0xc05ccf6bd0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 88696709\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39884253 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9221327f8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc05ef85b00?, 0xc06ae1e4a0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc05ef85b00, {0xc06ae1e4a0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc05ef85b00, {0xc06ae1e4a0?, 0x7fa922132908?, 0x20e518?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc05e2e2900, {0xc06ae1e4a0?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc05e2e2900}, {0xc06ae1e4a0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc05d94bf10)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc071673b90)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc084d02000, 0xc084d02150)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39884252\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 37589417 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc08fd0f1f0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 37589213\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 40277664 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc042b20a80)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc042b20a80)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39889515 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc0655ebb20)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc0655ebb20)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 32104 [select, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/eth/filters.(*FilterAPI).NewFilter.func1()\n\t/home/me/XDPoSChain/eth/filters/api.go:302 +0xb7\ncreated by github.com/XinFinOrg/XDPoSChain/eth/filters.(*FilterAPI).NewFilter in goroutine 32103\n\t/home/me/XDPoSChain/eth/filters/api.go:300 +0x285\n\ngoroutine 41500 [select, 9 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*Client).dispatch(0xc030b265a0, {0x19f8308, 0xc030b52230})\n\t/home/me/XDPoSChain/rpc/client.go:688 +0x28c\ncreated by github.com/XinFinOrg/XDPoSChain/rpc.initClient in goroutine 2973\n\t/home/me/XDPoSChain/rpc/client.go:270 +0x385\n\ngoroutine 42682120 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc07224c850)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc07224c850)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 55850138 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa921f68b48, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc04ba24d00?, 0xc0621f7c00?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc04ba24d00, {0xc0621f7c00, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc04ba24d00, {0xc0621f7c00?, 0x7fa921f68c58?, 0x3d737b?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc0d8395970, {0xc0621f7c00?, 0x1?, 0xc000506708?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc0d8395970}, {0xc0621f7c00, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0620e1960)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc05ede3c50)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc0794fa850, 0xc04c107110)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 55850152\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39893241 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc01384b9d0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc06b1fd300)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc06b1fd300)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x57fdbd0?, {0x19ef6b0?, 0xc01384b9d0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39893362\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39889604 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa921f68918, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc0263edc00?, 0xc0744339c0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc0263edc00, {0xc0744339c0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc0263edc00, {0xc0744339c0?, 0x7fa921f68a28?, 0x52858a?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc062b23d30, {0xc0744339c0?, 0x1?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc062b23d30}, {0xc0744339c0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0620085b0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc0674b49c0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc02874ad20, 0xc02874ae00)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39889603\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 40277885 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc05088a540)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 40277672\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 36558237 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc072d26e00)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc04cbcb500)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc04cbcb500)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x57fc76d?, {0x19ef6b0?, 0xc072d26e00?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 36558234\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 88696605 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc05c0dd7a0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 88696709\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 40586748 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa99ad13d88, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc0417e6200?, 0xc074efe2c0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc0417e6200, {0xc074efe2c0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc0417e6200, {0xc074efe2c0?, 0x7fa99ad13e98?, 0x54e2a4?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc06282a2e0, {0xc074efe2c0?, 0x0?, 0x2691020?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc06282a2e0}, {0xc074efe2c0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc049c10d90)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc093f4e660)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc049c11340, 0xc017735dc0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 40586770\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39891780 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9807f0c90, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc02bdbad80?, 0xc06ae1e6e0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc02bdbad80, {0xc06ae1e6e0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc02bdbad80, {0xc06ae1e6e0?, 0x7fa9807f0da0?, 0x1926be?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc054bf3b60, {0xc06ae1e6e0?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc054bf3b60}, {0xc06ae1e6e0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc06e6979d0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc08e6cac00)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc04ee54e70, 0xc04ee54fc0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39891779\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 68494200 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc06d6d72d0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 68494159\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39889629 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc06eef6850)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc06eef6850)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 77726482 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9221324b0, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc03399cc00?, 0xc0623fc1c0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc03399cc00, {0xc0623fc1c0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc03399cc00, {0xc0623fc1c0?, 0x7fa9221325c0?, 0x1d078a?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc0e9037608, {0xc0623fc1c0?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc0e9037608}, {0xc0623fc1c0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0879a3490)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc05c105f20)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc014a0b420, 0xc0879a35e0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 77726467\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39891792 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc04ee55ab0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc04ee55ab0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39890214 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9807f0ec0, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc027095d80?, 0xc06c87af20?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc027095d80, {0xc06c87af20, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc027095d80, {0xc06c87af20?, 0x7fa9807f0fd0?, 0x8800c1?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc051109d18, {0xc06c87af20?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc051109d18}, {0xc06c87af20, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc05067fd50)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc070b61170)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc06d4150a0, 0xc042a7a850)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39890046\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 42681935 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc07224c850)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 42682120\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 32664 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc00bbdb8f0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc00bbdb8f0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 55850140 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc0794fa700)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc01b898900)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc01b898900)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x0?, {0x19ef6b0?, 0xc0794fa700?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 55850152\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39883707 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa921f68c60, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc03a826680?, 0xc0623fc020?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc03a826680, {0xc0623fc020, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc03a826680, {0xc0623fc020?, 0x7fa921f68d70?, 0xbe4bd?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc060ac5bd0, {0xc0623fc020?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc060ac5bd0}, {0xc0623fc020, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc05c605ce0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc08fb9a090)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc058708070, 0xc085b9aaf0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39883864\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 40278482 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc06a626930)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc06a626930)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 37589213 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc08fd0f1f0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc08fd0f1f0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 64979986 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa921f68fa8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc047395600?, 0xc0751b3f40?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc047395600, {0xc0751b3f40, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc047395600, {0xc0751b3f40?, 0x7fa921f690b8?, 0x37c279?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc043456a70, {0xc0751b3f40?, 0x0?, 0xc000506008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc043456a70}, {0xc0751b3f40, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc05e354bd0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc0724ab980)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc05e355030, 0xc05e9f9810)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 64979967\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 40347331 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc04e5aaa80)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc04e5aaa80)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39889641 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc06eef6850)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39889629\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 90297990 [semacquire]:\nsync.runtime_Semacquire(0xc000506508?)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/sema.go:71 +0x25\nsync.(*WaitGroup).Wait(0xc00fad1680?)\n\t/home/me/govm/golang/go-1.23.11/src/sync/waitgroup.go:118 +0x48\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*handler).close(0xc035fde460, {0x19e82a0, 0x2484930}, 0x0)\n\t/home/me/XDPoSChain/rpc/handler.go:318 +0x30a\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*Server).serveSingleRequest(0x14fa340?, {0x19f4f18, 0xc0712108a0}, {0x19f8308, 0xc01f46cff0})\n\t/home/me/XDPoSChain/rpc/server.go:167 +0x15d\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*Server).ServeHTTP(0xc01a6475e0, {0x19f3510, 0xc040ae3960}, 0xc05c247540)\n\t/home/me/XDPoSChain/rpc/http.go:334 +0x352\ngithub.com/XinFinOrg/XDPoSChain/node.newCorsHandler.(*Cors).Handler.func1({0x19f3510, 0xc040ae3960}, 0xc05c247540)\n\t/home/me/go/pkg/mod/github.com/rs/cors@v1.7.0/cors.go:219 +0x17e\nnet/http.HandlerFunc.ServeHTTP(0x0?, {0x19f3510?, 0xc040ae3960?}, 0xc0712107b0?)\n\t/home/me/govm/golang/go-1.23.11/src/net/http/server.go:2220 +0x29\ngithub.com/XinFinOrg/XDPoSChain/node.(*virtualHostHandler).ServeHTTP(0xc01a6344c8, {0x19f3510, 0xc040ae3960}, 0xc05c247540)\n\t/home/me/XDPoSChain/node/rpcstack.go:458 +0x191\ngithub.com/XinFinOrg/XDPoSChain/node.NewHTTPHandlerStack.newGzipHandler.func2({0x19f3510, 0xc040ae3960}, 0xc05c247540)\n\t/home/me/XDPoSChain/node/rpcstack.go:575 +0x118\nnet/http.HandlerFunc.ServeHTTP(0x100c019066b00?, {0x19f3510?, 0xc040ae3960?}, 0xc067cb3dac?)\n\t/home/me/govm/golang/go-1.23.11/src/net/http/server.go:2220 +0x29\ngithub.com/XinFinOrg/XDPoSChain/node.(*httpServer).ServeHTTP(0xc00002ef08, {0x19f3510, 0xc040ae3960}, 0xc05c247540)\n\t/home/me/XDPoSChain/node/rpcstack.go:222 +0x264\nnet/http.serverHandler.ServeHTTP({0x19eff08?}, {0x19f3510?, 0xc040ae3960?}, 0x6?)\n\t/home/me/govm/golang/go-1.23.11/src/net/http/server.go:3210 +0x8e\nnet/http.(*conn).serve(0xc087368870, {0x19f4f18, 0xc01ab00300})\n\t/home/me/govm/golang/go-1.23.11/src/net/http/server.go:2092 +0x5d0\ncreated by net/http.(*Server).Serve in goroutine 159\n\t/home/me/govm/golang/go-1.23.11/src/net/http/server.go:3360 +0x485\n\ngoroutine 37589416 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa99ad13a40, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc02925b800?, 0xc073f41400?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc02925b800, {0xc073f41400, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc02925b800, {0xc073f41400?, 0x7fa99ad13b50?, 0x5b5262?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc05a321700, {0xc073f41400?, 0x0?, 0x2691020?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc05a321700}, {0xc073f41400, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0750c3490)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc07d2d4c90)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc08fd0f1f0, 0xc0750c36c0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 37589213\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 73901543 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa92342d8c0, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc06e439380?, 0xc072713a60?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc06e439380, {0xc072713a60, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc06e439380, {0xc072713a60?, 0x7fa92342d9d0?, 0x2eecd6?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc05689d5e0, {0xc072713a60?, 0x1?, 0xc000506708?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc05689d5e0}, {0xc072713a60, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc041ff4c40)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc076757da0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc04515d260, 0xc04515d340)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 73901541\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 40347846 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc06491aee0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc088c96300)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc088c96300)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0xc019832000?, {0x19ef6b0?, 0xc06491aee0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 40346502\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39887190 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc0715ff110)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc0715ff110)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 36558099 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9807f01a0, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc034601a80?, 0xc06ae1ef40?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc034601a80, {0xc06ae1ef40, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc034601a80, {0xc06ae1ef40?, 0x7fa9807f02b0?, 0x13e223?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc06c32fdd8, {0xc06ae1ef40?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc06c32fdd8}, {0xc06ae1ef40, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc04e384f50)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc06dbbd0b0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc04e3852d0, 0xc0760ba9a0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 36558093\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 40277891 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc042b209a0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc05e3f2b00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc05e3f2b00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0xc019832000?, {0x19ef6b0?, 0xc042b209a0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 40277664\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39887204 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc0715fefc0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc06b1fce00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc06b1fce00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x8affaeda725611e4?, {0x19ef6b0?, 0xc0715fefc0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39887190\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 81614219 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc070661b20)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc03d0c9000)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc03d0c9000)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x580aea9?, {0x19ef6b0?, 0xc070661b20?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 81614125\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39893327 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc012a23650)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39893325\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 63238854 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc0575a98f0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc0575a98f0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39887203 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc0715ff110)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39887190\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39889503 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc074b1b7a0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc091e42a00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc091e42a00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x57fdbca?, {0x19ef6b0?, 0xc074b1b7a0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39889353\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39887242 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9807f0718, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc01cc7d380?, 0xc0744ffa20?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc01cc7d380, {0xc0744ffa20, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc01cc7d380, {0xc0744ffa20?, 0x7fa9807f0828?, 0x8b20e9?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc062b238e0, {0xc0744ffa20?, 0x1?, 0xc000506708?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc062b238e0}, {0xc0744ffa20, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc012177650)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc0441f7530)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc05e9a23f0, 0xc05e9a24d0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39887241\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 40346682 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc04e5aa930)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc043ef3a00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc043ef3a00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0xc019832000?, {0x19ef6b0?, 0xc04e5aa930?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 40347331\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 79205047 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa921f691d8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc02de71600?, 0xc0623fc2e0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc02de71600, {0xc0623fc2e0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc02de71600, {0xc0623fc2e0?, 0x7fa921f692e8?, 0x178daa?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc06ccaecb8, {0xc0623fc2e0?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc06ccaecb8}, {0xc0623fc2e0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc03e820700)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc02fbb8db0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc03e820e00, 0xc078e6df10)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 79205171\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 41537 [IO wait, 9 minutes]:\ninternal/poll.runtime_pollWait(0x7fa9807f0a60, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc03052e580?, 0xc033570001?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc03052e580, {0xc033570001, 0x5ff, 0x5ff})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc03052e580, {0xc033570001?, 0x424a05?, 0xc0711e3618?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc030b50010, {0xc033570001?, 0xc06a89f0e0?, 0x16?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nencoding/json.(*Decoder).refill(0xc030b47400)\n\t/home/me/govm/golang/go-1.23.11/src/encoding/json/stream.go:165 +0x188\nencoding/json.(*Decoder).readValue(0xc030b47400)\n\t/home/me/govm/golang/go-1.23.11/src/encoding/json/stream.go:140 +0x85\nencoding/json.(*Decoder).Decode(0xc030b47400, {0x140ea40, 0xc06a89f0e0})\n\t/home/me/govm/golang/go-1.23.11/src/encoding/json/stream.go:63 +0x75\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*jsonCodec).readBatch(0xc030b52230)\n\t/home/me/XDPoSChain/rpc/json.go:236 +0x49\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*Client).read(0xc030b265a0, {0x19f8308, 0xc030b52230})\n\t/home/me/XDPoSChain/rpc/client.go:761 +0x87\ncreated by github.com/XinFinOrg/XDPoSChain/rpc.(*Client).dispatch in goroutine 41500\n\t/home/me/XDPoSChain/rpc/client.go:685 +0x119\n\ngoroutine 79284114 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa921f68a30, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc048dce080?, 0xc0751b3940?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc048dce080, {0xc0751b3940, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc048dce080, {0xc0751b3940?, 0x7fa921f68b40?, 0x406871?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc01ac00c50, {0xc0751b3940?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc01ac00c50}, {0xc0751b3940, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc053676bd0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc0621861b0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc068d4eaf0, 0xc0923c9810)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 79284083\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 73858662 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa92342d7a8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc04f8b3580?, 0xc0751b35e0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc04f8b3580, {0xc0751b35e0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc04f8b3580, {0xc0751b35e0?, 0x7fa92342d8b8?, 0x8edf86?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc02d1f5920, {0xc0751b35e0?, 0x0?, 0xc000506008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc02d1f5920}, {0xc0751b35e0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0439e56c0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc0593e9410)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc049182e00, 0xc049182fc0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 73858661\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39889528 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc0655eb9d0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc091e42b00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc091e42b00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0xb3938dafa6e2fe1c?, {0x19ef6b0?, 0xc0655eb9d0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39889515\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 55848474 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc059f07f10)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc059f07f10)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 88696558 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa8f7b446b8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc02aa73d00?, 0xc0623fc3a0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc02aa73d00, {0xc0623fc3a0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc02aa73d00, {0xc0623fc3a0?, 0x7fa8f7b447c8?, 0xad6a?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc02ca5de30, {0xc0623fc3a0?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc02ca5de30}, {0xc0623fc3a0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc05ae49ab0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc0a0973410)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc05ae49ea0, 0xc05c0dd030)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 88696696\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39956 [IO wait, 9 minutes]:\ninternal/poll.runtime_pollWait(0x7fa9807f0948, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc00b56ef80?, 0xc02c5fc601?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc00b56ef80, {0xc02c5fc601, 0x5ff, 0x5ff})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc00b56ef80, {0xc02c5fc601?, 0x424a05?, 0xc0711e3228?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc02dddadc0, {0xc02c5fc601?, 0xc0ab6c7c08?, 0x16?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nencoding/json.(*Decoder).refill(0xc030c64000)\n\t/home/me/govm/golang/go-1.23.11/src/encoding/json/stream.go:165 +0x188\nencoding/json.(*Decoder).readValue(0xc030c64000)\n\t/home/me/govm/golang/go-1.23.11/src/encoding/json/stream.go:140 +0x85\nencoding/json.(*Decoder).Decode(0xc030c64000, {0x140ea40, 0xc0ab6c7c08})\n\t/home/me/govm/golang/go-1.23.11/src/encoding/json/stream.go:63 +0x75\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*jsonCodec).readBatch(0xc0308fcd70)\n\t/home/me/XDPoSChain/rpc/json.go:236 +0x49\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*Client).read(0xc01c4e70e0, {0x19f8308, 0xc0308fcd70})\n\t/home/me/XDPoSChain/rpc/client.go:761 +0x87\ncreated by github.com/XinFinOrg/XDPoSChain/rpc.(*Client).dispatch in goroutine 39955\n\t/home/me/XDPoSChain/rpc/client.go:685 +0x119\n\ngoroutine 32598 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc01803dc70)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 32596\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 41536 [chan receive, 4215 minutes]:\ngithub.com/XinFinOrg/XDPoSChain/rpc.(*Server).ServeCodec(0xc019867bd0, {0x19f8308, 0xc0308fcd70}, 0x1?)\n\t/home/me/XDPoSChain/rpc/server.go:119 +0x14a\ncreated by github.com/XinFinOrg/XDPoSChain/rpc.(*Server).ServeListener in goroutine 158\n\t/home/me/XDPoSChain/rpc/ipc.go:38 +0x214\n\ngoroutine 39883713 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa99ad13c70, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc03d903700?, 0xc0745db060?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc03d903700, {0xc0745db060, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc03d903700, {0xc0745db060?, 0x7fa99ad13d80?, 0x8b0ea9?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc076866e58, {0xc0745db060?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc076866e58}, {0xc0745db060, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0d76a0150)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc02c2b2810)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc0d76a05b0, 0xc085b9ae00)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39883726\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 88696560 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc05ae49dc0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc07abe8a00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc07abe8a00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0xc00ff1ff68?, {0x19ef6b0?, 0xc05ae49dc0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 88696696\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 81615451 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc0781d3810)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 81615459\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 73858664 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc049182b60)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc080f07800)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc080f07800)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x58082b3?, {0x19ef6b0?, 0xc049182b60?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 73858661\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 88696709 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc05c0dd7a0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc05c0dd7a0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39889927 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc03eb47420)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc051e82400)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc051e82400)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6f48ea0edd3321f1?, {0x19ef6b0?, 0xc03eb47420?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39889821\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39891797 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa92342d460, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc02bdbb080?, 0xc0729b4320?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc02bdbb080, {0xc0729b4320, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc02bdbb080, {0xc0729b4320?, 0x7fa92342d570?, 0x56f51e?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc054bf3c48, {0xc0729b4320?, 0x1?, 0x2691020?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc054bf3c48}, {0xc0729b4320, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc052a584d0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc0620c9860)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc04ee55ab0, 0xc032e7a150)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39891792\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 73858663 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc049182e00)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 73858661\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39890195 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc03f8bee70)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc03f8bee70)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 55850139 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc0794fa850)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 55850152\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 74617004 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc058c50a10)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc101095800)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc101095800)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x4d93a3fb0630ea90?, {0x19ef6b0?, 0xc058c50a10?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 74617130\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 68494164 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc052c66930)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc052c66930)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 55850001 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc04c1062a0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 55849950\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 63239053 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa922131ad8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc063e2ad00?, 0xc0626d9540?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc063e2ad00, {0xc0626d9540, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc063e2ad00, {0xc0626d9540?, 0x7fa922131be8?, 0x34b4e4?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc0755d7bc0, {0xc0626d9540?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc0755d7bc0}, {0xc0626d9540, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc030200850)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc055d569f0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc07b1b9b90, 0xc010a2a850)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 63239082\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39889606 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc02874ac40)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc09eb1b400)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc09eb1b400)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x0?, {0x19ef6b0?, 0xc02874ac40?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39889603\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 81615452 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc0781d3730)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc082cfb900)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc082cfb900)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6c?, {0x19ef6b0?, 0xc0781d3730?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 81615459\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 55848447 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc059f07f10)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 55848474\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 73858838 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa8f7b44370, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc05167b400?, 0xc0623fc140?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc05167b400, {0xc0623fc140, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc05167b400, {0xc0623fc140?, 0x7fa8f7b44480?, 0x2377de?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc030b51438, {0xc0623fc140?, 0x0?, 0xc000580708?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc030b51438}, {0xc0623fc140, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc02ad183f0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc05da67b60)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc05acfa930, 0xc0652a7180)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 73858733\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 40346680 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9807f02b8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc045bff900?, 0xc061f6e2c0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc045bff900, {0xc061f6e2c0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc045bff900, {0xc061f6e2c0?, 0x7fa9807f03c8?, 0x3f0517?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc06282ac40, {0xc061f6e2c0?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc06282ac40}, {0xc061f6e2c0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc04e5aa5b0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc07842d080)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc04e5aaa80, 0xc06ec73ab0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 40347331\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39883875 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc0d76a04d0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc045096e00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc045096e00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6c?, {0x19ef6b0?, 0xc0d76a04d0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39883726\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 36558236 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc072d26ee0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 36558234\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 88696696 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc05ae49ea0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc05ae49ea0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39890216 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc06d414ee0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc00f535b00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc00f535b00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6f48ea0edd3321f1?, {0x19ef6b0?, 0xc06d414ee0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39890046\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 76131745 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa92342d348, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc05f968a00?, 0xc05b5b12e0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc05f968a00, {0xc05b5b12e0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc05f968a00, {0xc05b5b12e0?, 0x7fa92342d458?, 0x55fecb?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc04cf37ae8, {0xc05b5b12e0?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc04cf37ae8}, {0xc05b5b12e0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0309f1880)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc07deec480)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc07b1b93b0, 0xc07b1b9500)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 76131744\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 73858661 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc049182e00)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc049182e00)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 40277890 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc042b20a80)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 40277664\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39889554 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc054892a80)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39889319\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39887168 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc06d359490)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc06d359490)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 77726467 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc014a0b420)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc014a0b420)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39893328 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc012a23570)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc000121e00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc000121e00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6c?, {0x19ef6b0?, 0xc012a23570?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39893325\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 81614217 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9221326e0, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc05a151300?, 0xc062284200?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc05a151300, {0xc062284200, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc05a151300, {0xc062284200?, 0x7fa9221327f0?, 0x11463f?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc051262f60, {0xc062284200?, 0x1?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc051262f60}, {0xc062284200, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0706616c0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc04c785500)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc070661c70, 0xc02eca7ce0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 81614125\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39884392 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc0417d7a40)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39884390\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 37589208 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc043773b20)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc050882600)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc050882600)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x57fcdd4?, {0x19ef6b0?, 0xc043773b20?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 37589431\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 73901554 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9807f0b78, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc06deead00?, 0xc068f309a0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc06deead00, {0xc068f309a0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc06deead00, {0xc068f309a0?, 0x7fa9807f0c88?, 0x4920d6?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc05b1b2980, {0xc068f309a0?, 0x0?, 0x2691020?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc05b1b2980}, {0xc068f309a0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc04515c690)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc0674cfcb0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc04515ca80, 0xc060eafb20)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 73901538\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 40346681 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc04e5aaa80)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 40347331\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 73901556 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc04515c8c0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc062c71400)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc062c71400)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x58082f6?, {0x19ef6b0?, 0xc04515c8c0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 73901538\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 40347844 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9221325c8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc041a39500?, 0xc0622847a0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc041a39500, {0xc0622847a0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc041a39500, {0xc0622847a0?, 0x7fa9221326d8?, 0x527f37?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc05f660dd8, {0xc0622847a0?, 0x0?, 0xc000580708?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc05f660dd8}, {0xc0622847a0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc075477880)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc0717a5800)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc06491b030, 0xc06b7db030)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 40346502\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 63239054 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc07b1b9b90)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 63239082\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39887279 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc06d3593b0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc08e463c00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc08e463c00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6c?, {0x19ef6b0?, 0xc06d3593b0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39887168\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 40586543 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa922131d08, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc041fe6500?, 0xc06ae1e920?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc041fe6500, {0xc06ae1e920, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc041fe6500, {0xc06ae1e920?, 0x7fa922131e18?, 0x3a6649?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc064f5d580, {0xc06ae1e920?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc064f5d580}, {0xc06ae1e920, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc00fad84d0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc05a719710)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc00fad8770, 0xc050b95b90)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 40586266\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 90297978 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa922132280, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc05be59280?, 0xc071210791?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc05be59280, {0xc071210791, 0x1, 0x1})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc05be59280, {0xc071210791?, 0x0?, 0x0?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc05e3c8490, {0xc071210791?, 0xc00021ab20?, 0xc04c363cc0?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nnet/http.(*connReader).backgroundRead(0xc071210780)\n\t/home/me/govm/golang/go-1.23.11/src/net/http/server.go:690 +0x37\ncreated by net/http.(*connReader).startBackgroundRead in goroutine 90297990\n\t/home/me/govm/golang/go-1.23.11/src/net/http/server.go:686 +0xb6\n\ngoroutine 73858839 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc05acfa930)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 73858733\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 42682048 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc056350a80)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc056350a80)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39884254 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc084d02000)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39884252\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 79205049 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc03e820d20)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc065280f00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc065280f00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x5809fb3?, {0x19ef6b0?, 0xc03e820d20?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 79205171\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39889537 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa92342cdd0, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc026270d00?, 0xc06ae1ea40?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc026270d00, {0xc06ae1ea40, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc026270d00, {0xc06ae1ea40?, 0x7fa92342cee0?, 0x1c849d?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc057c8fd00, {0xc06ae1ea40?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc057c8fd00}, {0xc06ae1ea40, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc055027260)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc05cdd10b0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc054892a80, 0xc055027ab0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39889319\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 36558093 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc04e3852d0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc04e3852d0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 68494167 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc052c66850)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc01bf3a000)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc01bf3a000)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6c?, {0x19ef6b0?, 0xc052c66850?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 68494164\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 77726483 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc014a0b420)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 77726467\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39893240 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc01384bab0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39893362\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39893326 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa8f7b44a00, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc02f549800?, 0xc074433400?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc02f549800, {0xc074433400, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc02f549800, {0xc074433400?, 0x7fa8f7b44b10?, 0x507dfb?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc0fb3be430, {0xc074433400?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc0fb3be430}, {0xc074433400, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc01384bd50)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc073481200)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc012a23650, 0xc012a23730)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39893325\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39887278 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc06d359490)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39887168\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 64979967 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc05e355030)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc05e355030)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39891779 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc04ee54e70)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc04ee54e70)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 42681740 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa8f7b447d0, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc07553c800?, 0xc0751b3be0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc07553c800, {0xc0751b3be0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc07553c800, {0xc0751b3be0?, 0x7fa8f7b448e0?, 0xeb79d?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc06ed38460, {0xc0751b3be0?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc06ed38460}, {0xc0751b3be0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc056350620)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc05b37cc30)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc056350a80, 0xc03e2ab6c0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 42682048\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 63238813 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa922131e20, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc063e2ab80?, 0xc0751b3a80?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc063e2ab80, {0xc0751b3a80, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc063e2ab80, {0xc0751b3a80?, 0x7fa922131f30?, 0x3a3a33?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc08e55dd38, {0xc0751b3a80?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc08e55dd38}, {0xc0751b3a80, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0575a9570)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc044a9cd80)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc0575a98f0, 0xc0766fa3f0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 63238854\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39889605 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc02874ad20)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39889603\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 76135816 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa8f7b448e8, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc05f968900?, 0xc06ae1e800?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc05f968900, {0xc06ae1e800, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc05f968900, {0xc06ae1e800?, 0x7fa8f7b449f8?, 0xd5731?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc058e6e860, {0xc06ae1e800?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc058e6e860}, {0xc06ae1e800, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc07b1b8a80)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc06c5390e0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc07b1b8e00, 0xc0576582a0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 76131742\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39891798 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc04ee55ab0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39891792\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39883726 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc0d76a05b0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc0d76a05b0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 63239055 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc07b1b9ab0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc05071ce00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc05071ce00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x5804a1f?, {0x19ef6b0?, 0xc07b1b9ab0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 63239082\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 81615459 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc0781d3810)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc0781d3810)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 42681934 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa921f68800, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc07553c900?, 0xc0602d5860?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc07553c900, {0xc0602d5860, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc07553c900, {0xc0602d5860?, 0x7fa921f68910?, 0x70c75f?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc06ed384c8, {0xc0602d5860?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc06ed384c8}, {0xc0602d5860, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc07224c540)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc05b37d410)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc07224c850, 0xc06e9e4cb0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 42682120\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 74617009 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc0499c24d0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 74617263\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 40277884 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa921f69408, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc0231c6680?, 0xc061f6ece0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc0231c6680, {0xc061f6ece0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc0231c6680, {0xc061f6ece0?, 0x7fa921f69518?, 0x402b79?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc04cf37350, {0xc061f6ece0?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc04cf37350}, {0xc061f6ece0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc042b20230)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc026d75110)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc05088a540, 0xc04ee55c70)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 40277672\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39890174 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa922131f38, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc027332a80?, 0xc0751b3e20?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc027332a80, {0xc0751b3e20, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc027332a80, {0xc0751b3e20?, 0x7fa922132048?, 0x1cc93c?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc01ab7bc60, {0xc0751b3e20?, 0x0?, 0xc0422aae08?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc01ab7bc60}, {0xc0751b3e20, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc042a7a070)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc091fe2180)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc03f8bee70, 0xc042a7a3f0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39890195\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 40277672 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc05088a540)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc05088a540)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 79284115 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc068d4eaf0)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 79284083\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 39887202 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9807f0830, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc01ce1f580?, 0xc06ae1eb60?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc01ce1f580, {0xc06ae1eb60, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc01ce1f580, {0xc06ae1eb60?, 0x7fa9807f0940?, 0xc9521?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc05689c788, {0xc06ae1eb60?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc05689c788}, {0xc06ae1eb60, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc07bf8d960)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc074bd0930)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc0715ff110, 0xc07bf8db90)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39887190\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 39889319 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc054892a80)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc054892a80)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39884252 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc084d02000)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc084d02000)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39890176 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc03f8bed90)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc00f535a00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc00f535a00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6f48ea0edd3321f1?, {0x19ef6b0?, 0xc03f8bed90?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39890195\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39883709 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc05c605f10)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc045096b00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc045096b00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x6c?, {0x19ef6b0?, 0xc05c605f10?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39883864\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 81615450 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa922132398, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc05e2a2280?, 0xc06ae1e5c0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc05e2a2280, {0xc06ae1e5c0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc05e2a2280, {0xc06ae1e5c0?, 0x7fa9221324a8?, 0x4a7258?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc01c603858, {0xc06ae1e5c0?, 0x0?, 0xc000580708?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc01c603858}, {0xc06ae1e5c0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc06d4848c0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc05aea1e90)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc0781d3810, 0xc06d485e30)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 81615459\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 37589207 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).pingLoop(0xc043773c00)\n\t/home/me/XDPoSChain/p2p/peer.go:249 +0xfb\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 37589431\n\t/home/me/XDPoSChain/p2p/peer.go:200 +0x11d\n\ngoroutine 74617008 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa921f68d78, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc033d49380?, 0xc06f8f2d20?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc033d49380, {0xc06f8f2d20, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc033d49380, {0xc06f8f2d20?, 0x7fa921f68e88?, 0x65f3f7?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc061bfedb0, {0xc06f8f2d20?, 0x0?, 0xc000506008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc061bfedb0}, {0xc06f8f2d20, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0499c21c0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc050394e40)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc0499c24d0, 0xc057482930)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 74617263\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 73901538 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc04515ca80)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc04515ca80)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 39887277 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa9807f0600, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc01cec6700?, 0xc062b09bc0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc01cec6700, {0xc062b09bc0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc01cec6700, {0xc062b09bc0?, 0x7fa9807f0710?, 0x880517?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc02c3eb9f0, {0xc062b09bc0?, 0x0?, 0xc000580008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc02c3eb9f0}, {0xc062b09bc0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc050d17880)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc056906ba0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc06d359490, 0xc050d179d0)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 39887168\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 73858840 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc05acfa7e0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc05f272400)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc05f272400)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x58082b3?, {0x19ef6b0?, 0xc05acfa7e0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 73858733\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 40277886 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc05088a460)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc05e3f2900)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc05e3f2900)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0xc019832000?, {0x19ef6b0?, 0xc05088a460?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 40277672\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 68494165 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa92342d230, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc03f1c4e80?, 0xc072713be0?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc03f1c4e80, {0xc072713be0, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc03f1c4e80, {0xc072713be0?, 0x7fa92342d340?, 0x46482d?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc068f1a1d8, {0xc072713be0?, 0xc070c4fda0?, 0xc000506008?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc068f1a1d8}, {0xc072713be0, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc060e93810)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc070daa660)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc052c66930, 0xc052c66a10)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 68494164\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n\ngoroutine 79284106 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc03e2abb20)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc043339500)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc043339500)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x0?, {0x19ef6b0?, 0xc03e2abb20?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 79283980\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 39889642 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc06eef6770)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc091e43200)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc091e43200)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x1608cc1?, {0x19ef6b0?, 0xc06eef6770?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 39889629\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 79284083 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc068d4eaf0)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc068d4eaf0)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 88696606 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc05c0dd650)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc03b1e6900)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc03b1e6900)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x580db04?, {0x19ef6b0?, 0xc05c0dd650?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 88696709\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 76137459 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*protoRW).ReadMsg(0xc07b1b91f0)\n\t/home/me/XDPoSChain/p2p/peer.go:425 +0xcd\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handleMsg(0xc0190671e0, 0xc070000f00)\n\t/home/me/XDPoSChain/eth/handler.go:415 +0x66\ngithub.com/XinFinOrg/XDPoSChain/eth.(*ProtocolManager).handle(0xc0190671e0, 0xc070000f00)\n\t/home/me/XDPoSChain/eth/handler.go:404 +0x81e\ngithub.com/XinFinOrg/XDPoSChain/eth.NewProtocolManager.func1(0x27ffa7d23e42445f?, {0x19ef6b0?, 0xc07b1b91f0?})\n\t/home/me/XDPoSChain/eth/handler.go:179 +0x1ca\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols.func1()\n\t/home/me/XDPoSChain/p2p/peer.go:368 +0x3d\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).startProtocols in goroutine 76131744\n\t/home/me/XDPoSChain/p2p/peer.go:367 +0xb2\n\ngoroutine 79283980 [select]:\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run(0xc03e2abc70)\n\t/home/me/XDPoSChain/p2p/peer.go:209 +0x22d\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Server).runPeer(0xc00002ea08, 0xc03e2abc70)\n\t/home/me/XDPoSChain/p2p/server.go:973 +0xea\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Server).run in goroutine 157\n\t/home/me/XDPoSChain/p2p/server.go:702 +0xd13\n\ngoroutine 79284104 [IO wait]:\ninternal/poll.runtime_pollWait(0x7fa92342d578, 0x72)\n\t/home/me/govm/golang/go-1.23.11/src/runtime/netpoll.go:351 +0x85\ninternal/poll.(*pollDesc).wait(0xc0490b4680?, 0xc074efe400?, 0x0)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:84 +0x27\ninternal/poll.(*pollDesc).waitRead(...)\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_poll_runtime.go:89\ninternal/poll.(*FD).Read(0xc0490b4680, {0xc074efe400, 0x20, 0x20})\n\t/home/me/govm/golang/go-1.23.11/src/internal/poll/fd_unix.go:165 +0x27a\nnet.(*netFD).Read(0xc0490b4680, {0xc074efe400?, 0x7fa92342d688?, 0x28bb9c?})\n\t/home/me/govm/golang/go-1.23.11/src/net/fd_posix.go:55 +0x25\nnet.(*conn).Read(0xc01cef9d80, {0xc074efe400?, 0x0?, 0x2691020?})\n\t/home/me/govm/golang/go-1.23.11/src/net/net.go:189 +0x45\nio.ReadAtLeast({0x19e9380, 0xc01cef9d80}, {0xc074efe400, 0x20, 0x20}, 0x20)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:335 +0x90\nio.ReadFull(...)\n\t/home/me/govm/golang/go-1.23.11/src/io/io.go:354\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpxFrameRW).ReadMsg(0xc0536775e0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:660 +0x92\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*rlpx).ReadMsg(0xc07a9a0ba0)\n\t/home/me/XDPoSChain/p2p/rlpx.go:94 +0x127\ngithub.com/XinFinOrg/XDPoSChain/p2p.(*Peer).readLoop(0xc03e2abc70, 0xc053677730)\n\t/home/me/XDPoSChain/p2p/peer.go:269 +0xb4\ncreated by github.com/XinFinOrg/XDPoSChain/p2p.(*Peer).run in goroutine 79283980\n\t/home/me/XDPoSChain/p2p/peer.go:199 +0xdb\n" +} diff --git a/docs/XDPoSChain/debug/debug_traceBlockByNumber_response.json b/docs/XDPoSChain/debug/debug_traceBlockByNumber_response.json new file mode 100644 index 0000000..d6b566e --- /dev/null +++ b/docs/XDPoSChain/debug/debug_traceBlockByNumber_response.json @@ -0,0 +1,179480 @@ +{ + "jsonrpc": "2.0", + "id": 1001, + "result": [ + { + "result": { + "gas": 29474, + "failed": false, + "returnValue": "", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3530, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3527, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3524, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3512, + "gasCost": 2, + "depth": 1, + "stack": [] + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3510, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3507, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3504, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3501, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3491, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3490, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3488, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3485, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3483, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0xc4" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3480, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3477, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x2b" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3467, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3464, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e0000000000000000000000000d7b36002f048aeaf2646f5c080b59b1" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e0000000000000000000000000d7b36002f048aeaf2646f5c080b59b1", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3455, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3452, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0xafb91b2e" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 3449, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0xafb91b2e", + "0xafb91b2e" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3446, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x1" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3443, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x1", + "0x30" + ] + }, + { + "pc": 48, + "op": "JUMPDEST", + "gas": 3433, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e" + ] + }, + { + "pc": 49, + "op": "PUSH2", + "gas": 3432, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e" + ] + }, + { + "pc": 52, + "op": "PUSH2", + "gas": 3429, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43" + ] + }, + { + "pc": 55, + "op": "CALLDATASIZE", + "gas": 3426, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e" + ] + }, + { + "pc": 56, + "op": "PUSH1", + "gas": 3424, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4" + ] + }, + { + "pc": 58, + "op": "PUSH2", + "gas": 3421, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4" + ] + }, + { + "pc": 61, + "op": "JUMP", + "gas": 3418, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xa8" + ] + }, + { + "pc": 168, + "op": "JUMPDEST", + "gas": 3410, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4" + ] + }, + { + "pc": 169, + "op": "PUSH1", + "gas": 3409, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4" + ] + }, + { + "pc": 171, + "op": "DUP1", + "gas": 3406, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0" + ] + }, + { + "pc": 172, + "op": "PUSH1", + "gas": 3403, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 174, + "op": "PUSH1", + "gas": 3400, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 176, + "op": "DUP5", + "gas": 3397, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x60" + ] + }, + { + "pc": 177, + "op": "DUP7", + "gas": 3394, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x60", + "0x4" + ] + }, + { + "pc": 178, + "op": "SUB", + "gas": 3391, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x60", + "0x4", + "0xc4" + ] + }, + { + "pc": 179, + "op": "SLT", + "gas": 3388, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc0" + ] + }, + { + "pc": 180, + "op": "ISZERO", + "gas": 3385, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 181, + "op": "PUSH2", + "gas": 3382, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 184, + "op": "JUMPI", + "gas": 3379, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1", + "0xbd" + ] + }, + { + "pc": 189, + "op": "JUMPDEST", + "gas": 3369, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 190, + "op": "DUP4", + "gas": 3368, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 191, + "op": "CALLDATALOAD", + "gas": 3365, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x4" + ] + }, + { + "pc": 192, + "op": "PUSH1", + "gas": 3362, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd7b36002f048aeaf2646f5c080b59b18059f710" + ] + }, + { + "pc": 194, + "op": "PUSH1", + "gas": 3359, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x1" + ] + }, + { + "pc": 196, + "op": "PUSH1", + "gas": 3356, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x1", + "0x1" + ] + }, + { + "pc": 198, + "op": "SHL", + "gas": 3353, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 199, + "op": "SUB", + "gas": 3350, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 200, + "op": "DUP2", + "gas": 3347, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 201, + "op": "AND", + "gas": 3344, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xd7b36002f048aeaf2646f5c080b59b18059f710" + ] + }, + { + "pc": 202, + "op": "DUP2", + "gas": 3341, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0xd7b36002f048aeaf2646f5c080b59b18059f710" + ] + }, + { + "pc": 203, + "op": "EQ", + "gas": 3338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0xd7b36002f048aeaf2646f5c080b59b18059f710" + ] + }, + { + "pc": 204, + "op": "PUSH2", + "gas": 3335, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x1" + ] + }, + { + "pc": 207, + "op": "JUMPI", + "gas": 3332, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x1", + "0xd4" + ] + }, + { + "pc": 212, + "op": "JUMPDEST", + "gas": 3322, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd7b36002f048aeaf2646f5c080b59b18059f710" + ] + }, + { + "pc": 213, + "op": "SWAP3", + "gas": 3321, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd7b36002f048aeaf2646f5c080b59b18059f710" + ] + }, + { + "pc": 214, + "op": "POP", + "gas": 3318, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 215, + "op": "PUSH1", + "gas": 3316, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0" + ] + }, + { + "pc": 217, + "op": "DUP5", + "gas": 3313, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 218, + "op": "ADD", + "gas": 3310, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 219, + "op": "CALLDATALOAD", + "gas": 3307, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x24" + ] + }, + { + "pc": 220, + "op": "PUSH8", + "gas": 3304, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x60" + ] + }, + { + "pc": 229, + "op": "DUP2", + "gas": 3301, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x60", + "0xffffffffffffffff" + ] + }, + { + "pc": 230, + "op": "GT", + "gas": 3298, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x60", + "0xffffffffffffffff", + "0x60" + ] + }, + { + "pc": 231, + "op": "ISZERO", + "gas": 3295, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x60", + "0x0" + ] + }, + { + "pc": 232, + "op": "PUSH2", + "gas": 3292, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x60", + "0x1" + ] + }, + { + "pc": 235, + "op": "JUMPI", + "gas": 3289, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x60", + "0x1", + "0xf0" + ] + }, + { + "pc": 240, + "op": "JUMPDEST", + "gas": 3279, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x60" + ] + }, + { + "pc": 241, + "op": "DUP5", + "gas": 3278, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x60" + ] + }, + { + "pc": 242, + "op": "ADD", + "gas": 3275, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x60", + "0x4" + ] + }, + { + "pc": 243, + "op": "PUSH1", + "gas": 3272, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 245, + "op": "DUP2", + "gas": 3269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x1f" + ] + }, + { + "pc": 246, + "op": "ADD", + "gas": 3266, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x1f", + "0x64" + ] + }, + { + "pc": 247, + "op": "DUP7", + "gas": 3263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x83" + ] + }, + { + "pc": 248, + "op": "SGT", + "gas": 3260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x83", + "0xc4" + ] + }, + { + "pc": 249, + "op": "PUSH2", + "gas": 3257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x1" + ] + }, + { + "pc": 252, + "op": "JUMPI", + "gas": 3254, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x1", + "0x101" + ] + }, + { + "pc": 257, + "op": "JUMPDEST", + "gas": 3244, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 258, + "op": "DUP1", + "gas": 3243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 259, + "op": "CALLDATALOAD", + "gas": 3240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x64" + ] + }, + { + "pc": 260, + "op": "PUSH8", + "gas": 3237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27" + ] + }, + { + "pc": 269, + "op": "DUP2", + "gas": 3234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0xffffffffffffffff" + ] + }, + { + "pc": 270, + "op": "GT", + "gas": 3231, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0xffffffffffffffff", + "0x27" + ] + }, + { + "pc": 271, + "op": "ISZERO", + "gas": 3228, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x0" + ] + }, + { + "pc": 272, + "op": "PUSH2", + "gas": 3225, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x1" + ] + }, + { + "pc": 275, + "op": "JUMPI", + "gas": 3222, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x1", + "0x11b" + ] + }, + { + "pc": 283, + "op": "JUMPDEST", + "gas": 3212, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27" + ] + }, + { + "pc": 284, + "op": "PUSH1", + "gas": 3211, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27" + ] + }, + { + "pc": 286, + "op": "MLOAD", + "gas": 3208, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x40" + ] + }, + { + "pc": 287, + "op": "PUSH1", + "gas": 3205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80" + ] + }, + { + "pc": 289, + "op": "DUP3", + "gas": 3202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x1f" + ] + }, + { + "pc": 290, + "op": "ADD", + "gas": 3199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x1f", + "0x27" + ] + }, + { + "pc": 291, + "op": "PUSH1", + "gas": 3196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x46" + ] + }, + { + "pc": 293, + "op": "NOT", + "gas": 3193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x46", + "0x1f" + ] + }, + { + "pc": 294, + "op": "SWAP1", + "gas": 3190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x46", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 295, + "op": "DUP2", + "gas": 3187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x46" + ] + }, + { + "pc": 296, + "op": "AND", + "gas": 3184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x46", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 297, + "op": "PUSH1", + "gas": 3181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x40" + ] + }, + { + "pc": 299, + "op": "ADD", + "gas": 3178, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x40", + "0x3f" + ] + }, + { + "pc": 300, + "op": "AND", + "gas": 3175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x7f" + ] + }, + { + "pc": 301, + "op": "DUP2", + "gas": 3172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x60" + ] + }, + { + "pc": 302, + "op": "ADD", + "gas": 3169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x60", + "0x80" + ] + }, + { + "pc": 303, + "op": "PUSH8", + "gas": 3166, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0" + ] + }, + { + "pc": 312, + "op": "DUP2", + "gas": 3163, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0xffffffffffffffff" + ] + }, + { + "pc": 313, + "op": "GT", + "gas": 3160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0xffffffffffffffff", + "0xe0" + ] + }, + { + "pc": 314, + "op": "DUP3", + "gas": 3157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x0" + ] + }, + { + "pc": 315, + "op": "DUP3", + "gas": 3154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x0", + "0x80" + ] + }, + { + "pc": 316, + "op": "LT", + "gas": 3151, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x0", + "0x80", + "0xe0" + ] + }, + { + "pc": 317, + "op": "OR", + "gas": 3148, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x0", + "0x0" + ] + }, + { + "pc": 318, + "op": "ISZERO", + "gas": 3145, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x0" + ] + }, + { + "pc": 319, + "op": "PUSH2", + "gas": 3142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x1" + ] + }, + { + "pc": 322, + "op": "JUMPI", + "gas": 3139, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x1", + "0x14a" + ] + }, + { + "pc": 330, + "op": "JUMPDEST", + "gas": 3129, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0" + ] + }, + { + "pc": 331, + "op": "PUSH1", + "gas": 3128, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0" + ] + }, + { + "pc": 333, + "op": "MSTORE", + "gas": 3125, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x40" + ] + }, + { + "pc": 334, + "op": "DUP2", + "gas": 3122, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80" + ] + }, + { + "pc": 335, + "op": "DUP2", + "gas": 3119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27" + ] + }, + { + "pc": 336, + "op": "MSTORE", + "gas": 3116, + "gasCost": 9, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27", + "0x80" + ] + }, + { + "pc": 337, + "op": "DUP3", + "gas": 3107, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80" + ] + }, + { + "pc": 338, + "op": "DUP3", + "gas": 3104, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x64" + ] + }, + { + "pc": 339, + "op": "ADD", + "gas": 3101, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x64", + "0x27" + ] + }, + { + "pc": 340, + "op": "PUSH1", + "gas": 3098, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x8b" + ] + }, + { + "pc": 342, + "op": "ADD", + "gas": 3095, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x8b", + "0x20" + ] + }, + { + "pc": 343, + "op": "DUP9", + "gas": 3092, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xab" + ] + }, + { + "pc": 344, + "op": "LT", + "gas": 3089, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xab", + "0xc4" + ] + }, + { + "pc": 345, + "op": "ISZERO", + "gas": 3086, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x0" + ] + }, + { + "pc": 346, + "op": "PUSH2", + "gas": 3083, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x1" + ] + }, + { + "pc": 349, + "op": "JUMPI", + "gas": 3080, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x1", + "0x162" + ] + }, + { + "pc": 354, + "op": "JUMPDEST", + "gas": 3070, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80" + ] + }, + { + "pc": 355, + "op": "DUP2", + "gas": 3069, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80" + ] + }, + { + "pc": 356, + "op": "PUSH1", + "gas": 3066, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27" + ] + }, + { + "pc": 358, + "op": "DUP5", + "gas": 3063, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27", + "0x20" + ] + }, + { + "pc": 359, + "op": "ADD", + "gas": 3060, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27", + "0x20", + "0x64" + ] + }, + { + "pc": 360, + "op": "PUSH1", + "gas": 3057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27", + "0x84" + ] + }, + { + "pc": 362, + "op": "DUP4", + "gas": 3054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27", + "0x84", + "0x20" + ] + }, + { + "pc": 363, + "op": "ADD", + "gas": 3051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27", + "0x84", + "0x20", + "0x80" + ] + }, + { + "pc": 364, + "op": "CALLDATACOPY", + "gas": 3048, + "gasCost": 15, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27", + "0x84", + "0xa0" + ] + }, + { + "pc": 365, + "op": "PUSH1", + "gas": 3033, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80" + ] + }, + { + "pc": 367, + "op": "SWAP2", + "gas": 3030, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x0" + ] + }, + { + "pc": 368, + "op": "DUP2", + "gas": 3027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x0", + "0x80", + "0x27" + ] + }, + { + "pc": 369, + "op": "ADD", + "gas": 3024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x0", + "0x80", + "0x27", + "0x80" + ] + }, + { + "pc": 370, + "op": "PUSH1", + "gas": 3021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x0", + "0x80", + "0xa7" + ] + }, + { + "pc": 372, + "op": "ADD", + "gas": 3018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x0", + "0x80", + "0xa7", + "0x20" + ] + }, + { + "pc": 373, + "op": "SWAP2", + "gas": 3015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x0", + "0x80", + "0xc7" + ] + }, + { + "pc": 374, + "op": "SWAP1", + "gas": 3012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0xc7", + "0x80", + "0x0" + ] + }, + { + "pc": 375, + "op": "SWAP2", + "gas": 3009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0xc7", + "0x0", + "0x80" + ] + }, + { + "pc": 376, + "op": "MSTORE", + "gas": 3006, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x80", + "0x0", + "0xc7" + ] + }, + { + "pc": 377, + "op": "SWAP4", + "gas": 3000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x0", + "0x0", + "0x64", + "0x80" + ] + }, + { + "pc": 378, + "op": "SWAP7", + "gas": 2997, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x80", + "0x0", + "0x0", + "0x64", + "0xd7b36002f048aeaf2646f5c080b59b18059f710" + ] + }, + { + "pc": 379, + "op": "SWAP4", + "gas": 2994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0xc4", + "0x4", + "0x80", + "0x0", + "0x0", + "0x64", + "0x3e" + ] + }, + { + "pc": 380, + "op": "SWAP6", + "gas": 2991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0xc4", + "0x4", + "0x3e", + "0x0", + "0x0", + "0x64", + "0x80" + ] + }, + { + "pc": 381, + "op": "POP", + "gas": 2988, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x4", + "0x3e", + "0x0", + "0x0", + "0x64", + "0xc4" + ] + }, + { + "pc": 382, + "op": "POP", + "gas": 2986, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x4", + "0x3e", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 383, + "op": "POP", + "gas": 2984, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x4", + "0x3e", + "0x0", + "0x0" + ] + }, + { + "pc": 384, + "op": "POP", + "gas": 2982, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x4", + "0x3e", + "0x0" + ] + }, + { + "pc": 385, + "op": "PUSH1", + "gas": 2980, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x4", + "0x3e" + ] + }, + { + "pc": 387, + "op": "SWAP2", + "gas": 2977, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x4", + "0x3e", + "0x40" + ] + }, + { + "pc": 388, + "op": "SWAP1", + "gas": 2974, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x40", + "0x3e", + "0x4" + ] + }, + { + "pc": 389, + "op": "SWAP2", + "gas": 2971, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x40", + "0x4", + "0x3e" + ] + }, + { + "pc": 390, + "op": "ADD", + "gas": 2968, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x3e", + "0x4", + "0x40" + ] + }, + { + "pc": 391, + "op": "CALLDATALOAD", + "gas": 2965, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x3e", + "0x44" + ] + }, + { + "pc": 392, + "op": "SWAP1", + "gas": 2962, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x3e", + "0x1" + ] + }, + { + "pc": 393, + "op": "JUMP", + "gas": 2959, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0x3e" + ] + }, + { + "pc": 62, + "op": "JUMPDEST", + "gas": 2951, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1" + ] + }, + { + "pc": 63, + "op": "PUSH2", + "gas": 2950, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1" + ] + }, + { + "pc": 66, + "op": "JUMP", + "gas": 2947, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0x45" + ] + }, + { + "pc": 69, + "op": "JUMPDEST", + "gas": 2939, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1" + ] + }, + { + "pc": 70, + "op": "PUSH1", + "gas": 2938, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1" + ] + }, + { + "pc": 72, + "op": "CALLER", + "gas": 2935, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0x0" + ] + }, + { + "pc": 73, + "op": "SWAP1", + "gas": 2933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0x0", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd" + ] + }, + { + "pc": 74, + "op": "POP", + "gas": 2930, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x0" + ] + }, + { + "pc": 75, + "op": "DUP2", + "gas": 2928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd" + ] + }, + { + "pc": 76, + "op": "DUP5", + "gas": 2925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1" + ] + }, + { + "pc": 77, + "op": "PUSH1", + "gas": 2922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710" + ] + }, + { + "pc": 79, + "op": "PUSH1", + "gas": 2919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x1" + ] + }, + { + "pc": 81, + "op": "PUSH1", + "gas": 2916, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x1", + "0x1" + ] + }, + { + "pc": 83, + "op": "SHL", + "gas": 2913, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 84, + "op": "SUB", + "gas": 2910, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 85, + "op": "AND", + "gas": 2907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 86, + "op": "PUSH32", + "gas": 2904, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710" + ] + }, + { + "pc": 119, + "op": "DUP6", + "gas": 2901, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4" + ] + }, + { + "pc": 120, + "op": "PUSH1", + "gas": 2898, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x80" + ] + }, + { + "pc": 122, + "op": "MLOAD", + "gas": 2895, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x80", + "0x40" + ] + }, + { + "pc": 123, + "op": "PUSH2", + "gas": 2892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x80", + "0xe0" + ] + }, + { + "pc": 126, + "op": "SWAP2", + "gas": 2889, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x80", + "0xe0", + "0x84" + ] + }, + { + "pc": 127, + "op": "SWAP1", + "gas": 2886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0xe0", + "0x80" + ] + }, + { + "pc": 128, + "op": "PUSH2", + "gas": 2883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0" + ] + }, + { + "pc": 131, + "op": "JUMP", + "gas": 2880, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x18a" + ] + }, + { + "pc": 394, + "op": "JUMPDEST", + "gas": 2872, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0" + ] + }, + { + "pc": 395, + "op": "PUSH1", + "gas": 2871, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0" + ] + }, + { + "pc": 397, + "op": "DUP2", + "gas": 2868, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x20" + ] + }, + { + "pc": 398, + "op": "MSTORE", + "gas": 2865, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x20", + "0xe0" + ] + }, + { + "pc": 399, + "op": "PUSH1", + "gas": 2862, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0" + ] + }, + { + "pc": 401, + "op": "DUP3", + "gas": 2859, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0" + ] + }, + { + "pc": 402, + "op": "MLOAD", + "gas": 2856, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x80" + ] + }, + { + "pc": 403, + "op": "DUP1", + "gas": 2853, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27" + ] + }, + { + "pc": 404, + "op": "PUSH1", + "gas": 2850, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x27" + ] + }, + { + "pc": 406, + "op": "DUP5", + "gas": 2847, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x27", + "0x20" + ] + }, + { + "pc": 407, + "op": "ADD", + "gas": 2844, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x27", + "0x20", + "0xe0" + ] + }, + { + "pc": 408, + "op": "MSTORE", + "gas": 2841, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x27", + "0x100" + ] + }, + { + "pc": 409, + "op": "PUSH1", + "gas": 2835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27" + ] + }, + { + "pc": 411, + "op": "JUMPDEST", + "gas": 2832, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0" + ] + }, + { + "pc": 412, + "op": "DUP2", + "gas": 2831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0" + ] + }, + { + "pc": 413, + "op": "DUP2", + "gas": 2828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x27" + ] + }, + { + "pc": 414, + "op": "LT", + "gas": 2825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x27", + "0x0" + ] + }, + { + "pc": 415, + "op": "ISZERO", + "gas": 2822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x1" + ] + }, + { + "pc": 416, + "op": "PUSH2", + "gas": 2819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x0" + ] + }, + { + "pc": 419, + "op": "JUMPI", + "gas": 2816, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x0", + "0x1b8" + ] + }, + { + "pc": 420, + "op": "PUSH1", + "gas": 2806, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0" + ] + }, + { + "pc": 422, + "op": "DUP2", + "gas": 2803, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20" + ] + }, + { + "pc": 423, + "op": "DUP7", + "gas": 2800, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x0" + ] + }, + { + "pc": 424, + "op": "ADD", + "gas": 2797, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x0", + "0x80" + ] + }, + { + "pc": 425, + "op": "DUP2", + "gas": 2794, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 426, + "op": "ADD", + "gas": 2791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x80", + "0x20" + ] + }, + { + "pc": 427, + "op": "MLOAD", + "gas": 2788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0xa0" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 2785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x7b22726f6c65223a2275736572222c2267616d654964223a312c226576656e74" + ] + }, + { + "pc": 430, + "op": "DUP7", + "gas": 2782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x7b22726f6c65223a2275736572222c2267616d654964223a312c226576656e74", + "0x40" + ] + }, + { + "pc": 431, + "op": "DUP5", + "gas": 2779, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x7b22726f6c65223a2275736572222c2267616d654964223a312c226576656e74", + "0x40", + "0xe0" + ] + }, + { + "pc": 432, + "op": "ADD", + "gas": 2776, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x7b22726f6c65223a2275736572222c2267616d654964223a312c226576656e74", + "0x40", + "0xe0", + "0x0" + ] + }, + { + "pc": 433, + "op": "ADD", + "gas": 2773, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x7b22726f6c65223a2275736572222c2267616d654964223a312c226576656e74", + "0x40", + "0xe0" + ] + }, + { + "pc": 434, + "op": "MSTORE", + "gas": 2770, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x7b22726f6c65223a2275736572222c2267616d654964223a312c226576656e74", + "0x120" + ] + }, + { + "pc": 435, + "op": "ADD", + "gas": 2764, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20" + ] + }, + { + "pc": 436, + "op": "PUSH2", + "gas": 2761, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20" + ] + }, + { + "pc": 439, + "op": "JUMP", + "gas": 2758, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x19b" + ] + }, + { + "pc": 411, + "op": "JUMPDEST", + "gas": 2750, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20" + ] + }, + { + "pc": 412, + "op": "DUP2", + "gas": 2749, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20" + ] + }, + { + "pc": 413, + "op": "DUP2", + "gas": 2746, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x27" + ] + }, + { + "pc": 414, + "op": "LT", + "gas": 2743, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x27", + "0x20" + ] + }, + { + "pc": 415, + "op": "ISZERO", + "gas": 2740, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x1" + ] + }, + { + "pc": 416, + "op": "PUSH2", + "gas": 2737, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x0" + ] + }, + { + "pc": 419, + "op": "JUMPI", + "gas": 2734, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x0", + "0x1b8" + ] + }, + { + "pc": 420, + "op": "PUSH1", + "gas": 2724, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20" + ] + }, + { + "pc": 422, + "op": "DUP2", + "gas": 2721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20" + ] + }, + { + "pc": 423, + "op": "DUP7", + "gas": 2718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x20" + ] + }, + { + "pc": 424, + "op": "ADD", + "gas": 2715, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x20", + "0x80" + ] + }, + { + "pc": 425, + "op": "DUP2", + "gas": 2712, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0xa0" + ] + }, + { + "pc": 426, + "op": "ADD", + "gas": 2709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0xa0", + "0x20" + ] + }, + { + "pc": 427, + "op": "MLOAD", + "gas": 2706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0xc0" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 2703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x4964223a33347d00000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 430, + "op": "DUP7", + "gas": 2700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x4964223a33347d00000000000000000000000000000000000000000000000000", + "0x40" + ] + }, + { + "pc": 431, + "op": "DUP5", + "gas": 2697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x4964223a33347d00000000000000000000000000000000000000000000000000", + "0x40", + "0xe0" + ] + }, + { + "pc": 432, + "op": "ADD", + "gas": 2694, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x4964223a33347d00000000000000000000000000000000000000000000000000", + "0x40", + "0xe0", + "0x20" + ] + }, + { + "pc": 433, + "op": "ADD", + "gas": 2691, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x4964223a33347d00000000000000000000000000000000000000000000000000", + "0x40", + "0x100" + ] + }, + { + "pc": 434, + "op": "MSTORE", + "gas": 2688, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x4964223a33347d00000000000000000000000000000000000000000000000000", + "0x140" + ] + }, + { + "pc": 435, + "op": "ADD", + "gas": 2682, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20" + ] + }, + { + "pc": 436, + "op": "PUSH2", + "gas": 2679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40" + ] + }, + { + "pc": 439, + "op": "JUMP", + "gas": 2676, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x19b" + ] + }, + { + "pc": 411, + "op": "JUMPDEST", + "gas": 2668, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40" + ] + }, + { + "pc": 412, + "op": "DUP2", + "gas": 2667, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40" + ] + }, + { + "pc": 413, + "op": "DUP2", + "gas": 2664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x27" + ] + }, + { + "pc": 414, + "op": "LT", + "gas": 2661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x27", + "0x40" + ] + }, + { + "pc": 415, + "op": "ISZERO", + "gas": 2658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x0" + ] + }, + { + "pc": 416, + "op": "PUSH2", + "gas": 2655, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x1" + ] + }, + { + "pc": 419, + "op": "JUMPI", + "gas": 2652, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x1", + "0x1b8" + ] + }, + { + "pc": 440, + "op": "JUMPDEST", + "gas": 2642, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40" + ] + }, + { + "pc": 441, + "op": "POP", + "gas": 2641, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40" + ] + }, + { + "pc": 442, + "op": "PUSH1", + "gas": 2639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27" + ] + }, + { + "pc": 444, + "op": "PUSH1", + "gas": 2636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0" + ] + }, + { + "pc": 446, + "op": "DUP3", + "gas": 2633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x40" + ] + }, + { + "pc": 447, + "op": "DUP6", + "gas": 2630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x40", + "0x27" + ] + }, + { + "pc": 448, + "op": "ADD", + "gas": 2627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x40", + "0x27", + "0xe0" + ] + }, + { + "pc": 449, + "op": "ADD", + "gas": 2624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x40", + "0x107" + ] + }, + { + "pc": 450, + "op": "MSTORE", + "gas": 2621, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x147" + ] + }, + { + "pc": 451, + "op": "PUSH1", + "gas": 2615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27" + ] + }, + { + "pc": 453, + "op": "PUSH1", + "gas": 2612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40" + ] + }, + { + "pc": 455, + "op": "NOT", + "gas": 2609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x1f" + ] + }, + { + "pc": 456, + "op": "PUSH1", + "gas": 2606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 458, + "op": "DUP4", + "gas": 2603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "pc": 459, + "op": "ADD", + "gas": 2600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x27" + ] + }, + { + "pc": 460, + "op": "AND", + "gas": 2597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x46" + ] + }, + { + "pc": 461, + "op": "DUP5", + "gas": 2594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x40" + ] + }, + { + "pc": 462, + "op": "ADD", + "gas": 2591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x40", + "0xe0" + ] + }, + { + "pc": 463, + "op": "ADD", + "gas": 2588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x120" + ] + }, + { + "pc": 464, + "op": "SWAP2", + "gas": 2585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x160" + ] + }, + { + "pc": 465, + "op": "POP", + "gas": 2582, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x160", + "0x27", + "0x0" + ] + }, + { + "pc": 466, + "op": "POP", + "gas": 2580, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x160", + "0x27" + ] + }, + { + "pc": 467, + "op": "SWAP3", + "gas": 2578, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x160" + ] + }, + { + "pc": 468, + "op": "SWAP2", + "gas": 2575, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160", + "0x80", + "0xe0", + "0x84" + ] + }, + { + "pc": 469, + "op": "POP", + "gas": 2572, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160", + "0x84", + "0xe0", + "0x80" + ] + }, + { + "pc": 470, + "op": "POP", + "gas": 2570, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160", + "0x84", + "0xe0" + ] + }, + { + "pc": 471, + "op": "JUMP", + "gas": 2568, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160", + "0x84" + ] + }, + { + "pc": 132, + "op": "JUMPDEST", + "gas": 2560, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160" + ] + }, + { + "pc": 133, + "op": "PUSH1", + "gas": 2559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160" + ] + }, + { + "pc": 135, + "op": "MLOAD", + "gas": 2556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160", + "0x40" + ] + }, + { + "pc": 136, + "op": "DUP1", + "gas": 2553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160", + "0xe0" + ] + }, + { + "pc": 137, + "op": "SWAP2", + "gas": 2550, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160", + "0xe0", + "0xe0" + ] + }, + { + "pc": 138, + "op": "SUB", + "gas": 2547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0xe0", + "0xe0", + "0x160" + ] + }, + { + "pc": 139, + "op": "SWAP1", + "gas": 2544, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0xe0", + "0x80" + ] + }, + { + "pc": 140, + "op": "LOG3", + "gas": 2541, + "gasCost": 2524, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "0x1", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x80", + "0xe0" + ] + }, + { + "pc": 141, + "op": "POP", + "gas": 17, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1", + "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd" + ] + }, + { + "pc": 142, + "op": "POP", + "gas": 15, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80", + "0x1" + ] + }, + { + "pc": 143, + "op": "POP", + "gas": 13, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710", + "0x80" + ] + }, + { + "pc": 144, + "op": "POP", + "gas": 11, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd7b36002f048aeaf2646f5c080b59b18059f710" + ] + }, + { + "pc": 145, + "op": "JUMP", + "gas": 9, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43" + ] + }, + { + "pc": 67, + "op": "JUMPDEST", + "gas": 1, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e" + ] + }, + { + "pc": 68, + "op": "STOP", + "gas": 0, + "gasCost": 0, + "depth": 1, + "stack": [ + "0xafb91b2e" + ] + } + ] + } + }, + { + "result": { + "gas": 29538, + "failed": false, + "returnValue": "", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3530, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3527, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3524, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3512, + "gasCost": 2, + "depth": 1, + "stack": [] + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3510, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3507, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3504, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3501, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3491, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3490, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3488, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3485, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3483, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0xc4" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3480, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3477, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x2b" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3467, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3464, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e000000000000000000000000d18e38e337c62093a7a5bb9b869dea16" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e000000000000000000000000d18e38e337c62093a7a5bb9b869dea16", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3455, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3452, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0xafb91b2e" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 3449, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0xafb91b2e", + "0xafb91b2e" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3446, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x1" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3443, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x1", + "0x30" + ] + }, + { + "pc": 48, + "op": "JUMPDEST", + "gas": 3433, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e" + ] + }, + { + "pc": 49, + "op": "PUSH2", + "gas": 3432, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e" + ] + }, + { + "pc": 52, + "op": "PUSH2", + "gas": 3429, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43" + ] + }, + { + "pc": 55, + "op": "CALLDATASIZE", + "gas": 3426, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e" + ] + }, + { + "pc": 56, + "op": "PUSH1", + "gas": 3424, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4" + ] + }, + { + "pc": 58, + "op": "PUSH2", + "gas": 3421, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4" + ] + }, + { + "pc": 61, + "op": "JUMP", + "gas": 3418, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xa8" + ] + }, + { + "pc": 168, + "op": "JUMPDEST", + "gas": 3410, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4" + ] + }, + { + "pc": 169, + "op": "PUSH1", + "gas": 3409, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4" + ] + }, + { + "pc": 171, + "op": "DUP1", + "gas": 3406, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0" + ] + }, + { + "pc": 172, + "op": "PUSH1", + "gas": 3403, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 174, + "op": "PUSH1", + "gas": 3400, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 176, + "op": "DUP5", + "gas": 3397, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x60" + ] + }, + { + "pc": 177, + "op": "DUP7", + "gas": 3394, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x60", + "0x4" + ] + }, + { + "pc": 178, + "op": "SUB", + "gas": 3391, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x60", + "0x4", + "0xc4" + ] + }, + { + "pc": 179, + "op": "SLT", + "gas": 3388, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc0" + ] + }, + { + "pc": 180, + "op": "ISZERO", + "gas": 3385, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 181, + "op": "PUSH2", + "gas": 3382, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 184, + "op": "JUMPI", + "gas": 3379, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1", + "0xbd" + ] + }, + { + "pc": 189, + "op": "JUMPDEST", + "gas": 3369, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 190, + "op": "DUP4", + "gas": 3368, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 191, + "op": "CALLDATALOAD", + "gas": 3365, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x4" + ] + }, + { + "pc": 192, + "op": "PUSH1", + "gas": 3362, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8" + ] + }, + { + "pc": 194, + "op": "PUSH1", + "gas": 3359, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x1" + ] + }, + { + "pc": 196, + "op": "PUSH1", + "gas": 3356, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x1", + "0x1" + ] + }, + { + "pc": 198, + "op": "SHL", + "gas": 3353, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 199, + "op": "SUB", + "gas": 3350, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 200, + "op": "DUP2", + "gas": 3347, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 201, + "op": "AND", + "gas": 3344, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8" + ] + }, + { + "pc": 202, + "op": "DUP2", + "gas": 3341, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8" + ] + }, + { + "pc": 203, + "op": "EQ", + "gas": 3338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8" + ] + }, + { + "pc": 204, + "op": "PUSH2", + "gas": 3335, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x1" + ] + }, + { + "pc": 207, + "op": "JUMPI", + "gas": 3332, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x1", + "0xd4" + ] + }, + { + "pc": 212, + "op": "JUMPDEST", + "gas": 3322, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8" + ] + }, + { + "pc": 213, + "op": "SWAP3", + "gas": 3321, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8" + ] + }, + { + "pc": 214, + "op": "POP", + "gas": 3318, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 215, + "op": "PUSH1", + "gas": 3316, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0" + ] + }, + { + "pc": 217, + "op": "DUP5", + "gas": 3313, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 218, + "op": "ADD", + "gas": 3310, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 219, + "op": "CALLDATALOAD", + "gas": 3307, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x24" + ] + }, + { + "pc": 220, + "op": "PUSH8", + "gas": 3304, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x60" + ] + }, + { + "pc": 229, + "op": "DUP2", + "gas": 3301, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x60", + "0xffffffffffffffff" + ] + }, + { + "pc": 230, + "op": "GT", + "gas": 3298, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x60", + "0xffffffffffffffff", + "0x60" + ] + }, + { + "pc": 231, + "op": "ISZERO", + "gas": 3295, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x60", + "0x0" + ] + }, + { + "pc": 232, + "op": "PUSH2", + "gas": 3292, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x60", + "0x1" + ] + }, + { + "pc": 235, + "op": "JUMPI", + "gas": 3289, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x60", + "0x1", + "0xf0" + ] + }, + { + "pc": 240, + "op": "JUMPDEST", + "gas": 3279, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x60" + ] + }, + { + "pc": 241, + "op": "DUP5", + "gas": 3278, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x60" + ] + }, + { + "pc": 242, + "op": "ADD", + "gas": 3275, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x60", + "0x4" + ] + }, + { + "pc": 243, + "op": "PUSH1", + "gas": 3272, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 245, + "op": "DUP2", + "gas": 3269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x1f" + ] + }, + { + "pc": 246, + "op": "ADD", + "gas": 3266, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x1f", + "0x64" + ] + }, + { + "pc": 247, + "op": "DUP7", + "gas": 3263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x83" + ] + }, + { + "pc": 248, + "op": "SGT", + "gas": 3260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x83", + "0xc4" + ] + }, + { + "pc": 249, + "op": "PUSH2", + "gas": 3257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x1" + ] + }, + { + "pc": 252, + "op": "JUMPI", + "gas": 3254, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x1", + "0x101" + ] + }, + { + "pc": 257, + "op": "JUMPDEST", + "gas": 3244, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 258, + "op": "DUP1", + "gas": 3243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 259, + "op": "CALLDATALOAD", + "gas": 3240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x64" + ] + }, + { + "pc": 260, + "op": "PUSH8", + "gas": 3237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27" + ] + }, + { + "pc": 269, + "op": "DUP2", + "gas": 3234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0xffffffffffffffff" + ] + }, + { + "pc": 270, + "op": "GT", + "gas": 3231, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0xffffffffffffffff", + "0x27" + ] + }, + { + "pc": 271, + "op": "ISZERO", + "gas": 3228, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x0" + ] + }, + { + "pc": 272, + "op": "PUSH2", + "gas": 3225, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x1" + ] + }, + { + "pc": 275, + "op": "JUMPI", + "gas": 3222, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x1", + "0x11b" + ] + }, + { + "pc": 283, + "op": "JUMPDEST", + "gas": 3212, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27" + ] + }, + { + "pc": 284, + "op": "PUSH1", + "gas": 3211, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27" + ] + }, + { + "pc": 286, + "op": "MLOAD", + "gas": 3208, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x40" + ] + }, + { + "pc": 287, + "op": "PUSH1", + "gas": 3205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80" + ] + }, + { + "pc": 289, + "op": "DUP3", + "gas": 3202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x1f" + ] + }, + { + "pc": 290, + "op": "ADD", + "gas": 3199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x1f", + "0x27" + ] + }, + { + "pc": 291, + "op": "PUSH1", + "gas": 3196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x46" + ] + }, + { + "pc": 293, + "op": "NOT", + "gas": 3193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x46", + "0x1f" + ] + }, + { + "pc": 294, + "op": "SWAP1", + "gas": 3190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x46", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 295, + "op": "DUP2", + "gas": 3187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x46" + ] + }, + { + "pc": 296, + "op": "AND", + "gas": 3184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x46", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 297, + "op": "PUSH1", + "gas": 3181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x40" + ] + }, + { + "pc": 299, + "op": "ADD", + "gas": 3178, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x40", + "0x3f" + ] + }, + { + "pc": 300, + "op": "AND", + "gas": 3175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x7f" + ] + }, + { + "pc": 301, + "op": "DUP2", + "gas": 3172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x60" + ] + }, + { + "pc": 302, + "op": "ADD", + "gas": 3169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x60", + "0x80" + ] + }, + { + "pc": 303, + "op": "PUSH8", + "gas": 3166, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0" + ] + }, + { + "pc": 312, + "op": "DUP2", + "gas": 3163, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0xffffffffffffffff" + ] + }, + { + "pc": 313, + "op": "GT", + "gas": 3160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0xffffffffffffffff", + "0xe0" + ] + }, + { + "pc": 314, + "op": "DUP3", + "gas": 3157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x0" + ] + }, + { + "pc": 315, + "op": "DUP3", + "gas": 3154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x0", + "0x80" + ] + }, + { + "pc": 316, + "op": "LT", + "gas": 3151, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x0", + "0x80", + "0xe0" + ] + }, + { + "pc": 317, + "op": "OR", + "gas": 3148, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x0", + "0x0" + ] + }, + { + "pc": 318, + "op": "ISZERO", + "gas": 3145, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x0" + ] + }, + { + "pc": 319, + "op": "PUSH2", + "gas": 3142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x1" + ] + }, + { + "pc": 322, + "op": "JUMPI", + "gas": 3139, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x1", + "0x14a" + ] + }, + { + "pc": 330, + "op": "JUMPDEST", + "gas": 3129, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0" + ] + }, + { + "pc": 331, + "op": "PUSH1", + "gas": 3128, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0" + ] + }, + { + "pc": 333, + "op": "MSTORE", + "gas": 3125, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xe0", + "0x40" + ] + }, + { + "pc": 334, + "op": "DUP2", + "gas": 3122, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80" + ] + }, + { + "pc": 335, + "op": "DUP2", + "gas": 3119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27" + ] + }, + { + "pc": 336, + "op": "MSTORE", + "gas": 3116, + "gasCost": 9, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27", + "0x80" + ] + }, + { + "pc": 337, + "op": "DUP3", + "gas": 3107, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80" + ] + }, + { + "pc": 338, + "op": "DUP3", + "gas": 3104, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x64" + ] + }, + { + "pc": 339, + "op": "ADD", + "gas": 3101, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x64", + "0x27" + ] + }, + { + "pc": 340, + "op": "PUSH1", + "gas": 3098, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x8b" + ] + }, + { + "pc": 342, + "op": "ADD", + "gas": 3095, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x8b", + "0x20" + ] + }, + { + "pc": 343, + "op": "DUP9", + "gas": 3092, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xab" + ] + }, + { + "pc": 344, + "op": "LT", + "gas": 3089, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0xab", + "0xc4" + ] + }, + { + "pc": 345, + "op": "ISZERO", + "gas": 3086, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x0" + ] + }, + { + "pc": 346, + "op": "PUSH2", + "gas": 3083, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x1" + ] + }, + { + "pc": 349, + "op": "JUMPI", + "gas": 3080, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x1", + "0x162" + ] + }, + { + "pc": 354, + "op": "JUMPDEST", + "gas": 3070, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80" + ] + }, + { + "pc": 355, + "op": "DUP2", + "gas": 3069, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80" + ] + }, + { + "pc": 356, + "op": "PUSH1", + "gas": 3066, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27" + ] + }, + { + "pc": 358, + "op": "DUP5", + "gas": 3063, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27", + "0x20" + ] + }, + { + "pc": 359, + "op": "ADD", + "gas": 3060, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27", + "0x20", + "0x64" + ] + }, + { + "pc": 360, + "op": "PUSH1", + "gas": 3057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27", + "0x84" + ] + }, + { + "pc": 362, + "op": "DUP4", + "gas": 3054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27", + "0x84", + "0x20" + ] + }, + { + "pc": 363, + "op": "ADD", + "gas": 3051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27", + "0x84", + "0x20", + "0x80" + ] + }, + { + "pc": 364, + "op": "CALLDATACOPY", + "gas": 3048, + "gasCost": 15, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x27", + "0x84", + "0xa0" + ] + }, + { + "pc": 365, + "op": "PUSH1", + "gas": 3033, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80" + ] + }, + { + "pc": 367, + "op": "SWAP2", + "gas": 3030, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x27", + "0x80", + "0x0" + ] + }, + { + "pc": 368, + "op": "DUP2", + "gas": 3027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x0", + "0x80", + "0x27" + ] + }, + { + "pc": 369, + "op": "ADD", + "gas": 3024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x0", + "0x80", + "0x27", + "0x80" + ] + }, + { + "pc": 370, + "op": "PUSH1", + "gas": 3021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x0", + "0x80", + "0xa7" + ] + }, + { + "pc": 372, + "op": "ADD", + "gas": 3018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x0", + "0x80", + "0xa7", + "0x20" + ] + }, + { + "pc": 373, + "op": "SWAP2", + "gas": 3015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x0", + "0x80", + "0xc7" + ] + }, + { + "pc": 374, + "op": "SWAP1", + "gas": 3012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0xc7", + "0x80", + "0x0" + ] + }, + { + "pc": 375, + "op": "SWAP2", + "gas": 3009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0xc7", + "0x0", + "0x80" + ] + }, + { + "pc": 376, + "op": "MSTORE", + "gas": 3006, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x80", + "0x0", + "0xc7" + ] + }, + { + "pc": 377, + "op": "SWAP4", + "gas": 3000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x0", + "0x0", + "0x64", + "0x80" + ] + }, + { + "pc": 378, + "op": "SWAP7", + "gas": 2997, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0x3e", + "0xc4", + "0x4", + "0x80", + "0x0", + "0x0", + "0x64", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8" + ] + }, + { + "pc": 379, + "op": "SWAP4", + "gas": 2994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0xc4", + "0x4", + "0x80", + "0x0", + "0x0", + "0x64", + "0x3e" + ] + }, + { + "pc": 380, + "op": "SWAP6", + "gas": 2991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0xc4", + "0x4", + "0x3e", + "0x0", + "0x0", + "0x64", + "0x80" + ] + }, + { + "pc": 381, + "op": "POP", + "gas": 2988, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x4", + "0x3e", + "0x0", + "0x0", + "0x64", + "0xc4" + ] + }, + { + "pc": 382, + "op": "POP", + "gas": 2986, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x4", + "0x3e", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 383, + "op": "POP", + "gas": 2984, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x4", + "0x3e", + "0x0", + "0x0" + ] + }, + { + "pc": 384, + "op": "POP", + "gas": 2982, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x4", + "0x3e", + "0x0" + ] + }, + { + "pc": 385, + "op": "PUSH1", + "gas": 2980, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x4", + "0x3e" + ] + }, + { + "pc": 387, + "op": "SWAP2", + "gas": 2977, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x4", + "0x3e", + "0x40" + ] + }, + { + "pc": 388, + "op": "SWAP1", + "gas": 2974, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x40", + "0x3e", + "0x4" + ] + }, + { + "pc": 389, + "op": "SWAP2", + "gas": 2971, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x40", + "0x4", + "0x3e" + ] + }, + { + "pc": 390, + "op": "ADD", + "gas": 2968, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x3e", + "0x4", + "0x40" + ] + }, + { + "pc": 391, + "op": "CALLDATALOAD", + "gas": 2965, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x3e", + "0x44" + ] + }, + { + "pc": 392, + "op": "SWAP1", + "gas": 2962, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x3e", + "0x1" + ] + }, + { + "pc": 393, + "op": "JUMP", + "gas": 2959, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x3e" + ] + }, + { + "pc": 62, + "op": "JUMPDEST", + "gas": 2951, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1" + ] + }, + { + "pc": 63, + "op": "PUSH2", + "gas": 2950, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1" + ] + }, + { + "pc": 66, + "op": "JUMP", + "gas": 2947, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x45" + ] + }, + { + "pc": 69, + "op": "JUMPDEST", + "gas": 2939, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1" + ] + }, + { + "pc": 70, + "op": "PUSH1", + "gas": 2938, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1" + ] + }, + { + "pc": 72, + "op": "CALLER", + "gas": 2935, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x0" + ] + }, + { + "pc": 73, + "op": "SWAP1", + "gas": 2933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x0", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108" + ] + }, + { + "pc": 74, + "op": "POP", + "gas": 2930, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x0" + ] + }, + { + "pc": 75, + "op": "DUP2", + "gas": 2928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108" + ] + }, + { + "pc": 76, + "op": "DUP5", + "gas": 2925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1" + ] + }, + { + "pc": 77, + "op": "PUSH1", + "gas": 2922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8" + ] + }, + { + "pc": 79, + "op": "PUSH1", + "gas": 2919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x1" + ] + }, + { + "pc": 81, + "op": "PUSH1", + "gas": 2916, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x1", + "0x1" + ] + }, + { + "pc": 83, + "op": "SHL", + "gas": 2913, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 84, + "op": "SUB", + "gas": 2910, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 85, + "op": "AND", + "gas": 2907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 86, + "op": "PUSH32", + "gas": 2904, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8" + ] + }, + { + "pc": 119, + "op": "DUP6", + "gas": 2901, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4" + ] + }, + { + "pc": 120, + "op": "PUSH1", + "gas": 2898, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x80" + ] + }, + { + "pc": 122, + "op": "MLOAD", + "gas": 2895, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x80", + "0x40" + ] + }, + { + "pc": 123, + "op": "PUSH2", + "gas": 2892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x80", + "0xe0" + ] + }, + { + "pc": 126, + "op": "SWAP2", + "gas": 2889, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x80", + "0xe0", + "0x84" + ] + }, + { + "pc": 127, + "op": "SWAP1", + "gas": 2886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0xe0", + "0x80" + ] + }, + { + "pc": 128, + "op": "PUSH2", + "gas": 2883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0" + ] + }, + { + "pc": 131, + "op": "JUMP", + "gas": 2880, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x18a" + ] + }, + { + "pc": 394, + "op": "JUMPDEST", + "gas": 2872, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0" + ] + }, + { + "pc": 395, + "op": "PUSH1", + "gas": 2871, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0" + ] + }, + { + "pc": 397, + "op": "DUP2", + "gas": 2868, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x20" + ] + }, + { + "pc": 398, + "op": "MSTORE", + "gas": 2865, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x20", + "0xe0" + ] + }, + { + "pc": 399, + "op": "PUSH1", + "gas": 2862, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0" + ] + }, + { + "pc": 401, + "op": "DUP3", + "gas": 2859, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0" + ] + }, + { + "pc": 402, + "op": "MLOAD", + "gas": 2856, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x80" + ] + }, + { + "pc": 403, + "op": "DUP1", + "gas": 2853, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27" + ] + }, + { + "pc": 404, + "op": "PUSH1", + "gas": 2850, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x27" + ] + }, + { + "pc": 406, + "op": "DUP5", + "gas": 2847, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x27", + "0x20" + ] + }, + { + "pc": 407, + "op": "ADD", + "gas": 2844, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x27", + "0x20", + "0xe0" + ] + }, + { + "pc": 408, + "op": "MSTORE", + "gas": 2841, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x27", + "0x100" + ] + }, + { + "pc": 409, + "op": "PUSH1", + "gas": 2835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27" + ] + }, + { + "pc": 411, + "op": "JUMPDEST", + "gas": 2832, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0" + ] + }, + { + "pc": 412, + "op": "DUP2", + "gas": 2831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0" + ] + }, + { + "pc": 413, + "op": "DUP2", + "gas": 2828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x27" + ] + }, + { + "pc": 414, + "op": "LT", + "gas": 2825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x27", + "0x0" + ] + }, + { + "pc": 415, + "op": "ISZERO", + "gas": 2822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x1" + ] + }, + { + "pc": 416, + "op": "PUSH2", + "gas": 2819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x0" + ] + }, + { + "pc": 419, + "op": "JUMPI", + "gas": 2816, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x0", + "0x1b8" + ] + }, + { + "pc": 420, + "op": "PUSH1", + "gas": 2806, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0" + ] + }, + { + "pc": 422, + "op": "DUP2", + "gas": 2803, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20" + ] + }, + { + "pc": 423, + "op": "DUP7", + "gas": 2800, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x0" + ] + }, + { + "pc": 424, + "op": "ADD", + "gas": 2797, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x0", + "0x80" + ] + }, + { + "pc": 425, + "op": "DUP2", + "gas": 2794, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 426, + "op": "ADD", + "gas": 2791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x80", + "0x20" + ] + }, + { + "pc": 427, + "op": "MLOAD", + "gas": 2788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0xa0" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 2785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x7b22726f6c65223a2275736572222c2267616d654964223a312c226576656e74" + ] + }, + { + "pc": 430, + "op": "DUP7", + "gas": 2782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x7b22726f6c65223a2275736572222c2267616d654964223a312c226576656e74", + "0x40" + ] + }, + { + "pc": 431, + "op": "DUP5", + "gas": 2779, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x7b22726f6c65223a2275736572222c2267616d654964223a312c226576656e74", + "0x40", + "0xe0" + ] + }, + { + "pc": 432, + "op": "ADD", + "gas": 2776, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x7b22726f6c65223a2275736572222c2267616d654964223a312c226576656e74", + "0x40", + "0xe0", + "0x0" + ] + }, + { + "pc": 433, + "op": "ADD", + "gas": 2773, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x7b22726f6c65223a2275736572222c2267616d654964223a312c226576656e74", + "0x40", + "0xe0" + ] + }, + { + "pc": 434, + "op": "MSTORE", + "gas": 2770, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20", + "0x7b22726f6c65223a2275736572222c2267616d654964223a312c226576656e74", + "0x120" + ] + }, + { + "pc": 435, + "op": "ADD", + "gas": 2764, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x20" + ] + }, + { + "pc": 436, + "op": "PUSH2", + "gas": 2761, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20" + ] + }, + { + "pc": 439, + "op": "JUMP", + "gas": 2758, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x19b" + ] + }, + { + "pc": 411, + "op": "JUMPDEST", + "gas": 2750, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20" + ] + }, + { + "pc": 412, + "op": "DUP2", + "gas": 2749, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20" + ] + }, + { + "pc": 413, + "op": "DUP2", + "gas": 2746, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x27" + ] + }, + { + "pc": 414, + "op": "LT", + "gas": 2743, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x27", + "0x20" + ] + }, + { + "pc": 415, + "op": "ISZERO", + "gas": 2740, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x1" + ] + }, + { + "pc": 416, + "op": "PUSH2", + "gas": 2737, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x0" + ] + }, + { + "pc": 419, + "op": "JUMPI", + "gas": 2734, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x0", + "0x1b8" + ] + }, + { + "pc": 420, + "op": "PUSH1", + "gas": 2724, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20" + ] + }, + { + "pc": 422, + "op": "DUP2", + "gas": 2721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20" + ] + }, + { + "pc": 423, + "op": "DUP7", + "gas": 2718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x20" + ] + }, + { + "pc": 424, + "op": "ADD", + "gas": 2715, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x20", + "0x80" + ] + }, + { + "pc": 425, + "op": "DUP2", + "gas": 2712, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0xa0" + ] + }, + { + "pc": 426, + "op": "ADD", + "gas": 2709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0xa0", + "0x20" + ] + }, + { + "pc": 427, + "op": "MLOAD", + "gas": 2706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0xc0" + ] + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 2703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x4964223a32377d00000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 430, + "op": "DUP7", + "gas": 2700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x4964223a32377d00000000000000000000000000000000000000000000000000", + "0x40" + ] + }, + { + "pc": 431, + "op": "DUP5", + "gas": 2697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x4964223a32377d00000000000000000000000000000000000000000000000000", + "0x40", + "0xe0" + ] + }, + { + "pc": 432, + "op": "ADD", + "gas": 2694, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x4964223a32377d00000000000000000000000000000000000000000000000000", + "0x40", + "0xe0", + "0x20" + ] + }, + { + "pc": 433, + "op": "ADD", + "gas": 2691, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x4964223a32377d00000000000000000000000000000000000000000000000000", + "0x40", + "0x100" + ] + }, + { + "pc": 434, + "op": "MSTORE", + "gas": 2688, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20", + "0x4964223a32377d00000000000000000000000000000000000000000000000000", + "0x140" + ] + }, + { + "pc": 435, + "op": "ADD", + "gas": 2682, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x20", + "0x20" + ] + }, + { + "pc": 436, + "op": "PUSH2", + "gas": 2679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40" + ] + }, + { + "pc": 439, + "op": "JUMP", + "gas": 2676, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x19b" + ] + }, + { + "pc": 411, + "op": "JUMPDEST", + "gas": 2668, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40" + ] + }, + { + "pc": 412, + "op": "DUP2", + "gas": 2667, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40" + ] + }, + { + "pc": 413, + "op": "DUP2", + "gas": 2664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x27" + ] + }, + { + "pc": 414, + "op": "LT", + "gas": 2661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x27", + "0x40" + ] + }, + { + "pc": 415, + "op": "ISZERO", + "gas": 2658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x0" + ] + }, + { + "pc": 416, + "op": "PUSH2", + "gas": 2655, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x1" + ] + }, + { + "pc": 419, + "op": "JUMPI", + "gas": 2652, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x1", + "0x1b8" + ] + }, + { + "pc": 440, + "op": "JUMPDEST", + "gas": 2642, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40" + ] + }, + { + "pc": 441, + "op": "POP", + "gas": 2641, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40" + ] + }, + { + "pc": 442, + "op": "PUSH1", + "gas": 2639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27" + ] + }, + { + "pc": 444, + "op": "PUSH1", + "gas": 2636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0" + ] + }, + { + "pc": 446, + "op": "DUP3", + "gas": 2633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x40" + ] + }, + { + "pc": 447, + "op": "DUP6", + "gas": 2630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x40", + "0x27" + ] + }, + { + "pc": 448, + "op": "ADD", + "gas": 2627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x40", + "0x27", + "0xe0" + ] + }, + { + "pc": 449, + "op": "ADD", + "gas": 2624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x40", + "0x107" + ] + }, + { + "pc": 450, + "op": "MSTORE", + "gas": 2621, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x0", + "0x147" + ] + }, + { + "pc": 451, + "op": "PUSH1", + "gas": 2615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27" + ] + }, + { + "pc": 453, + "op": "PUSH1", + "gas": 2612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40" + ] + }, + { + "pc": 455, + "op": "NOT", + "gas": 2609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x1f" + ] + }, + { + "pc": 456, + "op": "PUSH1", + "gas": 2606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 458, + "op": "DUP4", + "gas": 2603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "pc": 459, + "op": "ADD", + "gas": 2600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x27" + ] + }, + { + "pc": 460, + "op": "AND", + "gas": 2597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x46" + ] + }, + { + "pc": 461, + "op": "DUP5", + "gas": 2594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x40" + ] + }, + { + "pc": 462, + "op": "ADD", + "gas": 2591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x40", + "0xe0" + ] + }, + { + "pc": 463, + "op": "ADD", + "gas": 2588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x40", + "0x120" + ] + }, + { + "pc": 464, + "op": "SWAP2", + "gas": 2585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x0", + "0x27", + "0x160" + ] + }, + { + "pc": 465, + "op": "POP", + "gas": 2582, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x160", + "0x27", + "0x0" + ] + }, + { + "pc": 466, + "op": "POP", + "gas": 2580, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x160", + "0x27" + ] + }, + { + "pc": 467, + "op": "SWAP3", + "gas": 2578, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x84", + "0x80", + "0xe0", + "0x160" + ] + }, + { + "pc": 468, + "op": "SWAP2", + "gas": 2575, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160", + "0x80", + "0xe0", + "0x84" + ] + }, + { + "pc": 469, + "op": "POP", + "gas": 2572, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160", + "0x84", + "0xe0", + "0x80" + ] + }, + { + "pc": 470, + "op": "POP", + "gas": 2570, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160", + "0x84", + "0xe0" + ] + }, + { + "pc": 471, + "op": "JUMP", + "gas": 2568, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160", + "0x84" + ] + }, + { + "pc": 132, + "op": "JUMPDEST", + "gas": 2560, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160" + ] + }, + { + "pc": 133, + "op": "PUSH1", + "gas": 2559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160" + ] + }, + { + "pc": 135, + "op": "MLOAD", + "gas": 2556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160", + "0x40" + ] + }, + { + "pc": 136, + "op": "DUP1", + "gas": 2553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160", + "0xe0" + ] + }, + { + "pc": 137, + "op": "SWAP2", + "gas": 2550, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x160", + "0xe0", + "0xe0" + ] + }, + { + "pc": 138, + "op": "SUB", + "gas": 2547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0xe0", + "0xe0", + "0x160" + ] + }, + { + "pc": 139, + "op": "SWAP1", + "gas": 2544, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0xe0", + "0x80" + ] + }, + { + "pc": 140, + "op": "LOG3", + "gas": 2541, + "gasCost": 2524, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108", + "0x1", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x80", + "0xe0" + ] + }, + { + "pc": 141, + "op": "POP", + "gas": 17, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1", + "0x8cd206b2e06eefbd9788b9d6234dc2f7ee5c2108" + ] + }, + { + "pc": 142, + "op": "POP", + "gas": 15, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80", + "0x1" + ] + }, + { + "pc": 143, + "op": "POP", + "gas": 13, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8", + "0x80" + ] + }, + { + "pc": 144, + "op": "POP", + "gas": 11, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43", + "0xd18e38e337c62093a7a5bb9b869dea1608bf0ee8" + ] + }, + { + "pc": 145, + "op": "JUMP", + "gas": 9, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xafb91b2e", + "0x43" + ] + }, + { + "pc": 67, + "op": "JUMPDEST", + "gas": 1, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xafb91b2e" + ] + }, + { + "pc": 68, + "op": "STOP", + "gas": 0, + "gasCost": 0, + "depth": 1, + "stack": [ + "0xafb91b2e" + ] + } + ] + } + }, + { + "result": { + "gas": 83905, + "failed": false, + "returnValue": "", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 477832, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 477829, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 477826, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 477814, + "gasCost": 2, + "depth": 1, + "stack": [] + }, + { + "pc": 6, + "op": "DUP1", + "gas": 477812, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 477809, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 477806, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 477803, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 477793, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 477792, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 477790, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 477787, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 477785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x44" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 477782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 477779, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x253" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 477769, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 477766, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 477763, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 477760, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed00000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 477757, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 477754, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 38, + "op": "GT", + "gas": 477751, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x70dea79a" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 477748, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 477745, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x146" + ] + }, + { + "pc": 326, + "op": "JUMPDEST", + "gas": 477735, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 327, + "op": "DUP1", + "gas": 477734, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 328, + "op": "PUSH4", + "gas": 477731, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 333, + "op": "GT", + "gas": 477728, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x40884c52" + ] + }, + { + "pc": 334, + "op": "PUSH2", + "gas": 477725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 337, + "op": "JUMPI", + "gas": 477722, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x1d4" + ] + }, + { + "pc": 468, + "op": "JUMPDEST", + "gas": 477712, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 469, + "op": "DUP1", + "gas": 477711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 470, + "op": "PUSH4", + "gas": 477708, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 475, + "op": "GT", + "gas": 477705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x357ebb02" + ] + }, + { + "pc": 476, + "op": "PUSH2", + "gas": 477702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 479, + "op": "JUMPI", + "gas": 477699, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x21b" + ] + }, + { + "pc": 539, + "op": "JUMPDEST", + "gas": 477689, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 540, + "op": "DUP1", + "gas": 477688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 541, + "op": "PUSH4", + "gas": 477685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 546, + "op": "EQ", + "gas": 477682, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x1327d3d8" + ] + }, + { + "pc": 547, + "op": "PUSH2", + "gas": 477679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x0" + ] + }, + { + "pc": 550, + "op": "JUMPI", + "gas": 477676, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x0", + "0x258" + ] + }, + { + "pc": 551, + "op": "DUP1", + "gas": 477666, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 552, + "op": "PUSH4", + "gas": 477663, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 557, + "op": "EQ", + "gas": 477660, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 558, + "op": "PUSH2", + "gas": 477657, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 561, + "op": "JUMPI", + "gas": 477654, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x280" + ] + }, + { + "pc": 640, + "op": "JUMPDEST", + "gas": 477644, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 641, + "op": "PUSH2", + "gas": 477643, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 644, + "op": "PUSH1", + "gas": 477640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e" + ] + }, + { + "pc": 646, + "op": "DUP1", + "gas": 477637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4" + ] + }, + { + "pc": 647, + "op": "CALLDATASIZE", + "gas": 477634, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x4" + ] + }, + { + "pc": 648, + "op": "SUB", + "gas": 477632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x4", + "0x44" + ] + }, + { + "pc": 649, + "op": "PUSH1", + "gas": 477629, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40" + ] + }, + { + "pc": 651, + "op": "DUP2", + "gas": 477626, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x40" + ] + }, + { + "pc": 652, + "op": "LT", + "gas": 477623, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x40", + "0x40" + ] + }, + { + "pc": 653, + "op": "ISZERO", + "gas": 477620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x0" + ] + }, + { + "pc": 654, + "op": "PUSH2", + "gas": 477617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x1" + ] + }, + { + "pc": 657, + "op": "JUMPI", + "gas": 477614, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x1", + "0x296" + ] + }, + { + "pc": 662, + "op": "JUMPDEST", + "gas": 477604, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40" + ] + }, + { + "pc": 663, + "op": "POP", + "gas": 477603, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40" + ] + }, + { + "pc": 664, + "op": "DUP1", + "gas": 477601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4" + ] + }, + { + "pc": 665, + "op": "CALLDATALOAD", + "gas": 477598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x4" + ] + }, + { + "pc": 666, + "op": "SWAP1", + "gas": 477595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x305e" + ] + }, + { + "pc": 667, + "op": "PUSH1", + "gas": 477592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x4" + ] + }, + { + "pc": 669, + "op": "ADD", + "gas": 477589, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x4", + "0x20" + ] + }, + { + "pc": 670, + "op": "CALLDATALOAD", + "gas": 477586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x24" + ] + }, + { + "pc": 671, + "op": "PUSH2", + "gas": 477583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 674, + "op": "JUMP", + "gas": 477580, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x9ff" + ] + }, + { + "pc": 2559, + "op": "JUMPDEST", + "gas": 477572, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 2560, + "op": "PUSH1", + "gas": 477571, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 2562, + "op": "PUSH2", + "gas": 477568, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60" + ] + }, + { + "pc": 2565, + "op": "CALLER", + "gas": 477565, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b" + ] + }, + { + "pc": 2566, + "op": "DUP5", + "gas": 477563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 2567, + "op": "PUSH2", + "gas": 477560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e" + ] + }, + { + "pc": 2570, + "op": "JUMP", + "gas": 477557, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x21ac" + ] + }, + { + "pc": 8620, + "op": "JUMPDEST", + "gas": 477549, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e" + ] + }, + { + "pc": 8621, + "op": "PUSH1", + "gas": 477548, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e" + ] + }, + { + "pc": 8623, + "op": "PUSH1", + "gas": 477545, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x1" + ] + }, + { + "pc": 8625, + "op": "PUSH1", + "gas": 477542, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 8627, + "op": "SHL", + "gas": 477539, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 8628, + "op": "SUB", + "gas": 477536, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8629, + "op": "DUP3", + "gas": 477533, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 8630, + "op": "AND", + "gas": 477530, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 8631, + "op": "PUSH1", + "gas": 477527, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 8633, + "op": "SWAP1", + "gas": 477524, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x0" + ] + }, + { + "pc": 8634, + "op": "DUP2", + "gas": 477521, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 8635, + "op": "MSTORE", + "gas": 477518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x0" + ] + }, + { + "pc": 8636, + "op": "PUSH1", + "gas": 477515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x0" + ] + }, + { + "pc": 8638, + "op": "PUSH1", + "gas": 477512, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x0", + "0x8" + ] + }, + { + "pc": 8640, + "op": "MSTORE", + "gas": 477509, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 8641, + "op": "PUSH1", + "gas": 477506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x0" + ] + }, + { + "pc": 8643, + "op": "SWAP1", + "gas": 477503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 8644, + "op": "KECCAK256", + "gas": 477500, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 8645, + "op": "SLOAD", + "gas": 477458, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977" + ], + "storage": { + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305dffffffff000006f0000000000000000001789f8888a3a000" + } + }, + { + "pc": 8646, + "op": "PUSH1", + "gas": 476658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000" + ] + }, + { + "pc": 8648, + "op": "SLOAD", + "gas": 476655, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0x7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305dffffffff000006f0000000000000000001789f8888a3a000" + } + }, + { + "pc": 8649, + "op": "PUSH1", + "gas": 475855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0x305d0000305e" + ] + }, + { + "pc": 8651, + "op": "SWAP2", + "gas": 475852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0x305d0000305e", + "0x60" + ] + }, + { + "pc": 8652, + "op": "PUSH4", + "gas": 475849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x305d0000305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000" + ] + }, + { + "pc": 8657, + "op": "PUSH1", + "gas": 475846, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x305d0000305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff" + ] + }, + { + "pc": 8659, + "op": "PUSH1", + "gas": 475843, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x305d0000305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0x1" + ] + }, + { + "pc": 8661, + "op": "SHL", + "gas": 475840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x305d0000305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0x1", + "0x80" + ] + }, + { + "pc": 8662, + "op": "SWAP1", + "gas": 475837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x305d0000305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 8663, + "op": "SWAP2", + "gas": 475834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x305d0000305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0x100000000000000000000000000000000", + "0xffffffff" + ] + }, + { + "pc": 8664, + "op": "DIV", + "gas": 475831, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x305d0000305e", + "0xffffffff", + "0x100000000000000000000000000000000", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000" + ] + }, + { + "pc": 8665, + "op": "DUP2", + "gas": 475826, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x305d0000305e", + "0xffffffff", + "0x305c0000305dffffffff000006f0" + ] + }, + { + "pc": 8666, + "op": "AND", + "gas": 475823, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x305d0000305e", + "0xffffffff", + "0x305c0000305dffffffff000006f0", + "0xffffffff" + ] + }, + { + "pc": 8667, + "op": "SWAP2", + "gas": 475820, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x305d0000305e", + "0xffffffff", + "0x6f0" + ] + }, + { + "pc": 8668, + "op": "AND", + "gas": 475817, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0xffffffff", + "0x305d0000305e" + ] + }, + { + "pc": 8669, + "op": "DUP2", + "gas": 475814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8670, + "op": "PUSH2", + "gas": 475811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x6f0" + ] + }, + { + "pc": 8673, + "op": "JUMPI", + "gas": 475808, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x6f0", + "0x2215" + ] + }, + { + "pc": 8725, + "op": "JUMPDEST", + "gas": 475798, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8726, + "op": "DUP4", + "gas": 475797, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8727, + "op": "PUSH4", + "gas": 475794, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 8732, + "op": "AND", + "gas": 475791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 8733, + "op": "DUP3", + "gas": 475788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 8734, + "op": "PUSH4", + "gas": 475785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x6f0" + ] + }, + { + "pc": 8739, + "op": "AND", + "gas": 475782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x6f0", + "0xffffffff" + ] + }, + { + "pc": 8740, + "op": "GT", + "gas": 475779, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x6f0" + ] + }, + { + "pc": 8741, + "op": "ISZERO", + "gas": 475776, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8742, + "op": "PUSH2", + "gas": 475773, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8745, + "op": "JUMPI", + "gas": 475770, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2261" + ] + }, + { + "pc": 8801, + "op": "JUMPDEST", + "gas": 475760, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8802, + "op": "PUSH1", + "gas": 475759, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8804, + "op": "PUSH1", + "gas": 475756, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8806, + "op": "PUSH1", + "gas": 475753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 8808, + "op": "SHL", + "gas": 475750, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 8809, + "op": "SUB", + "gas": 475747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8810, + "op": "DUP6", + "gas": 475744, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 8811, + "op": "AND", + "gas": 475741, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 8812, + "op": "PUSH1", + "gas": 475738, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 8814, + "op": "SWAP1", + "gas": 475735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x0" + ] + }, + { + "pc": 8815, + "op": "DUP2", + "gas": 475732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 8816, + "op": "MSTORE", + "gas": 475729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x0" + ] + }, + { + "pc": 8817, + "op": "PUSH1", + "gas": 475726, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8819, + "op": "PUSH1", + "gas": 475723, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x8" + ] + }, + { + "pc": 8821, + "op": "MSTORE", + "gas": 475720, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 8822, + "op": "PUSH1", + "gas": 475717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8824, + "op": "SWAP1", + "gas": 475714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 8825, + "op": "KECCAK256", + "gas": 475711, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 8826, + "op": "SLOAD", + "gas": 475669, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305dffffffff000006f0000000000000000001789f8888a3a000" + } + }, + { + "pc": 8827, + "op": "PUSH4", + "gas": 474869, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000" + ] + }, + { + "pc": 8832, + "op": "DUP1", + "gas": 474866, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff" + ] + }, + { + "pc": 8833, + "op": "DUP7", + "gas": 474863, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 8834, + "op": "AND", + "gas": 474860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8835, + "op": "PUSH1", + "gas": 474857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8837, + "op": "PUSH1", + "gas": 474854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0x305e", + "0x1" + ] + }, + { + "pc": 8839, + "op": "SHL", + "gas": 474851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0x305e", + "0x1", + "0xa0" + ] + }, + { + "pc": 8840, + "op": "SWAP1", + "gas": 474848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0x305e", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8841, + "op": "SWAP3", + "gas": 474845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0x10000000000000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 8842, + "op": "DIV", + "gas": 474842, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff", + "0x10000000000000000000000000000000000000000", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000" + ] + }, + { + "pc": 8843, + "op": "AND", + "gas": 474837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff", + "0x305c0000305dffffffff" + ] + }, + { + "pc": 8844, + "op": "LT", + "gas": 474834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 8845, + "op": "ISZERO", + "gas": 474831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8846, + "op": "PUSH2", + "gas": 474828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8849, + "op": "JUMPI", + "gas": 474825, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x22d0" + ] + }, + { + "pc": 8912, + "op": "JUMPDEST", + "gas": 474815, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8913, + "op": "PUSH1", + "gas": 474814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8915, + "op": "PUSH1", + "gas": 474811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8917, + "op": "PUSH1", + "gas": 474808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 8919, + "op": "SHL", + "gas": 474805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 8920, + "op": "SUB", + "gas": 474802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8921, + "op": "DUP6", + "gas": 474799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 8922, + "op": "AND", + "gas": 474796, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 8923, + "op": "PUSH1", + "gas": 474793, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 8925, + "op": "SWAP1", + "gas": 474790, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x0" + ] + }, + { + "pc": 8926, + "op": "DUP2", + "gas": 474787, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 8927, + "op": "MSTORE", + "gas": 474784, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x0" + ] + }, + { + "pc": 8928, + "op": "PUSH1", + "gas": 474781, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8930, + "op": "PUSH1", + "gas": 474778, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x8" + ] + }, + { + "pc": 8932, + "op": "MSTORE", + "gas": 474775, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 8933, + "op": "PUSH1", + "gas": 474772, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8935, + "op": "SWAP1", + "gas": 474769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 8936, + "op": "KECCAK256", + "gas": 474766, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 8937, + "op": "SLOAD", + "gas": 474724, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305dffffffff000006f0000000000000000001789f8888a3a000" + } + }, + { + "pc": 8938, + "op": "PUSH4", + "gas": 473924, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000" + ] + }, + { + "pc": 8943, + "op": "DUP1", + "gas": 473921, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff" + ] + }, + { + "pc": 8944, + "op": "DUP7", + "gas": 473918, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 8945, + "op": "AND", + "gas": 473915, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8946, + "op": "PUSH1", + "gas": 473912, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8948, + "op": "PUSH1", + "gas": 473909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0x305e", + "0x1" + ] + }, + { + "pc": 8950, + "op": "SHL", + "gas": 473906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0x305e", + "0x1", + "0xc0" + ] + }, + { + "pc": 8951, + "op": "SWAP1", + "gas": 473903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0x305e", + "0x1000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 8952, + "op": "SWAP3", + "gas": 473900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0x1000000000000000000000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 8953, + "op": "DIV", + "gas": 473897, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff", + "0x1000000000000000000000000000000000000000000000000", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000" + ] + }, + { + "pc": 8954, + "op": "AND", + "gas": 473892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff", + "0x305c0000305d" + ] + }, + { + "pc": 8955, + "op": "LT", + "gas": 473889, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x305d" + ] + }, + { + "pc": 8956, + "op": "PUSH2", + "gas": 473886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8959, + "op": "JUMPI", + "gas": 473883, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x233e" + ] + }, + { + "pc": 9022, + "op": "JUMPDEST", + "gas": 473873, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9023, + "op": "DUP1", + "gas": 473872, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9024, + "op": "PUSH4", + "gas": 473869, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9029, + "op": "AND", + "gas": 473866, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9030, + "op": "DUP5", + "gas": 473863, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9031, + "op": "PUSH4", + "gas": 473860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9036, + "op": "AND", + "gas": 473857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9037, + "op": "EQ", + "gas": 473854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9038, + "op": "ISZERO", + "gas": 473851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9039, + "op": "DUP1", + "gas": 473848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9040, + "op": "ISZERO", + "gas": 473845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9041, + "op": "PUSH2", + "gas": 473842, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x1" + ] + }, + { + "pc": 9044, + "op": "JUMPI", + "gas": 473839, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x1", + "0x237a" + ] + }, + { + "pc": 9082, + "op": "JUMPDEST", + "gas": 473829, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9083, + "op": "DUP1", + "gas": 473828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9084, + "op": "ISZERO", + "gas": 473825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9085, + "op": "PUSH2", + "gas": 473822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x1" + ] + }, + { + "pc": 9088, + "op": "JUMPI", + "gas": 473819, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x1", + "0x238d" + ] + }, + { + "pc": 9101, + "op": "JUMPDEST", + "gas": 473809, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9102, + "op": "ISZERO", + "gas": 473808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9103, + "op": "PUSH2", + "gas": 473805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9106, + "op": "JUMPI", + "gas": 473802, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x23d1" + ] + }, + { + "pc": 9169, + "op": "JUMPDEST", + "gas": 473792, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9170, + "op": "DUP4", + "gas": 473791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9171, + "op": "PUSH4", + "gas": 473788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9176, + "op": "AND", + "gas": 473785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9177, + "op": "PUSH1", + "gas": 473782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9179, + "op": "EQ", + "gas": 473779, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x1" + ] + }, + { + "pc": 9180, + "op": "ISZERO", + "gas": 473776, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9181, + "op": "DUP1", + "gas": 473773, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9182, + "op": "ISZERO", + "gas": 473770, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 9183, + "op": "PUSH2", + "gas": 473767, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 9186, + "op": "JUMPI", + "gas": 473764, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x0", + "0x2402" + ] + }, + { + "pc": 9187, + "op": "POP", + "gas": 473754, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9188, + "op": "PUSH2", + "gas": 473752, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9191, + "op": "PUSH2", + "gas": 473749, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400" + ] + }, + { + "pc": 9194, + "op": "PUSH4", + "gas": 473746, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb" + ] + }, + { + "pc": 9199, + "op": "DUP1", + "gas": 473743, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff" + ] + }, + { + "pc": 9200, + "op": "DUP8", + "gas": 473740, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 9201, + "op": "AND", + "gas": 473737, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9202, + "op": "SWAP1", + "gas": 473734, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9203, + "op": "PUSH1", + "gas": 473731, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9205, + "op": "SWAP1", + "gas": 473728, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0xffffffff", + "0x1" + ] + }, + { + "pc": 9206, + "op": "PUSH2", + "gas": 473725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0xffffffff" + ] + }, + { + "pc": 9209, + "op": "AND", + "gas": 473722, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0xffffffff", + "0x3384" + ] + }, + { + "pc": 9210, + "op": "JUMP", + "gas": 473719, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x3384" + ] + }, + { + "pc": 13188, + "op": "JUMPDEST", + "gas": 473711, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1" + ] + }, + { + "pc": 13189, + "op": "PUSH1", + "gas": 473710, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1" + ] + }, + { + "pc": 13191, + "op": "DUP3", + "gas": 473707, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 13192, + "op": "PUSH4", + "gas": 473704, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 13197, + "op": "AND", + "gas": 473701, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13198, + "op": "DUP3", + "gas": 473698, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 13199, + "op": "PUSH4", + "gas": 473695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1" + ] + }, + { + "pc": 13204, + "op": "AND", + "gas": 473692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1", + "0xffffffff" + ] + }, + { + "pc": 13205, + "op": "GT", + "gas": 473689, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1" + ] + }, + { + "pc": 13206, + "op": "ISZERO", + "gas": 473686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 13207, + "op": "PUSH2", + "gas": 473683, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 13210, + "op": "JUMPI", + "gas": 473680, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x1", + "0x2ef3" + ] + }, + { + "pc": 12019, + "op": "JUMPDEST", + "gas": 473670, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 12020, + "op": "POP", + "gas": 473669, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 12021, + "op": "SWAP1", + "gas": 473667, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1" + ] + }, + { + "pc": 12022, + "op": "SUB", + "gas": 473664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x1", + "0x305e" + ] + }, + { + "pc": 12023, + "op": "SWAP1", + "gas": 473661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305d" + ] + }, + { + "pc": 12024, + "op": "JUMP", + "gas": 473658, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x23fb" + ] + }, + { + "pc": 9211, + "op": "JUMPDEST", + "gas": 473650, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 9212, + "op": "PUSH2", + "gas": 473649, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 9215, + "op": "JUMP", + "gas": 473646, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x33e7" + ] + }, + { + "pc": 13287, + "op": "JUMPDEST", + "gas": 473638, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 13288, + "op": "PUSH4", + "gas": 473637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 13293, + "op": "DUP2", + "gas": 473634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0xffffffff" + ] + }, + { + "pc": 13294, + "op": "AND", + "gas": 473631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0xffffffff", + "0x305d" + ] + }, + { + "pc": 13295, + "op": "PUSH1", + "gas": 473628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x305d" + ] + }, + { + "pc": 13297, + "op": "SWAP1", + "gas": 473625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x305d", + "0x0" + ] + }, + { + "pc": 13298, + "op": "DUP2", + "gas": 473622, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d" + ] + }, + { + "pc": 13299, + "op": "MSTORE", + "gas": 473619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d", + "0x0" + ] + }, + { + "pc": 13300, + "op": "PUSH1", + "gas": 473616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0" + ] + }, + { + "pc": 13302, + "op": "PUSH1", + "gas": 473613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x9" + ] + }, + { + "pc": 13304, + "op": "MSTORE", + "gas": 473610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x9", + "0x20" + ] + }, + { + "pc": 13305, + "op": "PUSH1", + "gas": 473607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0" + ] + }, + { + "pc": 13307, + "op": "DUP2", + "gas": 473604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x40" + ] + }, + { + "pc": 13308, + "op": "KECCAK256", + "gas": 473601, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x40", + "0x0" + ] + }, + { + "pc": 13309, + "op": "PUSH1", + "gas": 473559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae3" + ] + }, + { + "pc": 13311, + "op": "ADD", + "gas": 473556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae3", + "0x1" + ] + }, + { + "pc": 13312, + "op": "SLOAD", + "gas": 473553, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b" + } + }, + { + "pc": 13313, + "op": "PUSH1", + "gas": 472753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b" + ] + }, + { + "pc": 13315, + "op": "PUSH1", + "gas": 472750, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b", + "0x1" + ] + }, + { + "pc": 13317, + "op": "SHL", + "gas": 472747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b", + "0x1", + "0x40" + ] + }, + { + "pc": 13318, + "op": "SWAP1", + "gas": 472744, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b", + "0x10000000000000000" + ] + }, + { + "pc": 13319, + "op": "DIV", + "gas": 472741, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x10000000000000000", + "0x305d00000000689d901f00000000689d901b" + ] + }, + { + "pc": 13320, + "op": "PUSH1", + "gas": 472736, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f" + ] + }, + { + "pc": 13322, + "op": "PUSH1", + "gas": 472733, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1" + ] + }, + { + "pc": 13324, + "op": "PUSH1", + "gas": 472730, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1", + "0x1" + ] + }, + { + "pc": 13326, + "op": "SHL", + "gas": 472727, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1", + "0x1", + "0x40" + ] + }, + { + "pc": 13327, + "op": "SUB", + "gas": 472724, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1", + "0x10000000000000000" + ] + }, + { + "pc": 13328, + "op": "AND", + "gas": 472721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0xffffffffffffffff" + ] + }, + { + "pc": 13329, + "op": "ISZERO", + "gas": 472718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x689d901f" + ] + }, + { + "pc": 13330, + "op": "ISZERO", + "gas": 472715, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x0" + ] + }, + { + "pc": 13331, + "op": "DUP1", + "gas": 472712, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1" + ] + }, + { + "pc": 13332, + "op": "PUSH2", + "gas": 472709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 13335, + "op": "JUMPI", + "gas": 472706, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1", + "0x1", + "0x2449" + ] + }, + { + "pc": 9289, + "op": "JUMPDEST", + "gas": 472696, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1" + ] + }, + { + "pc": 9290, + "op": "SWAP3", + "gas": 472695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1" + ] + }, + { + "pc": 9291, + "op": "SWAP2", + "gas": 472692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x305d", + "0x0", + "0x2400" + ] + }, + { + "pc": 9292, + "op": "POP", + "gas": 472689, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2400", + "0x0", + "0x305d" + ] + }, + { + "pc": 9293, + "op": "POP", + "gas": 472687, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2400", + "0x0" + ] + }, + { + "pc": 9294, + "op": "JUMP", + "gas": 472685, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2400" + ] + }, + { + "pc": 9216, + "op": "JUMPDEST", + "gas": 472677, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9217, + "op": "ISZERO", + "gas": 472676, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9218, + "op": "JUMPDEST", + "gas": 472673, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9219, + "op": "ISZERO", + "gas": 472672, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9220, + "op": "PUSH2", + "gas": 472669, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9223, + "op": "JUMPI", + "gas": 472666, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2446" + ] + }, + { + "pc": 9286, + "op": "JUMPDEST", + "gas": 472656, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9287, + "op": "POP", + "gas": 472655, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9288, + "op": "POP", + "gas": 472653, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60", + "0x6f0" + ] + }, + { + "pc": 9289, + "op": "JUMPDEST", + "gas": 472651, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60" + ] + }, + { + "pc": 9290, + "op": "SWAP3", + "gas": 472650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xa0b", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x60" + ] + }, + { + "pc": 9291, + "op": "SWAP2", + "gas": 472647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x60", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0xa0b" + ] + }, + { + "pc": 9292, + "op": "POP", + "gas": 472644, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x60", + "0xa0b", + "0x305e", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 9293, + "op": "POP", + "gas": 472642, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x60", + "0xa0b", + "0x305e" + ] + }, + { + "pc": 9294, + "op": "JUMP", + "gas": 472640, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x60", + "0xa0b" + ] + }, + { + "pc": 2571, + "op": "JUMPDEST", + "gas": 472632, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x60" + ] + }, + { + "pc": 2572, + "op": "SWAP1", + "gas": 472631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x60" + ] + }, + { + "pc": 2573, + "op": "POP", + "gas": 472628, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x60" + ] + }, + { + "pc": 2574, + "op": "PUSH32", + "gas": 472626, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60" + ] + }, + { + "pc": 2607, + "op": "DUP3", + "gas": 472623, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0" + ] + }, + { + "pc": 2608, + "op": "SLT", + "gas": 472620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 2609, + "op": "ISZERO", + "gas": 472617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0" + ] + }, + { + "pc": 2610, + "op": "PUSH2", + "gas": 472614, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x1" + ] + }, + { + "pc": 2613, + "op": "JUMPI", + "gas": 472611, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x1", + "0xa82" + ] + }, + { + "pc": 2690, + "op": "JUMPDEST", + "gas": 472601, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60" + ] + }, + { + "pc": 2691, + "op": "PUSH32", + "gas": 472600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60" + ] + }, + { + "pc": 2724, + "op": "DUP3", + "gas": 472597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x845951614014849ffffff" + ] + }, + { + "pc": 2725, + "op": "SGT", + "gas": 472594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x845951614014849ffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 2726, + "op": "ISZERO", + "gas": 472591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0" + ] + }, + { + "pc": 2727, + "op": "PUSH2", + "gas": 472588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x1" + ] + }, + { + "pc": 2730, + "op": "JUMPI", + "gas": 472585, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x1", + "0xaf7" + ] + }, + { + "pc": 2807, + "op": "JUMPDEST", + "gas": 472575, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60" + ] + }, + { + "pc": 2808, + "op": "DUP1", + "gas": 472574, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60" + ] + }, + { + "pc": 2809, + "op": "MLOAD", + "gas": 472571, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x60" + ] + }, + { + "pc": 2810, + "op": "DUP2", + "gas": 472565, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0" + ] + }, + { + "pc": 2811, + "op": "SWAP1", + "gas": 472562, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x60" + ] + }, + { + "pc": 2812, + "op": "ISZERO", + "gas": 472559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x60", + "0x0" + ] + }, + { + "pc": 2813, + "op": "PUSH2", + "gas": 472556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x60", + "0x1" + ] + }, + { + "pc": 2816, + "op": "JUMPI", + "gas": 472553, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x60", + "0x1", + "0xb84" + ] + }, + { + "pc": 2948, + "op": "JUMPDEST", + "gas": 472543, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x60" + ] + }, + { + "pc": 2949, + "op": "POP", + "gas": 472542, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x60" + ] + }, + { + "pc": 2950, + "op": "PUSH2", + "gas": 472540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60" + ] + }, + { + "pc": 2953, + "op": "DUP4", + "gas": 472537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e" + ] + }, + { + "pc": 2954, + "op": "PUSH2", + "gas": 472534, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 2957, + "op": "JUMP", + "gas": 472531, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x244f" + ] + }, + { + "pc": 9295, + "op": "JUMPDEST", + "gas": 472523, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9296, + "op": "PUSH2", + "gas": 472522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9299, + "op": "DUP2", + "gas": 472519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458" + ] + }, + { + "pc": 9300, + "op": "PUSH2", + "gas": 472516, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e" + ] + }, + { + "pc": 9303, + "op": "JUMP", + "gas": 472513, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x3421" + ] + }, + { + "pc": 13345, + "op": "JUMPDEST", + "gas": 472505, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e" + ] + }, + { + "pc": 13346, + "op": "PUSH1", + "gas": 472504, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e" + ] + }, + { + "pc": 13348, + "op": "SLOAD", + "gas": 472501, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b" + } + }, + { + "pc": 13349, + "op": "PUSH1", + "gas": 471701, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x305d0000305e" + ] + }, + { + "pc": 13351, + "op": "SWAP1", + "gas": 471698, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x305d0000305e", + "0x0" + ] + }, + { + "pc": 13352, + "op": "PUSH2", + "gas": 471695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305d0000305e" + ] + }, + { + "pc": 13355, + "op": "SWAP1", + "gas": 471692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305d0000305e", + "0x343d" + ] + }, + { + "pc": 13356, + "op": "PUSH4", + "gas": 471689, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305d0000305e" + ] + }, + { + "pc": 13361, + "op": "SWAP1", + "gas": 471686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305d0000305e", + "0xffffffff" + ] + }, + { + "pc": 13362, + "op": "DUP2", + "gas": 471683, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0xffffffff", + "0x305d0000305e" + ] + }, + { + "pc": 13363, + "op": "AND", + "gas": 471680, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0xffffffff", + "0x305d0000305e", + "0xffffffff" + ] + }, + { + "pc": 13364, + "op": "SWAP1", + "gas": 471677, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 13365, + "op": "PUSH1", + "gas": 471674, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13367, + "op": "SWAP1", + "gas": 471671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0xffffffff", + "0x1" + ] + }, + { + "pc": 13368, + "op": "PUSH2", + "gas": 471668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0xffffffff" + ] + }, + { + "pc": 13371, + "op": "AND", + "gas": 471665, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0xffffffff", + "0x31fb" + ] + }, + { + "pc": 13372, + "op": "JUMP", + "gas": 471662, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x31fb" + ] + }, + { + "pc": 12795, + "op": "JUMPDEST", + "gas": 471654, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1" + ] + }, + { + "pc": 12796, + "op": "PUSH1", + "gas": 471653, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1" + ] + }, + { + "pc": 12798, + "op": "DUP3", + "gas": 471650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 12799, + "op": "DUP3", + "gas": 471647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 12800, + "op": "ADD", + "gas": 471644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1" + ] + }, + { + "pc": 12801, + "op": "PUSH4", + "gas": 471641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f" + ] + }, + { + "pc": 12806, + "op": "DUP1", + "gas": 471638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff" + ] + }, + { + "pc": 12807, + "op": "DUP6", + "gas": 471635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 12808, + "op": "AND", + "gas": 471632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 12809, + "op": "SWAP1", + "gas": 471629, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 12810, + "op": "DUP3", + "gas": 471626, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 12811, + "op": "AND", + "gas": 471623, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x305e", + "0xffffffff", + "0x305f" + ] + }, + { + "pc": 12812, + "op": "LT", + "gas": 471620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x305e", + "0x305f" + ] + }, + { + "pc": 12813, + "op": "ISZERO", + "gas": 471617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x0" + ] + }, + { + "pc": 12814, + "op": "PUSH2", + "gas": 471614, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x1" + ] + }, + { + "pc": 12817, + "op": "JUMPI", + "gas": 471611, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x1", + "0x2bf3" + ] + }, + { + "pc": 11251, + "op": "JUMPDEST", + "gas": 471601, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f" + ] + }, + { + "pc": 11252, + "op": "SWAP4", + "gas": 471600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f" + ] + }, + { + "pc": 11253, + "op": "SWAP3", + "gas": 471597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e", + "0x1", + "0x0", + "0x343d" + ] + }, + { + "pc": 11254, + "op": "POP", + "gas": 471594, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 11255, + "op": "POP", + "gas": 471592, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d", + "0x1", + "0x0" + ] + }, + { + "pc": 11256, + "op": "POP", + "gas": 471590, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d", + "0x1" + ] + }, + { + "pc": 11257, + "op": "JUMP", + "gas": 471588, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d" + ] + }, + { + "pc": 13373, + "op": "JUMPDEST", + "gas": 471580, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f" + ] + }, + { + "pc": 13374, + "op": "PUSH4", + "gas": 471579, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f" + ] + }, + { + "pc": 13379, + "op": "AND", + "gas": 471576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0xffffffff" + ] + }, + { + "pc": 13380, + "op": "DUP3", + "gas": 471573, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f" + ] + }, + { + "pc": 13381, + "op": "PUSH4", + "gas": 471570, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e" + ] + }, + { + "pc": 13386, + "op": "AND", + "gas": 471567, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13387, + "op": "EQ", + "gas": 471564, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e" + ] + }, + { + "pc": 13388, + "op": "SWAP1", + "gas": 471561, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 13389, + "op": "POP", + "gas": 471558, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 13390, + "op": "SWAP2", + "gas": 471556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0" + ] + }, + { + "pc": 13391, + "op": "SWAP1", + "gas": 471553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x305e", + "0x2458" + ] + }, + { + "pc": 13392, + "op": "POP", + "gas": 471550, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x2458", + "0x305e" + ] + }, + { + "pc": 13393, + "op": "JUMP", + "gas": 471548, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x2458" + ] + }, + { + "pc": 9304, + "op": "JUMPDEST", + "gas": 471540, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9305, + "op": "PUSH2", + "gas": 471539, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9308, + "op": "JUMPI", + "gas": 471536, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x2461" + ] + }, + { + "pc": 9309, + "op": "PUSH2", + "gas": 471526, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9312, + "op": "JUMP", + "gas": 471523, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e", + "0x24e0" + ] + }, + { + "pc": 9440, + "op": "JUMPDEST", + "gas": 471515, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9441, + "op": "POP", + "gas": 471514, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9442, + "op": "JUMP", + "gas": 471512, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb8e" + ] + }, + { + "pc": 2958, + "op": "JUMPDEST", + "gas": 471504, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60" + ] + }, + { + "pc": 2959, + "op": "PUSH2", + "gas": 471503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60" + ] + }, + { + "pc": 2962, + "op": "DUP3", + "gas": 471500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98" + ] + }, + { + "pc": 2963, + "op": "DUP5", + "gas": 471497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 2964, + "op": "PUSH2", + "gas": 471494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e" + ] + }, + { + "pc": 2967, + "op": "JUMP", + "gas": 471491, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24e3" + ] + }, + { + "pc": 9443, + "op": "JUMPDEST", + "gas": 471483, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e" + ] + }, + { + "pc": 9444, + "op": "PUSH2", + "gas": 471482, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e" + ] + }, + { + "pc": 9447, + "op": "DUP2", + "gas": 471479, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec" + ] + }, + { + "pc": 9448, + "op": "PUSH2", + "gas": 471476, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0x305e" + ] + }, + { + "pc": 9451, + "op": "JUMP", + "gas": 471473, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0x305e", + "0x3605" + ] + }, + { + "pc": 13829, + "op": "JUMPDEST", + "gas": 471465, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0x305e" + ] + }, + { + "pc": 13830, + "op": "PUSH4", + "gas": 471464, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0x305e" + ] + }, + { + "pc": 13835, + "op": "SWAP1", + "gas": 471461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13836, + "op": "DUP2", + "gas": 471458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 13837, + "op": "AND", + "gas": 471455, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13838, + "op": "PUSH1", + "gas": 471452, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 13840, + "op": "SWAP1", + "gas": 471449, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e", + "0x0" + ] + }, + { + "pc": 13841, + "op": "DUP2", + "gas": 471446, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0x305e" + ] + }, + { + "pc": 13842, + "op": "MSTORE", + "gas": 471443, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 13843, + "op": "PUSH1", + "gas": 471440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 13845, + "op": "PUSH1", + "gas": 471437, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0xa" + ] + }, + { + "pc": 13847, + "op": "MSTORE", + "gas": 471434, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 13848, + "op": "PUSH1", + "gas": 471431, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 13850, + "op": "SWAP1", + "gas": 471428, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 13851, + "op": "KECCAK256", + "gas": 471425, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x40", + "0x0" + ] + }, + { + "pc": 13852, + "op": "PUSH1", + "gas": 471383, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 13854, + "op": "ADD", + "gas": 471380, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 13855, + "op": "SLOAD", + "gas": 471377, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006" + } + }, + { + "pc": 13856, + "op": "AND", + "gas": 470577, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 13857, + "op": "ISZERO", + "gas": 470574, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0x6" + ] + }, + { + "pc": 13858, + "op": "ISZERO", + "gas": 470571, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0x0" + ] + }, + { + "pc": 13859, + "op": "SWAP1", + "gas": 470568, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x24ec", + "0x1" + ] + }, + { + "pc": 13860, + "op": "JUMP", + "gas": 470565, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x1", + "0x24ec" + ] + }, + { + "pc": 9452, + "op": "JUMPDEST", + "gas": 470557, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x1" + ] + }, + { + "pc": 9453, + "op": "PUSH2", + "gas": 470556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x1" + ] + }, + { + "pc": 9456, + "op": "JUMPI", + "gas": 470553, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x1", + "0x253d" + ] + }, + { + "pc": 9533, + "op": "JUMPDEST", + "gas": 470543, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e" + ] + }, + { + "pc": 9534, + "op": "PUSH4", + "gas": 470542, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e" + ] + }, + { + "pc": 9539, + "op": "DUP2", + "gas": 470539, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9540, + "op": "AND", + "gas": 470536, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9541, + "op": "PUSH1", + "gas": 470533, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9543, + "op": "DUP2", + "gas": 470530, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9544, + "op": "DUP2", + "gas": 470527, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x305e" + ] + }, + { + "pc": 9545, + "op": "MSTORE", + "gas": 470524, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9546, + "op": "PUSH1", + "gas": 470521, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9548, + "op": "PUSH1", + "gas": 470518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0xa" + ] + }, + { + "pc": 9550, + "op": "SWAP1", + "gas": 470515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 9551, + "op": "DUP2", + "gas": 470512, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0xa" + ] + }, + { + "pc": 9552, + "op": "MSTORE", + "gas": 470509, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0xa", + "0x20" + ] + }, + { + "pc": 9553, + "op": "PUSH1", + "gas": 470506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20" + ] + }, + { + "pc": 9555, + "op": "DUP1", + "gas": 470503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40" + ] + }, + { + "pc": 9556, + "op": "DUP4", + "gas": 470500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x40" + ] + }, + { + "pc": 9557, + "op": "KECCAK256", + "gas": 470497, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x40", + "0x0" + ] + }, + { + "pc": 9558, + "op": "DUP1", + "gas": 470455, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9559, + "op": "SLOAD", + "gas": 470452, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000001", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006" + } + }, + { + "pc": 9560, + "op": "PUSH1", + "gas": 469652, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 9562, + "op": "DUP1", + "gas": 469649, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1", + "0x1" + ] + }, + { + "pc": 9563, + "op": "DUP3", + "gas": 469646, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1", + "0x1", + "0x1" + ] + }, + { + "pc": 9564, + "op": "ADD", + "gas": 469643, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1", + "0x1", + "0x1", + "0x1" + ] + }, + { + "pc": 9565, + "op": "DUP4", + "gas": 469640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1", + "0x1", + "0x2" + ] + }, + { + "pc": 9566, + "op": "SSTORE", + "gas": 469637, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1", + "0x1", + "0x2", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006" + } + }, + { + "pc": 9567, + "op": "SWAP2", + "gas": 464637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1", + "0x1" + ] + }, + { + "pc": 9568, + "op": "DUP6", + "gas": 464634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x1", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9569, + "op": "MSTORE", + "gas": 464631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x1", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x0" + ] + }, + { + "pc": 9570, + "op": "DUP4", + "gas": 464628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x1" + ] + }, + { + "pc": 9571, + "op": "DUP6", + "gas": 464625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x1", + "0x20" + ] + }, + { + "pc": 9572, + "op": "KECCAK256", + "gas": 464622, + "gasCost": 36, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x1", + "0x20", + "0x0" + ] + }, + { + "pc": 9573, + "op": "ADD", + "gas": 464586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x1", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f" + ] + }, + { + "pc": 9574, + "op": "DUP8", + "gas": 464583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50" + ] + }, + { + "pc": 9575, + "op": "SWAP1", + "gas": 464580, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 9576, + "op": "SSTORE", + "gas": 464577, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x41f5599db40e4c4000", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 9577, + "op": "CALLER", + "gas": 444577, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1" + ] + }, + { + "pc": 9578, + "op": "DUP1", + "gas": 444575, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 9579, + "op": "DUP6", + "gas": 444572, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 9580, + "op": "MSTORE", + "gas": 444569, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x0" + ] + }, + { + "pc": 9581, + "op": "PUSH1", + "gas": 444566, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 9583, + "op": "SWAP1", + "gas": 444563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x8" + ] + }, + { + "pc": 9584, + "op": "SWAP4", + "gas": 444560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x8", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 9585, + "op": "MSTORE", + "gas": 444557, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0x8", + "0x20" + ] + }, + { + "pc": 9586, + "op": "DUP2", + "gas": 444554, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1" + ] + }, + { + "pc": 9587, + "op": "DUP5", + "gas": 444551, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0x40" + ] + }, + { + "pc": 9588, + "op": "KECCAK256", + "gas": 444548, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0x40", + "0x0" + ] + }, + { + "pc": 9589, + "op": "DUP1", + "gas": 444506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977" + ] + }, + { + "pc": 9590, + "op": "SLOAD", + "gas": 444503, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 9591, + "op": "PUSH4", + "gas": 443703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000" + ] + }, + { + "pc": 9596, + "op": "PUSH1", + "gas": 443700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff" + ] + }, + { + "pc": 9598, + "op": "SHL", + "gas": 443697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff", + "0xc0" + ] + }, + { + "pc": 9599, + "op": "NOT", + "gas": 443694, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 9600, + "op": "AND", + "gas": 443691, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305dffffffff000006f0000000000000000001789f8888a3a000", + "0xffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 9601, + "op": "PUSH1", + "gas": 443688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c00000000ffffffff000006f0000000000000000001789f8888a3a000" + ] + }, + { + "pc": 9603, + "op": "PUSH1", + "gas": 443685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c00000000ffffffff000006f0000000000000000001789f8888a3a000", + "0x1" + ] + }, + { + "pc": 9605, + "op": "SHL", + "gas": 443682, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c00000000ffffffff000006f0000000000000000001789f8888a3a000", + "0x1", + "0xc0" + ] + }, + { + "pc": 9606, + "op": "DUP8", + "gas": 443679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c00000000ffffffff000006f0000000000000000001789f8888a3a000", + "0x1000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 9607, + "op": "MUL", + "gas": 443676, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c00000000ffffffff000006f0000000000000000001789f8888a3a000", + "0x1000000000000000000000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 9608, + "op": "OR", + "gas": 443671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c00000000ffffffff000006f0000000000000000001789f8888a3a000", + "0x305e000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 9609, + "op": "DUP2", + "gas": 443668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f0000000000000000001789f8888a3a000" + ] + }, + { + "pc": 9610, + "op": "SSTORE", + "gas": 443665, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 9611, + "op": "ADD", + "gas": 438665, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x1", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977" + ] + }, + { + "pc": 9612, + "op": "DUP7", + "gas": 438662, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978" + ] + }, + { + "pc": 9613, + "op": "SWAP1", + "gas": 438659, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 9614, + "op": "SSTORE", + "gas": 438656, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40", + "0x41f5599db40e4c4000", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 9615, + "op": "MLOAD", + "gas": 433656, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x40" + ] + }, + { + "pc": 9616, + "op": "SWAP1", + "gas": 433653, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x80" + ] + }, + { + "pc": 9617, + "op": "SWAP3", + "gas": 433650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x305e", + "0x0", + "0x80", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 9618, + "op": "SWAP2", + "gas": 433647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x0", + "0x80", + "0x305e" + ] + }, + { + "pc": 9619, + "op": "DUP6", + "gas": 433644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x80", + "0x0" + ] + }, + { + "pc": 9620, + "op": "SWAP2", + "gas": 433641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x80", + "0x0", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 9621, + "op": "PUSH32", + "gas": 433638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x41f5599db40e4c4000", + "0x0", + "0x80" + ] + }, + { + "pc": 9654, + "op": "SWAP2", + "gas": 433635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x92e98423f8adac6e64d0608e519fd1cefb861498385c6dee70d58fc926ddc68c" + ] + }, + { + "pc": 9655, + "op": "SWAP1", + "gas": 433632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x41f5599db40e4c4000", + "0x92e98423f8adac6e64d0608e519fd1cefb861498385c6dee70d58fc926ddc68c", + "0x80", + "0x0" + ] + }, + { + "pc": 9656, + "op": "LOG4", + "gas": 433629, + "gasCost": 1875, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x305e", + "0x41f5599db40e4c4000", + "0x92e98423f8adac6e64d0608e519fd1cefb861498385c6dee70d58fc926ddc68c", + "0x0", + "0x80" + ] + }, + { + "pc": 9657, + "op": "POP", + "gas": 431754, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000", + "0x305e" + ] + }, + { + "pc": 9658, + "op": "POP", + "gas": 431752, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 9659, + "op": "JUMP", + "gas": 431750, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0xb98" + ] + }, + { + "pc": 2968, + "op": "JUMPDEST", + "gas": 431742, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60" + ] + }, + { + "pc": 2969, + "op": "PUSH1", + "gas": 431741, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60" + ] + }, + { + "pc": 2971, + "op": "DUP1", + "gas": 431738, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0" + ] + }, + { + "pc": 2972, + "op": "PUSH2", + "gas": 431735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0" + ] + }, + { + "pc": 2975, + "op": "DUP6", + "gas": 431732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4" + ] + }, + { + "pc": 2976, + "op": "PUSH2", + "gas": 431729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e" + ] + }, + { + "pc": 2979, + "op": "JUMP", + "gas": 431726, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x25bc" + ] + }, + { + "pc": 9660, + "op": "JUMPDEST", + "gas": 431718, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e" + ] + }, + { + "pc": 9661, + "op": "PUSH4", + "gas": 431717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e" + ] + }, + { + "pc": 9666, + "op": "DUP1", + "gas": 431714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9667, + "op": "DUP3", + "gas": 431711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 9668, + "op": "AND", + "gas": 431708, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9669, + "op": "PUSH1", + "gas": 431705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9671, + "op": "SWAP1", + "gas": 431702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x305e", + "0x0" + ] + }, + { + "pc": 9672, + "op": "DUP2", + "gas": 431699, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x305e" + ] + }, + { + "pc": 9673, + "op": "MSTORE", + "gas": 431696, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9674, + "op": "PUSH1", + "gas": 431693, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 9676, + "op": "PUSH1", + "gas": 431690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0xa" + ] + }, + { + "pc": 9678, + "op": "MSTORE", + "gas": 431687, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 9679, + "op": "PUSH1", + "gas": 431684, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 9681, + "op": "DUP2", + "gas": 431681, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 9682, + "op": "KECCAK256", + "gas": 431678, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x40", + "0x0" + ] + }, + { + "pc": 9683, + "op": "PUSH1", + "gas": 431636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9685, + "op": "DUP2", + "gas": 431633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 9686, + "op": "ADD", + "gas": 431630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9687, + "op": "SLOAD", + "gas": 431627, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 9688, + "op": "SWAP1", + "gas": 430827, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 9689, + "op": "SLOAD", + "gas": 430824, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 9690, + "op": "SWAP2", + "gas": 430024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0x2" + ] + }, + { + "pc": 9691, + "op": "SWAP3", + "gas": 430021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x2", + "0x9184e72a0000000003c0000000300000006", + "0x0" + ] + }, + { + "pc": 9692, + "op": "DUP4", + "gas": 430018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x2", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff" + ] + }, + { + "pc": 9693, + "op": "SWAP3", + "gas": 430015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x2", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 9694, + "op": "PUSH1", + "gas": 430012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x2" + ] + }, + { + "pc": 9696, + "op": "PUSH1", + "gas": 430009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x2", + "0x1" + ] + }, + { + "pc": 9698, + "op": "SHL", + "gas": 430006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x2", + "0x1", + "0x20" + ] + }, + { + "pc": 9699, + "op": "SWAP1", + "gas": 430003, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x2", + "0x100000000" + ] + }, + { + "pc": 9700, + "op": "SWAP3", + "gas": 430000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x100000000", + "0x2" + ] + }, + { + "pc": 9701, + "op": "DIV", + "gas": 429997, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x2", + "0xffffffff", + "0x100000000", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 9702, + "op": "AND", + "gas": 429992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x2", + "0xffffffff", + "0x9184e72a0000000003c00000003" + ] + }, + { + "pc": 9703, + "op": "GT", + "gas": 429989, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x2", + "0x3" + ] + }, + { + "pc": 9704, + "op": "ISZERO", + "gas": 429986, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 9705, + "op": "PUSH2", + "gas": 429983, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 9708, + "op": "JUMPI", + "gas": 429980, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x25f7" + ] + }, + { + "pc": 9709, + "op": "POP", + "gas": 429970, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9710, + "op": "PUSH1", + "gas": 429968, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0" + ] + }, + { + "pc": 9712, + "op": "SWAP1", + "gas": 429965, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9713, + "op": "POP", + "gas": 429962, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9714, + "op": "DUP1", + "gas": 429960, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0" + ] + }, + { + "pc": 9715, + "op": "PUSH2", + "gas": 429957, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9718, + "op": "JUMP", + "gas": 429954, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x270f" + ] + }, + { + "pc": 9999, + "op": "JUMPDEST", + "gas": 429946, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 10000, + "op": "SWAP2", + "gas": 429945, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 10001, + "op": "POP", + "gas": 429942, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x0", + "0x0", + "0x305e" + ] + }, + { + "pc": 10002, + "op": "SWAP2", + "gas": 429940, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x0", + "0x0" + ] + }, + { + "pc": 10003, + "op": "JUMP", + "gas": 429937, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0x0", + "0x0", + "0xba4" + ] + }, + { + "pc": 2980, + "op": "JUMPDEST", + "gas": 429929, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 2981, + "op": "SWAP2", + "gas": 429928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 2982, + "op": "POP", + "gas": 429925, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 2983, + "op": "SWAP2", + "gas": 429923, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 2984, + "op": "POP", + "gas": 429920, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 2985, + "op": "PUSH2", + "gas": 429918, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0" + ] + }, + { + "pc": 2988, + "op": "DUP6", + "gas": 429915, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1" + ] + }, + { + "pc": 2989, + "op": "PUSH2", + "gas": 429912, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 2992, + "op": "JUMP", + "gas": 429909, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x2714" + ] + }, + { + "pc": 10004, + "op": "JUMPDEST", + "gas": 429901, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 10005, + "op": "PUSH4", + "gas": 429900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 10010, + "op": "DUP2", + "gas": 429897, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 10011, + "op": "AND", + "gas": 429894, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 10012, + "op": "PUSH1", + "gas": 429891, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x305e" + ] + }, + { + "pc": 10014, + "op": "SWAP1", + "gas": 429888, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x305e", + "0x0" + ] + }, + { + "pc": 10015, + "op": "DUP2", + "gas": 429885, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x0", + "0x305e" + ] + }, + { + "pc": 10016, + "op": "MSTORE", + "gas": 429882, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 10017, + "op": "PUSH1", + "gas": 429879, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x0" + ] + }, + { + "pc": 10019, + "op": "PUSH1", + "gas": 429876, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x0", + "0xa" + ] + }, + { + "pc": 10021, + "op": "MSTORE", + "gas": 429873, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 10022, + "op": "PUSH1", + "gas": 429870, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x0" + ] + }, + { + "pc": 10024, + "op": "SWAP1", + "gas": 429867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 10025, + "op": "KECCAK256", + "gas": 429864, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 10026, + "op": "PUSH1", + "gas": 429822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 10028, + "op": "ADD", + "gas": 429819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 10029, + "op": "SLOAD", + "gas": 429816, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 10030, + "op": "PUSH1", + "gas": 429016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 10032, + "op": "PUSH1", + "gas": 429013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006", + "0x1" + ] + }, + { + "pc": 10034, + "op": "SHL", + "gas": 429010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006", + "0x1", + "0x60" + ] + }, + { + "pc": 10035, + "op": "SWAP1", + "gas": 429007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006", + "0x1000000000000000000000000" + ] + }, + { + "pc": 10036, + "op": "DIV", + "gas": 429004, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x1000000000000000000000000", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 10037, + "op": "PUSH1", + "gas": 428999, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10039, + "op": "PUSH1", + "gas": 428996, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1" + ] + }, + { + "pc": 10041, + "op": "PUSH1", + "gas": 428993, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1", + "0x1" + ] + }, + { + "pc": 10043, + "op": "SHL", + "gas": 428990, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10044, + "op": "SUB", + "gas": 428987, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10045, + "op": "AND", + "gas": 428984, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10046, + "op": "PUSH2", + "gas": 428981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10049, + "op": "PUSH2", + "gas": 428978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745" + ] + }, + { + "pc": 10052, + "op": "JUMP", + "gas": 428975, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x405b" + ] + }, + { + "pc": 16475, + "op": "JUMPDEST", + "gas": 428967, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745" + ] + }, + { + "pc": 16476, + "op": "PUSH1", + "gas": 428966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745" + ] + }, + { + "pc": 16478, + "op": "DUP1", + "gas": 428963, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40" + ] + }, + { + "pc": 16479, + "op": "MLOAD", + "gas": 428960, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x40" + ] + }, + { + "pc": 16480, + "op": "DUP1", + "gas": 428957, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x80" + ] + }, + { + "pc": 16481, + "op": "DUP3", + "gas": 428954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x80", + "0x80" + ] + }, + { + "pc": 16482, + "op": "ADD", + "gas": 428951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x80", + "0x80", + "0x40" + ] + }, + { + "pc": 16483, + "op": "SWAP1", + "gas": 428948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x80", + "0xc0" + ] + }, + { + "pc": 16484, + "op": "SWAP2", + "gas": 428945, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0xc0", + "0x80" + ] + }, + { + "pc": 16485, + "op": "MSTORE", + "gas": 428942, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x80", + "0xc0", + "0x40" + ] + }, + { + "pc": 16486, + "op": "PUSH1", + "gas": 428939, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x80" + ] + }, + { + "pc": 16488, + "op": "DUP1", + "gas": 428936, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x80", + "0x0" + ] + }, + { + "pc": 16489, + "op": "DUP3", + "gas": 428933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 16490, + "op": "MSTORE", + "gas": 428930, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x80", + "0x0", + "0x0", + "0x80" + ] + }, + { + "pc": 16491, + "op": "PUSH1", + "gas": 428924, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x80", + "0x0" + ] + }, + { + "pc": 16493, + "op": "DUP3", + "gas": 428921, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 16494, + "op": "ADD", + "gas": 428918, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 16495, + "op": "MSTORE", + "gas": 428915, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x80", + "0x0", + "0xa0" + ] + }, + { + "pc": 16496, + "op": "SWAP1", + "gas": 428909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x80" + ] + }, + { + "pc": 16497, + "op": "JUMP", + "gas": 428906, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x80", + "0x2745" + ] + }, + { + "pc": 10053, + "op": "JUMPDEST", + "gas": 428898, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x80" + ] + }, + { + "pc": 10054, + "op": "POP", + "gas": 428897, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x80" + ] + }, + { + "pc": 10055, + "op": "PUSH1", + "gas": 428895, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10057, + "op": "DUP1", + "gas": 428892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40" + ] + }, + { + "pc": 10058, + "op": "MLOAD", + "gas": 428889, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x40" + ] + }, + { + "pc": 10059, + "op": "DUP1", + "gas": 428886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0xc0" + ] + }, + { + "pc": 10060, + "op": "DUP3", + "gas": 428883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0xc0", + "0xc0" + ] + }, + { + "pc": 10061, + "op": "ADD", + "gas": 428880, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0xc0", + "0xc0", + "0x40" + ] + }, + { + "pc": 10062, + "op": "SWAP1", + "gas": 428877, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0xc0", + "0x100" + ] + }, + { + "pc": 10063, + "op": "SWAP2", + "gas": 428874, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x100", + "0xc0" + ] + }, + { + "pc": 10064, + "op": "MSTORE", + "gas": 428871, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x100", + "0x40" + ] + }, + { + "pc": 10065, + "op": "PUSH1", + "gas": 428868, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0" + ] + }, + { + "pc": 10067, + "op": "SLOAD", + "gas": 428865, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xd" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce449402e1800000000000000000003c954cee42128000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 10068, + "op": "PUSH1", + "gas": 428065, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000" + ] + }, + { + "pc": 10070, + "op": "PUSH1", + "gas": 428062, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x1" + ] + }, + { + "pc": 10072, + "op": "PUSH1", + "gas": 428059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x1", + "0x1" + ] + }, + { + "pc": 10074, + "op": "SHL", + "gas": 428056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10075, + "op": "SUB", + "gas": 428053, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10076, + "op": "DUP1", + "gas": 428050, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10077, + "op": "DUP3", + "gas": 428047, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10078, + "op": "AND", + "gas": 428044, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000003c954cee42128000" + ] + }, + { + "pc": 10079, + "op": "DUP1", + "gas": 428041, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0xffffffffffffffffffffffffffffffff", + "0x3c954cee42128000" + ] + }, + { + "pc": 10080, + "op": "DUP5", + "gas": 428038, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0xffffffffffffffffffffffffffffffff", + "0x3c954cee42128000", + "0x3c954cee42128000" + ] + }, + { + "pc": 10081, + "op": "MSTORE", + "gas": 428035, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0xffffffffffffffffffffffffffffffff", + "0x3c954cee42128000", + "0x3c954cee42128000", + "0xc0" + ] + }, + { + "pc": 10082, + "op": "PUSH1", + "gas": 428029, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0xffffffffffffffffffffffffffffffff", + "0x3c954cee42128000" + ] + }, + { + "pc": 10084, + "op": "PUSH1", + "gas": 428026, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0xffffffffffffffffffffffffffffffff", + "0x3c954cee42128000", + "0x1" + ] + }, + { + "pc": 10086, + "op": "SHL", + "gas": 428023, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0xffffffffffffffffffffffffffffffff", + "0x3c954cee42128000", + "0x1", + "0x80" + ] + }, + { + "pc": 10087, + "op": "SWAP1", + "gas": 428020, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0xffffffffffffffffffffffffffffffff", + "0x3c954cee42128000", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10088, + "op": "SWAP3", + "gas": 428017, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0xffffffffffffffffffffffffffffffff", + "0x100000000000000000000000000000000", + "0x3c954cee42128000" + ] + }, + { + "pc": 10089, + "op": "DIV", + "gas": 428014, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c954cee42128000", + "0xffffffffffffffffffffffffffffffff", + "0x100000000000000000000000000000000", + "0x8ce449402e1800000000000000000003c954cee42128000" + ] + }, + { + "pc": 10090, + "op": "AND", + "gas": 428009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c954cee42128000", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e18000" + ] + }, + { + "pc": 10091, + "op": "PUSH1", + "gas": 428006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c954cee42128000", + "0x8ce449402e18000" + ] + }, + { + "pc": 10093, + "op": "DUP4", + "gas": 428003, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c954cee42128000", + "0x8ce449402e18000", + "0x20" + ] + }, + { + "pc": 10094, + "op": "ADD", + "gas": 428000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c954cee42128000", + "0x8ce449402e18000", + "0x20", + "0xc0" + ] + }, + { + "pc": 10095, + "op": "MSTORE", + "gas": 427997, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c954cee42128000", + "0x8ce449402e18000", + "0xe0" + ] + }, + { + "pc": 10096, + "op": "PUSH2", + "gas": 427991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c954cee42128000" + ] + }, + { + "pc": 10099, + "op": "SWAP1", + "gas": 427988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c954cee42128000", + "0x277f" + ] + }, + { + "pc": 10100, + "op": "DUP4", + "gas": 427985, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000" + ] + }, + { + "pc": 10101, + "op": "PUSH4", + "gas": 427982, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000" + ] + }, + { + "pc": 10106, + "op": "PUSH2", + "gas": 427979, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0xffffffff" + ] + }, + { + "pc": 10109, + "op": "AND", + "gas": 427976, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0xffffffff", + "0x2e8a" + ] + }, + { + "pc": 10110, + "op": "JUMP", + "gas": 427973, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x2e8a" + ] + }, + { + "pc": 11914, + "op": "JUMPDEST", + "gas": 427965, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000" + ] + }, + { + "pc": 11915, + "op": "PUSH1", + "gas": 427964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000" + ] + }, + { + "pc": 11917, + "op": "DUP3", + "gas": 427961, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 11918, + "op": "PUSH1", + "gas": 427958, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x3c954cee42128000" + ] + }, + { + "pc": 11920, + "op": "PUSH1", + "gas": 427955, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x3c954cee42128000", + "0x1" + ] + }, + { + "pc": 11922, + "op": "PUSH1", + "gas": 427952, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x3c954cee42128000", + "0x1", + "0x1" + ] + }, + { + "pc": 11924, + "op": "SHL", + "gas": 427949, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x3c954cee42128000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 11925, + "op": "SUB", + "gas": 427946, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x3c954cee42128000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 11926, + "op": "AND", + "gas": 427943, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x3c954cee42128000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 11927, + "op": "DUP3", + "gas": 427940, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x3c954cee42128000" + ] + }, + { + "pc": 11928, + "op": "PUSH1", + "gas": 427937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x3c954cee42128000", + "0x9184e72a000" + ] + }, + { + "pc": 11930, + "op": "PUSH1", + "gas": 427934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x3c954cee42128000", + "0x9184e72a000", + "0x1" + ] + }, + { + "pc": 11932, + "op": "PUSH1", + "gas": 427931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x3c954cee42128000", + "0x9184e72a000", + "0x1", + "0x1" + ] + }, + { + "pc": 11934, + "op": "SHL", + "gas": 427928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x3c954cee42128000", + "0x9184e72a000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 11935, + "op": "SUB", + "gas": 427925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x3c954cee42128000", + "0x9184e72a000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 11936, + "op": "AND", + "gas": 427922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x3c954cee42128000", + "0x9184e72a000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 11937, + "op": "GT", + "gas": 427919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x3c954cee42128000", + "0x9184e72a000" + ] + }, + { + "pc": 11938, + "op": "ISZERO", + "gas": 427916, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x0" + ] + }, + { + "pc": 11939, + "op": "PUSH2", + "gas": 427913, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x1" + ] + }, + { + "pc": 11942, + "op": "JUMPI", + "gas": 427910, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0", + "0x1", + "0x2ef3" + ] + }, + { + "pc": 12019, + "op": "JUMPDEST", + "gas": 427900, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 12020, + "op": "POP", + "gas": 427899, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 12021, + "op": "SWAP1", + "gas": 427897, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c954cee42128000", + "0x9184e72a000" + ] + }, + { + "pc": 12022, + "op": "SUB", + "gas": 427894, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x9184e72a000", + "0x3c954cee42128000" + ] + }, + { + "pc": 12023, + "op": "SWAP1", + "gas": 427891, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x277f", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 12024, + "op": "JUMP", + "gas": 427888, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c9543d5f39fe000", + "0x277f" + ] + }, + { + "pc": 10111, + "op": "JUMPDEST", + "gas": 427880, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10112, + "op": "PUSH1", + "gas": 427879, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10114, + "op": "PUSH1", + "gas": 427876, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c9543d5f39fe000", + "0x1" + ] + }, + { + "pc": 10116, + "op": "PUSH1", + "gas": 427873, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c9543d5f39fe000", + "0x1", + "0x1" + ] + }, + { + "pc": 10118, + "op": "SHL", + "gas": 427870, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c9543d5f39fe000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10119, + "op": "SUB", + "gas": 427867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c9543d5f39fe000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10120, + "op": "SWAP1", + "gas": 427864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10121, + "op": "DUP2", + "gas": 427861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10122, + "op": "AND", + "gas": 427858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x3c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10123, + "op": "DUP3", + "gas": 427855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10124, + "op": "MSTORE", + "gas": 427852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x3c9543d5f39fe000", + "0xc0" + ] + }, + { + "pc": 10125, + "op": "PUSH1", + "gas": 427849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10127, + "op": "DUP3", + "gas": 427846, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x20" + ] + }, + { + "pc": 10128, + "op": "ADD", + "gas": 427843, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0xc0" + ] + }, + { + "pc": 10129, + "op": "MLOAD", + "gas": 427840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0xe0" + ] + }, + { + "pc": 10130, + "op": "PUSH2", + "gas": 427837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e18000" + ] + }, + { + "pc": 10133, + "op": "SWAP2", + "gas": 427834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e18000", + "0x27a2" + ] + }, + { + "pc": 10134, + "op": "AND", + "gas": 427831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10135, + "op": "DUP4", + "gas": 427828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000" + ] + }, + { + "pc": 10136, + "op": "PUSH4", + "gas": 427825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000" + ] + }, + { + "pc": 10141, + "op": "PUSH2", + "gas": 427822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0xffffffff" + ] + }, + { + "pc": 10144, + "op": "AND", + "gas": 427819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0xffffffff", + "0x36ce" + ] + }, + { + "pc": 10145, + "op": "JUMP", + "gas": 427816, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x36ce" + ] + }, + { + "pc": 14030, + "op": "JUMPDEST", + "gas": 427808, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000" + ] + }, + { + "pc": 14031, + "op": "PUSH1", + "gas": 427807, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000" + ] + }, + { + "pc": 14033, + "op": "DUP3", + "gas": 427804, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 14034, + "op": "DUP3", + "gas": 427801, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce449402e18000" + ] + }, + { + "pc": 14035, + "op": "ADD", + "gas": 427798, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce449402e18000", + "0x9184e72a000" + ] + }, + { + "pc": 14036, + "op": "PUSH1", + "gas": 427795, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000" + ] + }, + { + "pc": 14038, + "op": "PUSH1", + "gas": 427792, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0x1" + ] + }, + { + "pc": 14040, + "op": "PUSH1", + "gas": 427789, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0x1", + "0x1" + ] + }, + { + "pc": 14042, + "op": "SHL", + "gas": 427786, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 14043, + "op": "SUB", + "gas": 427783, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 14044, + "op": "DUP1", + "gas": 427780, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14045, + "op": "DUP6", + "gas": 427777, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14046, + "op": "AND", + "gas": 427774, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e18000" + ] + }, + { + "pc": 14047, + "op": "SWAP1", + "gas": 427771, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e18000" + ] + }, + { + "pc": 14048, + "op": "DUP3", + "gas": 427768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0x8ce449402e18000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14049, + "op": "AND", + "gas": 427765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0x8ce449402e18000", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000" + ] + }, + { + "pc": 14050, + "op": "LT", + "gas": 427762, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0x8ce449402e18000", + "0x8ce4dac51542000" + ] + }, + { + "pc": 14051, + "op": "ISZERO", + "gas": 427759, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0x0" + ] + }, + { + "pc": 14052, + "op": "PUSH2", + "gas": 427756, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0x1" + ] + }, + { + "pc": 14055, + "op": "JUMPI", + "gas": 427753, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0x1", + "0x2bf3" + ] + }, + { + "pc": 11251, + "op": "JUMPDEST", + "gas": 427743, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000" + ] + }, + { + "pc": 11252, + "op": "SWAP4", + "gas": 427742, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27a2", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000" + ] + }, + { + "pc": 11253, + "op": "SWAP3", + "gas": 427739, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce4dac51542000", + "0x8ce449402e18000", + "0x9184e72a000", + "0x0", + "0x27a2" + ] + }, + { + "pc": 11254, + "op": "POP", + "gas": 427736, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce4dac51542000", + "0x27a2", + "0x9184e72a000", + "0x0", + "0x8ce449402e18000" + ] + }, + { + "pc": 11255, + "op": "POP", + "gas": 427734, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce4dac51542000", + "0x27a2", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 11256, + "op": "POP", + "gas": 427732, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce4dac51542000", + "0x27a2", + "0x9184e72a000" + ] + }, + { + "pc": 11257, + "op": "JUMP", + "gas": 427730, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce4dac51542000", + "0x27a2" + ] + }, + { + "pc": 10146, + "op": "JUMPDEST", + "gas": 427722, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce4dac51542000" + ] + }, + { + "pc": 10147, + "op": "PUSH1", + "gas": 427721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce4dac51542000" + ] + }, + { + "pc": 10149, + "op": "PUSH1", + "gas": 427718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce4dac51542000", + "0x1" + ] + }, + { + "pc": 10151, + "op": "PUSH1", + "gas": 427715, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce4dac51542000", + "0x1", + "0x1" + ] + }, + { + "pc": 10153, + "op": "SHL", + "gas": 427712, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce4dac51542000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10154, + "op": "SUB", + "gas": 427709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce4dac51542000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10155, + "op": "SWAP1", + "gas": 427706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x8ce4dac51542000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10156, + "op": "DUP2", + "gas": 427703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000" + ] + }, + { + "pc": 10157, + "op": "AND", + "gas": 427700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10158, + "op": "PUSH1", + "gas": 427697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000" + ] + }, + { + "pc": 10160, + "op": "DUP1", + "gas": 427694, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20" + ] + }, + { + "pc": 10161, + "op": "DUP5", + "gas": 427691, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20", + "0x20" + ] + }, + { + "pc": 10162, + "op": "ADD", + "gas": 427688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20", + "0x20", + "0xc0" + ] + }, + { + "pc": 10163, + "op": "DUP3", + "gas": 427685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20", + "0xe0" + ] + }, + { + "pc": 10164, + "op": "SWAP1", + "gas": 427682, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20", + "0xe0", + "0x8ce4dac51542000" + ] + }, + { + "pc": 10165, + "op": "MSTORE", + "gas": 427679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20", + "0x8ce4dac51542000", + "0xe0" + ] + }, + { + "pc": 10166, + "op": "DUP4", + "gas": 427676, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20" + ] + }, + { + "pc": 10167, + "op": "MLOAD", + "gas": 427673, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20", + "0xc0" + ] + }, + { + "pc": 10168, + "op": "PUSH1", + "gas": 427670, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10170, + "op": "DUP1", + "gas": 427667, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20", + "0x3c9543d5f39fe000", + "0xd" + ] + }, + { + "pc": 10171, + "op": "SLOAD", + "gas": 427664, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20", + "0x3c9543d5f39fe000", + "0xd", + "0xd" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce449402e1800000000000000000003c954cee42128000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 10172, + "op": "PUSH1", + "gas": 426864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20", + "0x3c9543d5f39fe000", + "0xd", + "0x8ce449402e1800000000000000000003c954cee42128000" + ] + }, + { + "pc": 10174, + "op": "PUSH1", + "gas": 426861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20", + "0x3c9543d5f39fe000", + "0xd", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x1" + ] + }, + { + "pc": 10176, + "op": "SHL", + "gas": 426858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20", + "0x3c9543d5f39fe000", + "0xd", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x1", + "0x80" + ] + }, + { + "pc": 10177, + "op": "SWAP1", + "gas": 426855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20", + "0x3c9543d5f39fe000", + "0xd", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10178, + "op": "SWAP5", + "gas": 426852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x20", + "0x3c9543d5f39fe000", + "0xd", + "0x100000000000000000000000000000000", + "0x8ce449402e1800000000000000000003c954cee42128000" + ] + }, + { + "pc": 10179, + "op": "MUL", + "gas": 426849, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x20", + "0x3c9543d5f39fe000", + "0xd", + "0x100000000000000000000000000000000", + "0x8ce4dac51542000" + ] + }, + { + "pc": 10180, + "op": "SWAP2", + "gas": 426844, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x20", + "0x3c9543d5f39fe000", + "0xd", + "0x8ce4dac5154200000000000000000000000000000000000" + ] + }, + { + "pc": 10181, + "op": "DUP6", + "gas": 426841, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0xd", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10182, + "op": "AND", + "gas": 426838, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0xd", + "0x3c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10183, + "op": "PUSH1", + "gas": 426835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0xd", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10185, + "op": "PUSH1", + "gas": 426832, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0xd", + "0x3c9543d5f39fe000", + "0x1" + ] + }, + { + "pc": 10187, + "op": "PUSH1", + "gas": 426829, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0xd", + "0x3c9543d5f39fe000", + "0x1", + "0x1" + ] + }, + { + "pc": 10189, + "op": "SHL", + "gas": 426826, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0xd", + "0x3c9543d5f39fe000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10190, + "op": "SUB", + "gas": 426823, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0xd", + "0x3c9543d5f39fe000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10191, + "op": "NOT", + "gas": 426820, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0xd", + "0x3c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10192, + "op": "SWAP1", + "gas": 426817, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0xd", + "0x3c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" + ] + }, + { + "pc": 10193, + "op": "SWAP5", + "gas": 426814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000003c954cee42128000", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0xd", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10194, + "op": "AND", + "gas": 426811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x3c9543d5f39fe000", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0xd", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", + "0x8ce449402e1800000000000000000003c954cee42128000" + ] + }, + { + "pc": 10195, + "op": "SWAP4", + "gas": 426808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x3c9543d5f39fe000", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0xd", + "0x8ce449402e1800000000000000000000000000000000000" + ] + }, + { + "pc": 10196, + "op": "SWAP1", + "gas": 426805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000000000000000000000", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0xd", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10197, + "op": "SWAP4", + "gas": 426802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x8ce449402e1800000000000000000000000000000000000", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0x3c9543d5f39fe000", + "0xd" + ] + }, + { + "pc": 10198, + "op": "OR", + "gas": 426799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0x3c9543d5f39fe000", + "0x8ce449402e1800000000000000000000000000000000000" + ] + }, + { + "pc": 10199, + "op": "DUP5", + "gas": 426796, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0x8ce449402e1800000000000000000003c9543d5f39fe000" + ] + }, + { + "pc": 10200, + "op": "AND", + "gas": 426793, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0x8ce449402e1800000000000000000003c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10201, + "op": "OR", + "gas": 426790, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce4dac5154200000000000000000000000000000000000", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10202, + "op": "SWAP1", + "gas": 426787, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000" + ] + }, + { + "pc": 10203, + "op": "SWAP2", + "gas": 426784, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x20" + ] + }, + { + "pc": 10204, + "op": "SSTORE", + "gas": 426781, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0xd" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce4dac5154200000000000000000003c9543d5f39fe000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 10205, + "op": "CALLER", + "gas": 421781, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x20" + ] + }, + { + "pc": 10206, + "op": "PUSH1", + "gas": 421779, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 10208, + "op": "SWAP1", + "gas": 421776, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x0" + ] + }, + { + "pc": 10209, + "op": "DUP2", + "gas": 421773, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 10210, + "op": "MSTORE", + "gas": 421770, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x0" + ] + }, + { + "pc": 10211, + "op": "PUSH1", + "gas": 421767, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0" + ] + }, + { + "pc": 10213, + "op": "SWAP1", + "gas": 421764, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0", + "0x8" + ] + }, + { + "pc": 10214, + "op": "SWAP2", + "gas": 421761, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x8", + "0x0" + ] + }, + { + "pc": 10215, + "op": "MSTORE", + "gas": 421758, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 10216, + "op": "PUSH1", + "gas": 421755, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 10218, + "op": "SWAP1", + "gas": 421752, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 10219, + "op": "KECCAK256", + "gas": 421749, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x40", + "0x0" + ] + }, + { + "pc": 10220, + "op": "SLOAD", + "gas": 421707, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce4dac5154200000000000000000003c9543d5f39fe000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 10221, + "op": "PUSH2", + "gas": 420907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x305c0000305effffffff000006f0000000000000000001789f8888a3a000" + ] + }, + { + "pc": 10224, + "op": "SWAP2", + "gas": 420904, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0x27fd" + ] + }, + { + "pc": 10225, + "op": "AND", + "gas": 420901, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10226, + "op": "DUP4", + "gas": 420898, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000" + ] + }, + { + "pc": 10227, + "op": "PUSH4", + "gas": 420895, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000" + ] + }, + { + "pc": 10232, + "op": "PUSH2", + "gas": 420892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0xffffffff" + ] + }, + { + "pc": 10235, + "op": "AND", + "gas": 420889, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0xffffffff", + "0x36ce" + ] + }, + { + "pc": 10236, + "op": "JUMP", + "gas": 420886, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x36ce" + ] + }, + { + "pc": 14030, + "op": "JUMPDEST", + "gas": 420878, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000" + ] + }, + { + "pc": 14031, + "op": "PUSH1", + "gas": 420877, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000" + ] + }, + { + "pc": 14033, + "op": "DUP3", + "gas": 420874, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 14034, + "op": "DUP3", + "gas": 420871, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x1789f8888a3a000" + ] + }, + { + "pc": 14035, + "op": "ADD", + "gas": 420868, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x1789f8888a3a000", + "0x9184e72a000" + ] + }, + { + "pc": 14036, + "op": "PUSH1", + "gas": 420865, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000" + ] + }, + { + "pc": 14038, + "op": "PUSH1", + "gas": 420862, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000", + "0x1" + ] + }, + { + "pc": 14040, + "op": "PUSH1", + "gas": 420859, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000", + "0x1", + "0x1" + ] + }, + { + "pc": 14042, + "op": "SHL", + "gas": 420856, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 14043, + "op": "SUB", + "gas": 420853, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 14044, + "op": "DUP1", + "gas": 420850, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14045, + "op": "DUP6", + "gas": 420847, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14046, + "op": "AND", + "gas": 420844, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff", + "0x1789f8888a3a000" + ] + }, + { + "pc": 14047, + "op": "SWAP1", + "gas": 420841, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000", + "0xffffffffffffffffffffffffffffffff", + "0x1789f8888a3a000" + ] + }, + { + "pc": 14048, + "op": "DUP3", + "gas": 420838, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000", + "0x1789f8888a3a000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14049, + "op": "AND", + "gas": 420835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000", + "0x1789f8888a3a000", + "0xffffffffffffffffffffffffffffffff", + "0x178a8a0d7164000" + ] + }, + { + "pc": 14050, + "op": "LT", + "gas": 420832, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000", + "0x1789f8888a3a000", + "0x178a8a0d7164000" + ] + }, + { + "pc": 14051, + "op": "ISZERO", + "gas": 420829, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000", + "0x0" + ] + }, + { + "pc": 14052, + "op": "PUSH2", + "gas": 420826, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000", + "0x1" + ] + }, + { + "pc": 14055, + "op": "JUMPI", + "gas": 420823, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000", + "0x1", + "0x2bf3" + ] + }, + { + "pc": 11251, + "op": "JUMPDEST", + "gas": 420813, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000" + ] + }, + { + "pc": 11252, + "op": "SWAP4", + "gas": 420812, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x27fd", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x178a8a0d7164000" + ] + }, + { + "pc": 11253, + "op": "SWAP3", + "gas": 420809, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x1789f8888a3a000", + "0x9184e72a000", + "0x0", + "0x27fd" + ] + }, + { + "pc": 11254, + "op": "POP", + "gas": 420806, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x27fd", + "0x9184e72a000", + "0x0", + "0x1789f8888a3a000" + ] + }, + { + "pc": 11255, + "op": "POP", + "gas": 420804, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x27fd", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 11256, + "op": "POP", + "gas": 420802, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x27fd", + "0x9184e72a000" + ] + }, + { + "pc": 11257, + "op": "JUMP", + "gas": 420800, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x27fd" + ] + }, + { + "pc": 10237, + "op": "JUMPDEST", + "gas": 420792, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000" + ] + }, + { + "pc": 10238, + "op": "CALLER", + "gas": 420791, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000" + ] + }, + { + "pc": 10239, + "op": "PUSH1", + "gas": 420789, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 10241, + "op": "SWAP1", + "gas": 420786, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x0" + ] + }, + { + "pc": 10242, + "op": "DUP2", + "gas": 420783, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7" + ] + }, + { + "pc": 10243, + "op": "MSTORE", + "gas": 420780, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x80a173bf40399ea6ff73a4d7840097ca936eb9e7", + "0x0" + ] + }, + { + "pc": 10244, + "op": "PUSH1", + "gas": 420777, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0" + ] + }, + { + "pc": 10246, + "op": "PUSH1", + "gas": 420774, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x8" + ] + }, + { + "pc": 10248, + "op": "MSTORE", + "gas": 420771, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 10249, + "op": "PUSH1", + "gas": 420768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0" + ] + }, + { + "pc": 10251, + "op": "DUP1", + "gas": 420765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40" + ] + }, + { + "pc": 10252, + "op": "DUP3", + "gas": 420762, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0x40" + ] + }, + { + "pc": 10253, + "op": "KECCAK256", + "gas": 420759, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0x40", + "0x0" + ] + }, + { + "pc": 10254, + "op": "DUP1", + "gas": 420717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977" + ] + }, + { + "pc": 10255, + "op": "SLOAD", + "gas": 420714, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce4dac5154200000000000000000003c9543d5f39fe000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 10256, + "op": "PUSH1", + "gas": 419914, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f0000000000000000001789f8888a3a000" + ] + }, + { + "pc": 10258, + "op": "PUSH1", + "gas": 419911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0x1" + ] + }, + { + "pc": 10260, + "op": "PUSH1", + "gas": 419908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0x1", + "0x1" + ] + }, + { + "pc": 10262, + "op": "SHL", + "gas": 419905, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10263, + "op": "SUB", + "gas": 419902, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10264, + "op": "NOT", + "gas": 419899, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10265, + "op": "AND", + "gas": 419896, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f0000000000000000001789f8888a3a000", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" + ] + }, + { + "pc": 10266, + "op": "PUSH1", + "gas": 419893, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f000000000000000000000000000000000" + ] + }, + { + "pc": 10268, + "op": "PUSH1", + "gas": 419890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f000000000000000000000000000000000", + "0x1" + ] + }, + { + "pc": 10270, + "op": "PUSH1", + "gas": 419887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f000000000000000000000000000000000", + "0x1", + "0x1" + ] + }, + { + "pc": 10272, + "op": "SHL", + "gas": 419884, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f000000000000000000000000000000000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10273, + "op": "SUB", + "gas": 419881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f000000000000000000000000000000000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10274, + "op": "SWAP5", + "gas": 419878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x178a8a0d7164000", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10275, + "op": "DUP6", + "gas": 419875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f000000000000000000000000000000000", + "0x178a8a0d7164000" + ] + }, + { + "pc": 10276, + "op": "AND", + "gas": 419872, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f000000000000000000000000000000000", + "0x178a8a0d7164000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10277, + "op": "OR", + "gas": 419869, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f000000000000000000000000000000000", + "0x178a8a0d7164000" + ] + }, + { + "pc": 10278, + "op": "SWAP1", + "gas": 419866, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977", + "0x305c0000305effffffff000006f000000000000000000178a8a0d7164000" + ] + }, + { + "pc": 10279, + "op": "SSTORE", + "gas": 419863, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x305c0000305effffffff000006f000000000000000000178a8a0d7164000", + "0xa2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce4dac5154200000000000000000003c9543d5f39fe000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305effffffff000006f000000000000000000178a8a0d7164000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 10280, + "op": "DUP4", + "gas": 419063, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 10281, + "op": "MLOAD", + "gas": 419060, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0xc0" + ] + }, + { + "pc": 10282, + "op": "SWAP1", + "gas": 419057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10283, + "op": "MLOAD", + "gas": 419054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x3c9543d5f39fe000", + "0x40" + ] + }, + { + "pc": 10284, + "op": "SWAP3", + "gas": 419051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x3c9543d5f39fe000", + "0x100" + ] + }, + { + "pc": 10285, + "op": "AND", + "gas": 419048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x100", + "0x0", + "0x3c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10286, + "op": "SWAP2", + "gas": 419045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x100", + "0x0", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10287, + "op": "PUSH32", + "gas": 419042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c9543d5f39fe000", + "0x0", + "0x100" + ] + }, + { + "pc": 10320, + "op": "SWAP2", + "gas": 419039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c9543d5f39fe000", + "0x0", + "0x100", + "0xfe25c73e3b9089fac37d55c4c7efcba6f04af04cebd2fc4d6d7dbb07e1e5234f" + ] + }, + { + "pc": 10321, + "op": "SWAP1", + "gas": 419036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c9543d5f39fe000", + "0xfe25c73e3b9089fac37d55c4c7efcba6f04af04cebd2fc4d6d7dbb07e1e5234f", + "0x100", + "0x0" + ] + }, + { + "pc": 10322, + "op": "LOG2", + "gas": 419033, + "gasCost": 1125, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0", + "0x3c9543d5f39fe000", + "0xfe25c73e3b9089fac37d55c4c7efcba6f04af04cebd2fc4d6d7dbb07e1e5234f", + "0x0", + "0x100" + ] + }, + { + "pc": 10323, + "op": "POP", + "gas": 417908, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xc0" + ] + }, + { + "pc": 10324, + "op": "POP", + "gas": 417906, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10325, + "op": "POP", + "gas": 417904, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 10326, + "op": "JUMP", + "gas": 417902, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbb1" + ] + }, + { + "pc": 2993, + "op": "JUMPDEST", + "gas": 417894, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0" + ] + }, + { + "pc": 2994, + "op": "PUSH2", + "gas": 417893, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0" + ] + }, + { + "pc": 2997, + "op": "DUP6", + "gas": 417890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba" + ] + }, + { + "pc": 2998, + "op": "PUSH2", + "gas": 417887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e" + ] + }, + { + "pc": 3001, + "op": "JUMP", + "gas": 417884, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0x2857" + ] + }, + { + "pc": 10327, + "op": "JUMPDEST", + "gas": 417876, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e" + ] + }, + { + "pc": 10328, + "op": "PUSH4", + "gas": 417875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e" + ] + }, + { + "pc": 10333, + "op": "DUP1", + "gas": 417872, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 10334, + "op": "DUP3", + "gas": 417869, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 10335, + "op": "AND", + "gas": 417866, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 10336, + "op": "PUSH1", + "gas": 417863, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 10338, + "op": "SWAP1", + "gas": 417860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x305e", + "0x0" + ] + }, + { + "pc": 10339, + "op": "DUP2", + "gas": 417857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0x305e" + ] + }, + { + "pc": 10340, + "op": "MSTORE", + "gas": 417854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 10341, + "op": "PUSH1", + "gas": 417851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 10343, + "op": "PUSH1", + "gas": 417848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0xa" + ] + }, + { + "pc": 10345, + "op": "MSTORE", + "gas": 417845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 10346, + "op": "PUSH1", + "gas": 417842, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 10348, + "op": "SWAP1", + "gas": 417839, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 10349, + "op": "KECCAK256", + "gas": 417836, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x40", + "0x0" + ] + }, + { + "pc": 10350, + "op": "PUSH1", + "gas": 417794, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 10352, + "op": "DUP2", + "gas": 417791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 10353, + "op": "ADD", + "gas": 417788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 10354, + "op": "SLOAD", + "gas": 417785, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce4dac5154200000000000000000003c9543d5f39fe000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305effffffff000006f000000000000000000178a8a0d7164000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 10355, + "op": "SWAP1", + "gas": 416985, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 10356, + "op": "SLOAD", + "gas": 416982, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x9184e72a0000000003c0000000300000006", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce4dac5154200000000000000000003c9543d5f39fe000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7977": "0000305c0000305effffffff000006f000000000000000000178a8a0d7164000", + "0a2556e564fc76cc1520e2152c8f7c48efb4ceb3cd01a0fc2e9c24dd665a7978": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000" + } + }, + { + "pc": 10357, + "op": "SWAP2", + "gas": 416182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0xffffffff", + "0x9184e72a0000000003c0000000300000006", + "0x2" + ] + }, + { + "pc": 10358, + "op": "AND", + "gas": 416179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0x2", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff" + ] + }, + { + "pc": 10359, + "op": "GT", + "gas": 416176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0x2", + "0x6" + ] + }, + { + "pc": 10360, + "op": "ISZERO", + "gas": 416173, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0x1" + ] + }, + { + "pc": 10361, + "op": "PUSH2", + "gas": 416170, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0x0" + ] + }, + { + "pc": 10364, + "op": "JUMPI", + "gas": 416167, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0x0", + "0x2881" + ] + }, + { + "pc": 10365, + "op": "PUSH2", + "gas": 416157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e" + ] + }, + { + "pc": 10368, + "op": "JUMP", + "gas": 416154, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e", + "0x24e0" + ] + }, + { + "pc": 9440, + "op": "JUMPDEST", + "gas": 416146, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e" + ] + }, + { + "pc": 9441, + "op": "POP", + "gas": 416145, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba", + "0x305e" + ] + }, + { + "pc": 9442, + "op": "JUMP", + "gas": 416143, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0xbba" + ] + }, + { + "pc": 3002, + "op": "JUMPDEST", + "gas": 416135, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0" + ] + }, + { + "pc": 3003, + "op": "DUP2", + "gas": 416134, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0" + ] + }, + { + "pc": 3004, + "op": "ISZERO", + "gas": 416131, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 3005, + "op": "PUSH2", + "gas": 416128, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 3008, + "op": "JUMPI", + "gas": 416125, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0", + "0x1", + "0xbca" + ] + }, + { + "pc": 3018, + "op": "JUMPDEST", + "gas": 416115, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0" + ] + }, + { + "pc": 3019, + "op": "POP", + "gas": 416114, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0", + "0x0" + ] + }, + { + "pc": 3020, + "op": "POP", + "gas": 416112, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60", + "0x0" + ] + }, + { + "pc": 3021, + "op": "POP", + "gas": 416110, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000", + "0x60" + ] + }, + { + "pc": 3022, + "op": "POP", + "gas": 416108, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 3023, + "op": "POP", + "gas": 416106, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e" + ] + }, + { + "pc": 3024, + "op": "JUMP", + "gas": 416104, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e" + ] + }, + { + "pc": 638, + "op": "JUMPDEST", + "gas": 416096, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 639, + "op": "STOP", + "gas": 416095, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + } + ] + } + }, + { + "result": { + "gas": 123464, + "failed": false, + "returnValue": "", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 477896, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 477893, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 477890, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 477878, + "gasCost": 2, + "depth": 1, + "stack": [] + }, + { + "pc": 6, + "op": "DUP1", + "gas": 477876, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 477873, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 477870, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 477867, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 477857, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 477856, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 477854, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 477851, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 477849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x44" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 477846, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 477843, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x253" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 477833, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 477830, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 477827, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 477824, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed00000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 477821, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 477818, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 38, + "op": "GT", + "gas": 477815, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x70dea79a" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 477812, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 477809, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x146" + ] + }, + { + "pc": 326, + "op": "JUMPDEST", + "gas": 477799, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 327, + "op": "DUP1", + "gas": 477798, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 328, + "op": "PUSH4", + "gas": 477795, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 333, + "op": "GT", + "gas": 477792, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x40884c52" + ] + }, + { + "pc": 334, + "op": "PUSH2", + "gas": 477789, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 337, + "op": "JUMPI", + "gas": 477786, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x1d4" + ] + }, + { + "pc": 468, + "op": "JUMPDEST", + "gas": 477776, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 469, + "op": "DUP1", + "gas": 477775, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 470, + "op": "PUSH4", + "gas": 477772, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 475, + "op": "GT", + "gas": 477769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x357ebb02" + ] + }, + { + "pc": 476, + "op": "PUSH2", + "gas": 477766, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 479, + "op": "JUMPI", + "gas": 477763, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x21b" + ] + }, + { + "pc": 539, + "op": "JUMPDEST", + "gas": 477753, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 540, + "op": "DUP1", + "gas": 477752, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 541, + "op": "PUSH4", + "gas": 477749, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 546, + "op": "EQ", + "gas": 477746, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x1327d3d8" + ] + }, + { + "pc": 547, + "op": "PUSH2", + "gas": 477743, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x0" + ] + }, + { + "pc": 550, + "op": "JUMPI", + "gas": 477740, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x0", + "0x258" + ] + }, + { + "pc": 551, + "op": "DUP1", + "gas": 477730, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 552, + "op": "PUSH4", + "gas": 477727, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 557, + "op": "EQ", + "gas": 477724, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 558, + "op": "PUSH2", + "gas": 477721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 561, + "op": "JUMPI", + "gas": 477718, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x280" + ] + }, + { + "pc": 640, + "op": "JUMPDEST", + "gas": 477708, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 641, + "op": "PUSH2", + "gas": 477707, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 644, + "op": "PUSH1", + "gas": 477704, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e" + ] + }, + { + "pc": 646, + "op": "DUP1", + "gas": 477701, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4" + ] + }, + { + "pc": 647, + "op": "CALLDATASIZE", + "gas": 477698, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x4" + ] + }, + { + "pc": 648, + "op": "SUB", + "gas": 477696, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x4", + "0x44" + ] + }, + { + "pc": 649, + "op": "PUSH1", + "gas": 477693, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40" + ] + }, + { + "pc": 651, + "op": "DUP2", + "gas": 477690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x40" + ] + }, + { + "pc": 652, + "op": "LT", + "gas": 477687, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x40", + "0x40" + ] + }, + { + "pc": 653, + "op": "ISZERO", + "gas": 477684, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x0" + ] + }, + { + "pc": 654, + "op": "PUSH2", + "gas": 477681, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x1" + ] + }, + { + "pc": 657, + "op": "JUMPI", + "gas": 477678, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x1", + "0x296" + ] + }, + { + "pc": 662, + "op": "JUMPDEST", + "gas": 477668, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40" + ] + }, + { + "pc": 663, + "op": "POP", + "gas": 477667, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40" + ] + }, + { + "pc": 664, + "op": "DUP1", + "gas": 477665, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4" + ] + }, + { + "pc": 665, + "op": "CALLDATALOAD", + "gas": 477662, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x4" + ] + }, + { + "pc": 666, + "op": "SWAP1", + "gas": 477659, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x305e" + ] + }, + { + "pc": 667, + "op": "PUSH1", + "gas": 477656, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x4" + ] + }, + { + "pc": 669, + "op": "ADD", + "gas": 477653, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x4", + "0x20" + ] + }, + { + "pc": 670, + "op": "CALLDATALOAD", + "gas": 477650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x24" + ] + }, + { + "pc": 671, + "op": "PUSH2", + "gas": 477647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000" + ] + }, + { + "pc": 674, + "op": "JUMP", + "gas": 477644, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x9ff" + ] + }, + { + "pc": 2559, + "op": "JUMPDEST", + "gas": 477636, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000" + ] + }, + { + "pc": 2560, + "op": "PUSH1", + "gas": 477635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000" + ] + }, + { + "pc": 2562, + "op": "PUSH2", + "gas": 477632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60" + ] + }, + { + "pc": 2565, + "op": "CALLER", + "gas": 477629, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b" + ] + }, + { + "pc": 2566, + "op": "DUP5", + "gas": 477627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 2567, + "op": "PUSH2", + "gas": 477624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e" + ] + }, + { + "pc": 2570, + "op": "JUMP", + "gas": 477621, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x21ac" + ] + }, + { + "pc": 8620, + "op": "JUMPDEST", + "gas": 477613, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e" + ] + }, + { + "pc": 8621, + "op": "PUSH1", + "gas": 477612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e" + ] + }, + { + "pc": 8623, + "op": "PUSH1", + "gas": 477609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x1" + ] + }, + { + "pc": 8625, + "op": "PUSH1", + "gas": 477606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 8627, + "op": "SHL", + "gas": 477603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 8628, + "op": "SUB", + "gas": 477600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8629, + "op": "DUP3", + "gas": 477597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 8630, + "op": "AND", + "gas": 477594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 8631, + "op": "PUSH1", + "gas": 477591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 8633, + "op": "SWAP1", + "gas": 477588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x0" + ] + }, + { + "pc": 8634, + "op": "DUP2", + "gas": 477585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 8635, + "op": "MSTORE", + "gas": 477582, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x0" + ] + }, + { + "pc": 8636, + "op": "PUSH1", + "gas": 477579, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x0" + ] + }, + { + "pc": 8638, + "op": "PUSH1", + "gas": 477576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x0", + "0x8" + ] + }, + { + "pc": 8640, + "op": "MSTORE", + "gas": 477573, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 8641, + "op": "PUSH1", + "gas": 477570, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x0" + ] + }, + { + "pc": 8643, + "op": "SWAP1", + "gas": 477567, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 8644, + "op": "KECCAK256", + "gas": 477564, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 8645, + "op": "SLOAD", + "gas": 477522, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503" + ], + "storage": { + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305dffffffff000006f000000000000000000178720f00668000" + } + }, + { + "pc": 8646, + "op": "PUSH1", + "gas": 476722, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000" + ] + }, + { + "pc": 8648, + "op": "SLOAD", + "gas": 476719, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0x7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305dffffffff000006f000000000000000000178720f00668000" + } + }, + { + "pc": 8649, + "op": "PUSH1", + "gas": 475919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0x305d0000305e" + ] + }, + { + "pc": 8651, + "op": "SWAP2", + "gas": 475916, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0x305d0000305e", + "0x60" + ] + }, + { + "pc": 8652, + "op": "PUSH4", + "gas": 475913, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x305d0000305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000" + ] + }, + { + "pc": 8657, + "op": "PUSH1", + "gas": 475910, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x305d0000305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff" + ] + }, + { + "pc": 8659, + "op": "PUSH1", + "gas": 475907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x305d0000305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0x1" + ] + }, + { + "pc": 8661, + "op": "SHL", + "gas": 475904, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x305d0000305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0x1", + "0x80" + ] + }, + { + "pc": 8662, + "op": "SWAP1", + "gas": 475901, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x305d0000305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 8663, + "op": "SWAP2", + "gas": 475898, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x305d0000305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0x100000000000000000000000000000000", + "0xffffffff" + ] + }, + { + "pc": 8664, + "op": "DIV", + "gas": 475895, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x305d0000305e", + "0xffffffff", + "0x100000000000000000000000000000000", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000" + ] + }, + { + "pc": 8665, + "op": "DUP2", + "gas": 475890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x305d0000305e", + "0xffffffff", + "0x2ff70000305dffffffff000006f0" + ] + }, + { + "pc": 8666, + "op": "AND", + "gas": 475887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x305d0000305e", + "0xffffffff", + "0x2ff70000305dffffffff000006f0", + "0xffffffff" + ] + }, + { + "pc": 8667, + "op": "SWAP2", + "gas": 475884, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x305d0000305e", + "0xffffffff", + "0x6f0" + ] + }, + { + "pc": 8668, + "op": "AND", + "gas": 475881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0xffffffff", + "0x305d0000305e" + ] + }, + { + "pc": 8669, + "op": "DUP2", + "gas": 475878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8670, + "op": "PUSH2", + "gas": 475875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x6f0" + ] + }, + { + "pc": 8673, + "op": "JUMPI", + "gas": 475872, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x6f0", + "0x2215" + ] + }, + { + "pc": 8725, + "op": "JUMPDEST", + "gas": 475862, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8726, + "op": "DUP4", + "gas": 475861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8727, + "op": "PUSH4", + "gas": 475858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 8732, + "op": "AND", + "gas": 475855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 8733, + "op": "DUP3", + "gas": 475852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 8734, + "op": "PUSH4", + "gas": 475849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x6f0" + ] + }, + { + "pc": 8739, + "op": "AND", + "gas": 475846, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x6f0", + "0xffffffff" + ] + }, + { + "pc": 8740, + "op": "GT", + "gas": 475843, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x6f0" + ] + }, + { + "pc": 8741, + "op": "ISZERO", + "gas": 475840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8742, + "op": "PUSH2", + "gas": 475837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8745, + "op": "JUMPI", + "gas": 475834, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2261" + ] + }, + { + "pc": 8801, + "op": "JUMPDEST", + "gas": 475824, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8802, + "op": "PUSH1", + "gas": 475823, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8804, + "op": "PUSH1", + "gas": 475820, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8806, + "op": "PUSH1", + "gas": 475817, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 8808, + "op": "SHL", + "gas": 475814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 8809, + "op": "SUB", + "gas": 475811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8810, + "op": "DUP6", + "gas": 475808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 8811, + "op": "AND", + "gas": 475805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 8812, + "op": "PUSH1", + "gas": 475802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 8814, + "op": "SWAP1", + "gas": 475799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x0" + ] + }, + { + "pc": 8815, + "op": "DUP2", + "gas": 475796, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 8816, + "op": "MSTORE", + "gas": 475793, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x0" + ] + }, + { + "pc": 8817, + "op": "PUSH1", + "gas": 475790, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8819, + "op": "PUSH1", + "gas": 475787, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x8" + ] + }, + { + "pc": 8821, + "op": "MSTORE", + "gas": 475784, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 8822, + "op": "PUSH1", + "gas": 475781, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8824, + "op": "SWAP1", + "gas": 475778, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 8825, + "op": "KECCAK256", + "gas": 475775, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 8826, + "op": "SLOAD", + "gas": 475733, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305dffffffff000006f000000000000000000178720f00668000" + } + }, + { + "pc": 8827, + "op": "PUSH4", + "gas": 474933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000" + ] + }, + { + "pc": 8832, + "op": "DUP1", + "gas": 474930, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff" + ] + }, + { + "pc": 8833, + "op": "DUP7", + "gas": 474927, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 8834, + "op": "AND", + "gas": 474924, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8835, + "op": "PUSH1", + "gas": 474921, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8837, + "op": "PUSH1", + "gas": 474918, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0x305e", + "0x1" + ] + }, + { + "pc": 8839, + "op": "SHL", + "gas": 474915, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0x305e", + "0x1", + "0xa0" + ] + }, + { + "pc": 8840, + "op": "SWAP1", + "gas": 474912, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0x305e", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8841, + "op": "SWAP3", + "gas": 474909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0x10000000000000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 8842, + "op": "DIV", + "gas": 474906, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff", + "0x10000000000000000000000000000000000000000", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000" + ] + }, + { + "pc": 8843, + "op": "AND", + "gas": 474901, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff", + "0x2ff70000305dffffffff" + ] + }, + { + "pc": 8844, + "op": "LT", + "gas": 474898, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 8845, + "op": "ISZERO", + "gas": 474895, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8846, + "op": "PUSH2", + "gas": 474892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8849, + "op": "JUMPI", + "gas": 474889, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x22d0" + ] + }, + { + "pc": 8912, + "op": "JUMPDEST", + "gas": 474879, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8913, + "op": "PUSH1", + "gas": 474878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8915, + "op": "PUSH1", + "gas": 474875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8917, + "op": "PUSH1", + "gas": 474872, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 8919, + "op": "SHL", + "gas": 474869, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 8920, + "op": "SUB", + "gas": 474866, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8921, + "op": "DUP6", + "gas": 474863, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 8922, + "op": "AND", + "gas": 474860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 8923, + "op": "PUSH1", + "gas": 474857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 8925, + "op": "SWAP1", + "gas": 474854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x0" + ] + }, + { + "pc": 8926, + "op": "DUP2", + "gas": 474851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 8927, + "op": "MSTORE", + "gas": 474848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x0" + ] + }, + { + "pc": 8928, + "op": "PUSH1", + "gas": 474845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8930, + "op": "PUSH1", + "gas": 474842, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x8" + ] + }, + { + "pc": 8932, + "op": "MSTORE", + "gas": 474839, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 8933, + "op": "PUSH1", + "gas": 474836, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8935, + "op": "SWAP1", + "gas": 474833, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 8936, + "op": "KECCAK256", + "gas": 474830, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 8937, + "op": "SLOAD", + "gas": 474788, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305dffffffff000006f000000000000000000178720f00668000" + } + }, + { + "pc": 8938, + "op": "PUSH4", + "gas": 473988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000" + ] + }, + { + "pc": 8943, + "op": "DUP1", + "gas": 473985, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff" + ] + }, + { + "pc": 8944, + "op": "DUP7", + "gas": 473982, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 8945, + "op": "AND", + "gas": 473979, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8946, + "op": "PUSH1", + "gas": 473976, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8948, + "op": "PUSH1", + "gas": 473973, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0x305e", + "0x1" + ] + }, + { + "pc": 8950, + "op": "SHL", + "gas": 473970, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0x305e", + "0x1", + "0xc0" + ] + }, + { + "pc": 8951, + "op": "SWAP1", + "gas": 473967, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0x305e", + "0x1000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 8952, + "op": "SWAP3", + "gas": 473964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0x1000000000000000000000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 8953, + "op": "DIV", + "gas": 473961, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff", + "0x1000000000000000000000000000000000000000000000000", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000" + ] + }, + { + "pc": 8954, + "op": "AND", + "gas": 473956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff", + "0x2ff70000305d" + ] + }, + { + "pc": 8955, + "op": "LT", + "gas": 473953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x305d" + ] + }, + { + "pc": 8956, + "op": "PUSH2", + "gas": 473950, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8959, + "op": "JUMPI", + "gas": 473947, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x233e" + ] + }, + { + "pc": 9022, + "op": "JUMPDEST", + "gas": 473937, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9023, + "op": "DUP1", + "gas": 473936, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9024, + "op": "PUSH4", + "gas": 473933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9029, + "op": "AND", + "gas": 473930, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9030, + "op": "DUP5", + "gas": 473927, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9031, + "op": "PUSH4", + "gas": 473924, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9036, + "op": "AND", + "gas": 473921, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9037, + "op": "EQ", + "gas": 473918, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9038, + "op": "ISZERO", + "gas": 473915, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9039, + "op": "DUP1", + "gas": 473912, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9040, + "op": "ISZERO", + "gas": 473909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9041, + "op": "PUSH2", + "gas": 473906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x1" + ] + }, + { + "pc": 9044, + "op": "JUMPI", + "gas": 473903, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x1", + "0x237a" + ] + }, + { + "pc": 9082, + "op": "JUMPDEST", + "gas": 473893, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9083, + "op": "DUP1", + "gas": 473892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9084, + "op": "ISZERO", + "gas": 473889, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9085, + "op": "PUSH2", + "gas": 473886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x1" + ] + }, + { + "pc": 9088, + "op": "JUMPI", + "gas": 473883, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x1", + "0x238d" + ] + }, + { + "pc": 9101, + "op": "JUMPDEST", + "gas": 473873, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9102, + "op": "ISZERO", + "gas": 473872, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9103, + "op": "PUSH2", + "gas": 473869, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9106, + "op": "JUMPI", + "gas": 473866, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x23d1" + ] + }, + { + "pc": 9169, + "op": "JUMPDEST", + "gas": 473856, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9170, + "op": "DUP4", + "gas": 473855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9171, + "op": "PUSH4", + "gas": 473852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9176, + "op": "AND", + "gas": 473849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9177, + "op": "PUSH1", + "gas": 473846, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9179, + "op": "EQ", + "gas": 473843, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x1" + ] + }, + { + "pc": 9180, + "op": "ISZERO", + "gas": 473840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9181, + "op": "DUP1", + "gas": 473837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9182, + "op": "ISZERO", + "gas": 473834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 9183, + "op": "PUSH2", + "gas": 473831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 9186, + "op": "JUMPI", + "gas": 473828, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x0", + "0x2402" + ] + }, + { + "pc": 9187, + "op": "POP", + "gas": 473818, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9188, + "op": "PUSH2", + "gas": 473816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9191, + "op": "PUSH2", + "gas": 473813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400" + ] + }, + { + "pc": 9194, + "op": "PUSH4", + "gas": 473810, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb" + ] + }, + { + "pc": 9199, + "op": "DUP1", + "gas": 473807, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff" + ] + }, + { + "pc": 9200, + "op": "DUP8", + "gas": 473804, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 9201, + "op": "AND", + "gas": 473801, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9202, + "op": "SWAP1", + "gas": 473798, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9203, + "op": "PUSH1", + "gas": 473795, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9205, + "op": "SWAP1", + "gas": 473792, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0xffffffff", + "0x1" + ] + }, + { + "pc": 9206, + "op": "PUSH2", + "gas": 473789, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0xffffffff" + ] + }, + { + "pc": 9209, + "op": "AND", + "gas": 473786, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0xffffffff", + "0x3384" + ] + }, + { + "pc": 9210, + "op": "JUMP", + "gas": 473783, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x3384" + ] + }, + { + "pc": 13188, + "op": "JUMPDEST", + "gas": 473775, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1" + ] + }, + { + "pc": 13189, + "op": "PUSH1", + "gas": 473774, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1" + ] + }, + { + "pc": 13191, + "op": "DUP3", + "gas": 473771, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 13192, + "op": "PUSH4", + "gas": 473768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 13197, + "op": "AND", + "gas": 473765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13198, + "op": "DUP3", + "gas": 473762, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 13199, + "op": "PUSH4", + "gas": 473759, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1" + ] + }, + { + "pc": 13204, + "op": "AND", + "gas": 473756, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1", + "0xffffffff" + ] + }, + { + "pc": 13205, + "op": "GT", + "gas": 473753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1" + ] + }, + { + "pc": 13206, + "op": "ISZERO", + "gas": 473750, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 13207, + "op": "PUSH2", + "gas": 473747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 13210, + "op": "JUMPI", + "gas": 473744, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x1", + "0x2ef3" + ] + }, + { + "pc": 12019, + "op": "JUMPDEST", + "gas": 473734, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 12020, + "op": "POP", + "gas": 473733, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 12021, + "op": "SWAP1", + "gas": 473731, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1" + ] + }, + { + "pc": 12022, + "op": "SUB", + "gas": 473728, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x1", + "0x305e" + ] + }, + { + "pc": 12023, + "op": "SWAP1", + "gas": 473725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305d" + ] + }, + { + "pc": 12024, + "op": "JUMP", + "gas": 473722, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x23fb" + ] + }, + { + "pc": 9211, + "op": "JUMPDEST", + "gas": 473714, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 9212, + "op": "PUSH2", + "gas": 473713, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 9215, + "op": "JUMP", + "gas": 473710, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x33e7" + ] + }, + { + "pc": 13287, + "op": "JUMPDEST", + "gas": 473702, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 13288, + "op": "PUSH4", + "gas": 473701, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 13293, + "op": "DUP2", + "gas": 473698, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0xffffffff" + ] + }, + { + "pc": 13294, + "op": "AND", + "gas": 473695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0xffffffff", + "0x305d" + ] + }, + { + "pc": 13295, + "op": "PUSH1", + "gas": 473692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x305d" + ] + }, + { + "pc": 13297, + "op": "SWAP1", + "gas": 473689, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x305d", + "0x0" + ] + }, + { + "pc": 13298, + "op": "DUP2", + "gas": 473686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d" + ] + }, + { + "pc": 13299, + "op": "MSTORE", + "gas": 473683, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d", + "0x0" + ] + }, + { + "pc": 13300, + "op": "PUSH1", + "gas": 473680, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0" + ] + }, + { + "pc": 13302, + "op": "PUSH1", + "gas": 473677, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x9" + ] + }, + { + "pc": 13304, + "op": "MSTORE", + "gas": 473674, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x9", + "0x20" + ] + }, + { + "pc": 13305, + "op": "PUSH1", + "gas": 473671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0" + ] + }, + { + "pc": 13307, + "op": "DUP2", + "gas": 473668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x40" + ] + }, + { + "pc": 13308, + "op": "KECCAK256", + "gas": 473665, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x40", + "0x0" + ] + }, + { + "pc": 13309, + "op": "PUSH1", + "gas": 473623, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae3" + ] + }, + { + "pc": 13311, + "op": "ADD", + "gas": 473620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae3", + "0x1" + ] + }, + { + "pc": 13312, + "op": "SLOAD", + "gas": 473617, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305dffffffff000006f000000000000000000178720f00668000" + } + }, + { + "pc": 13313, + "op": "PUSH1", + "gas": 472817, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b" + ] + }, + { + "pc": 13315, + "op": "PUSH1", + "gas": 472814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b", + "0x1" + ] + }, + { + "pc": 13317, + "op": "SHL", + "gas": 472811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b", + "0x1", + "0x40" + ] + }, + { + "pc": 13318, + "op": "SWAP1", + "gas": 472808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b", + "0x10000000000000000" + ] + }, + { + "pc": 13319, + "op": "DIV", + "gas": 472805, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x10000000000000000", + "0x305d00000000689d901f00000000689d901b" + ] + }, + { + "pc": 13320, + "op": "PUSH1", + "gas": 472800, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f" + ] + }, + { + "pc": 13322, + "op": "PUSH1", + "gas": 472797, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1" + ] + }, + { + "pc": 13324, + "op": "PUSH1", + "gas": 472794, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1", + "0x1" + ] + }, + { + "pc": 13326, + "op": "SHL", + "gas": 472791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1", + "0x1", + "0x40" + ] + }, + { + "pc": 13327, + "op": "SUB", + "gas": 472788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1", + "0x10000000000000000" + ] + }, + { + "pc": 13328, + "op": "AND", + "gas": 472785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0xffffffffffffffff" + ] + }, + { + "pc": 13329, + "op": "ISZERO", + "gas": 472782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x689d901f" + ] + }, + { + "pc": 13330, + "op": "ISZERO", + "gas": 472779, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x0" + ] + }, + { + "pc": 13331, + "op": "DUP1", + "gas": 472776, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1" + ] + }, + { + "pc": 13332, + "op": "PUSH2", + "gas": 472773, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 13335, + "op": "JUMPI", + "gas": 472770, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1", + "0x1", + "0x2449" + ] + }, + { + "pc": 9289, + "op": "JUMPDEST", + "gas": 472760, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1" + ] + }, + { + "pc": 9290, + "op": "SWAP3", + "gas": 472759, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1" + ] + }, + { + "pc": 9291, + "op": "SWAP2", + "gas": 472756, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x305d", + "0x0", + "0x2400" + ] + }, + { + "pc": 9292, + "op": "POP", + "gas": 472753, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2400", + "0x0", + "0x305d" + ] + }, + { + "pc": 9293, + "op": "POP", + "gas": 472751, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2400", + "0x0" + ] + }, + { + "pc": 9294, + "op": "JUMP", + "gas": 472749, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2400" + ] + }, + { + "pc": 9216, + "op": "JUMPDEST", + "gas": 472741, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9217, + "op": "ISZERO", + "gas": 472740, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9218, + "op": "JUMPDEST", + "gas": 472737, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9219, + "op": "ISZERO", + "gas": 472736, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9220, + "op": "PUSH2", + "gas": 472733, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9223, + "op": "JUMPI", + "gas": 472730, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2446" + ] + }, + { + "pc": 9286, + "op": "JUMPDEST", + "gas": 472720, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9287, + "op": "POP", + "gas": 472719, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9288, + "op": "POP", + "gas": 472717, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60", + "0x6f0" + ] + }, + { + "pc": 9289, + "op": "JUMPDEST", + "gas": 472715, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60" + ] + }, + { + "pc": 9290, + "op": "SWAP3", + "gas": 472714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xa0b", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x60" + ] + }, + { + "pc": 9291, + "op": "SWAP2", + "gas": 472711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x60", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0xa0b" + ] + }, + { + "pc": 9292, + "op": "POP", + "gas": 472708, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x60", + "0xa0b", + "0x305e", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 9293, + "op": "POP", + "gas": 472706, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x60", + "0xa0b", + "0x305e" + ] + }, + { + "pc": 9294, + "op": "JUMP", + "gas": 472704, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x60", + "0xa0b" + ] + }, + { + "pc": 2571, + "op": "JUMPDEST", + "gas": 472696, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x60" + ] + }, + { + "pc": 2572, + "op": "SWAP1", + "gas": 472695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x60" + ] + }, + { + "pc": 2573, + "op": "POP", + "gas": 472692, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x60" + ] + }, + { + "pc": 2574, + "op": "PUSH32", + "gas": 472690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60" + ] + }, + { + "pc": 2607, + "op": "DUP3", + "gas": 472687, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0" + ] + }, + { + "pc": 2608, + "op": "SLT", + "gas": 472684, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x41edd68838a5610000" + ] + }, + { + "pc": 2609, + "op": "ISZERO", + "gas": 472681, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0" + ] + }, + { + "pc": 2610, + "op": "PUSH2", + "gas": 472678, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1" + ] + }, + { + "pc": 2613, + "op": "JUMPI", + "gas": 472675, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0xa82" + ] + }, + { + "pc": 2690, + "op": "JUMPDEST", + "gas": 472665, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60" + ] + }, + { + "pc": 2691, + "op": "PUSH32", + "gas": 472664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60" + ] + }, + { + "pc": 2724, + "op": "DUP3", + "gas": 472661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x845951614014849ffffff" + ] + }, + { + "pc": 2725, + "op": "SGT", + "gas": 472658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x845951614014849ffffff", + "0x41edd68838a5610000" + ] + }, + { + "pc": 2726, + "op": "ISZERO", + "gas": 472655, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0" + ] + }, + { + "pc": 2727, + "op": "PUSH2", + "gas": 472652, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1" + ] + }, + { + "pc": 2730, + "op": "JUMPI", + "gas": 472649, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0xaf7" + ] + }, + { + "pc": 2807, + "op": "JUMPDEST", + "gas": 472639, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60" + ] + }, + { + "pc": 2808, + "op": "DUP1", + "gas": 472638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60" + ] + }, + { + "pc": 2809, + "op": "MLOAD", + "gas": 472635, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x60" + ] + }, + { + "pc": 2810, + "op": "DUP2", + "gas": 472629, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0" + ] + }, + { + "pc": 2811, + "op": "SWAP1", + "gas": 472626, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x60" + ] + }, + { + "pc": 2812, + "op": "ISZERO", + "gas": 472623, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x60", + "0x0" + ] + }, + { + "pc": 2813, + "op": "PUSH2", + "gas": 472620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x60", + "0x1" + ] + }, + { + "pc": 2816, + "op": "JUMPI", + "gas": 472617, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x60", + "0x1", + "0xb84" + ] + }, + { + "pc": 2948, + "op": "JUMPDEST", + "gas": 472607, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x60" + ] + }, + { + "pc": 2949, + "op": "POP", + "gas": 472606, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x60" + ] + }, + { + "pc": 2950, + "op": "PUSH2", + "gas": 472604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60" + ] + }, + { + "pc": 2953, + "op": "DUP4", + "gas": 472601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e" + ] + }, + { + "pc": 2954, + "op": "PUSH2", + "gas": 472598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 2957, + "op": "JUMP", + "gas": 472595, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x244f" + ] + }, + { + "pc": 9295, + "op": "JUMPDEST", + "gas": 472587, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9296, + "op": "PUSH2", + "gas": 472586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9299, + "op": "DUP2", + "gas": 472583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458" + ] + }, + { + "pc": 9300, + "op": "PUSH2", + "gas": 472580, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e" + ] + }, + { + "pc": 9303, + "op": "JUMP", + "gas": 472577, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x3421" + ] + }, + { + "pc": 13345, + "op": "JUMPDEST", + "gas": 472569, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e" + ] + }, + { + "pc": 13346, + "op": "PUSH1", + "gas": 472568, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e" + ] + }, + { + "pc": 13348, + "op": "SLOAD", + "gas": 472565, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305dffffffff000006f000000000000000000178720f00668000" + } + }, + { + "pc": 13349, + "op": "PUSH1", + "gas": 471765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x305d0000305e" + ] + }, + { + "pc": 13351, + "op": "SWAP1", + "gas": 471762, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x305d0000305e", + "0x0" + ] + }, + { + "pc": 13352, + "op": "PUSH2", + "gas": 471759, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305d0000305e" + ] + }, + { + "pc": 13355, + "op": "SWAP1", + "gas": 471756, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305d0000305e", + "0x343d" + ] + }, + { + "pc": 13356, + "op": "PUSH4", + "gas": 471753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305d0000305e" + ] + }, + { + "pc": 13361, + "op": "SWAP1", + "gas": 471750, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305d0000305e", + "0xffffffff" + ] + }, + { + "pc": 13362, + "op": "DUP2", + "gas": 471747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0xffffffff", + "0x305d0000305e" + ] + }, + { + "pc": 13363, + "op": "AND", + "gas": 471744, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0xffffffff", + "0x305d0000305e", + "0xffffffff" + ] + }, + { + "pc": 13364, + "op": "SWAP1", + "gas": 471741, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 13365, + "op": "PUSH1", + "gas": 471738, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13367, + "op": "SWAP1", + "gas": 471735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0xffffffff", + "0x1" + ] + }, + { + "pc": 13368, + "op": "PUSH2", + "gas": 471732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0xffffffff" + ] + }, + { + "pc": 13371, + "op": "AND", + "gas": 471729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0xffffffff", + "0x31fb" + ] + }, + { + "pc": 13372, + "op": "JUMP", + "gas": 471726, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x31fb" + ] + }, + { + "pc": 12795, + "op": "JUMPDEST", + "gas": 471718, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1" + ] + }, + { + "pc": 12796, + "op": "PUSH1", + "gas": 471717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1" + ] + }, + { + "pc": 12798, + "op": "DUP3", + "gas": 471714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 12799, + "op": "DUP3", + "gas": 471711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 12800, + "op": "ADD", + "gas": 471708, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1" + ] + }, + { + "pc": 12801, + "op": "PUSH4", + "gas": 471705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f" + ] + }, + { + "pc": 12806, + "op": "DUP1", + "gas": 471702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff" + ] + }, + { + "pc": 12807, + "op": "DUP6", + "gas": 471699, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 12808, + "op": "AND", + "gas": 471696, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 12809, + "op": "SWAP1", + "gas": 471693, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 12810, + "op": "DUP3", + "gas": 471690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 12811, + "op": "AND", + "gas": 471687, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x305e", + "0xffffffff", + "0x305f" + ] + }, + { + "pc": 12812, + "op": "LT", + "gas": 471684, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x305e", + "0x305f" + ] + }, + { + "pc": 12813, + "op": "ISZERO", + "gas": 471681, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x0" + ] + }, + { + "pc": 12814, + "op": "PUSH2", + "gas": 471678, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x1" + ] + }, + { + "pc": 12817, + "op": "JUMPI", + "gas": 471675, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x1", + "0x2bf3" + ] + }, + { + "pc": 11251, + "op": "JUMPDEST", + "gas": 471665, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f" + ] + }, + { + "pc": 11252, + "op": "SWAP4", + "gas": 471664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f" + ] + }, + { + "pc": 11253, + "op": "SWAP3", + "gas": 471661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e", + "0x1", + "0x0", + "0x343d" + ] + }, + { + "pc": 11254, + "op": "POP", + "gas": 471658, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 11255, + "op": "POP", + "gas": 471656, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d", + "0x1", + "0x0" + ] + }, + { + "pc": 11256, + "op": "POP", + "gas": 471654, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d", + "0x1" + ] + }, + { + "pc": 11257, + "op": "JUMP", + "gas": 471652, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d" + ] + }, + { + "pc": 13373, + "op": "JUMPDEST", + "gas": 471644, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f" + ] + }, + { + "pc": 13374, + "op": "PUSH4", + "gas": 471643, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f" + ] + }, + { + "pc": 13379, + "op": "AND", + "gas": 471640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0xffffffff" + ] + }, + { + "pc": 13380, + "op": "DUP3", + "gas": 471637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f" + ] + }, + { + "pc": 13381, + "op": "PUSH4", + "gas": 471634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e" + ] + }, + { + "pc": 13386, + "op": "AND", + "gas": 471631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13387, + "op": "EQ", + "gas": 471628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e" + ] + }, + { + "pc": 13388, + "op": "SWAP1", + "gas": 471625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 13389, + "op": "POP", + "gas": 471622, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 13390, + "op": "SWAP2", + "gas": 471620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0" + ] + }, + { + "pc": 13391, + "op": "SWAP1", + "gas": 471617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x305e", + "0x2458" + ] + }, + { + "pc": 13392, + "op": "POP", + "gas": 471614, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x2458", + "0x305e" + ] + }, + { + "pc": 13393, + "op": "JUMP", + "gas": 471612, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x2458" + ] + }, + { + "pc": 9304, + "op": "JUMPDEST", + "gas": 471604, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9305, + "op": "PUSH2", + "gas": 471603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9308, + "op": "JUMPI", + "gas": 471600, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x2461" + ] + }, + { + "pc": 9309, + "op": "PUSH2", + "gas": 471590, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9312, + "op": "JUMP", + "gas": 471587, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e", + "0x24e0" + ] + }, + { + "pc": 9440, + "op": "JUMPDEST", + "gas": 471579, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9441, + "op": "POP", + "gas": 471578, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9442, + "op": "JUMP", + "gas": 471576, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb8e" + ] + }, + { + "pc": 2958, + "op": "JUMPDEST", + "gas": 471568, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60" + ] + }, + { + "pc": 2959, + "op": "PUSH2", + "gas": 471567, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60" + ] + }, + { + "pc": 2962, + "op": "DUP3", + "gas": 471564, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98" + ] + }, + { + "pc": 2963, + "op": "DUP5", + "gas": 471561, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000" + ] + }, + { + "pc": 2964, + "op": "PUSH2", + "gas": 471558, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e" + ] + }, + { + "pc": 2967, + "op": "JUMP", + "gas": 471555, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24e3" + ] + }, + { + "pc": 9443, + "op": "JUMPDEST", + "gas": 471547, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e" + ] + }, + { + "pc": 9444, + "op": "PUSH2", + "gas": 471546, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e" + ] + }, + { + "pc": 9447, + "op": "DUP2", + "gas": 471543, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec" + ] + }, + { + "pc": 9448, + "op": "PUSH2", + "gas": 471540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0x305e" + ] + }, + { + "pc": 9451, + "op": "JUMP", + "gas": 471537, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0x305e", + "0x3605" + ] + }, + { + "pc": 13829, + "op": "JUMPDEST", + "gas": 471529, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0x305e" + ] + }, + { + "pc": 13830, + "op": "PUSH4", + "gas": 471528, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0x305e" + ] + }, + { + "pc": 13835, + "op": "SWAP1", + "gas": 471525, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13836, + "op": "DUP2", + "gas": 471522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 13837, + "op": "AND", + "gas": 471519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13838, + "op": "PUSH1", + "gas": 471516, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 13840, + "op": "SWAP1", + "gas": 471513, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e", + "0x0" + ] + }, + { + "pc": 13841, + "op": "DUP2", + "gas": 471510, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0x305e" + ] + }, + { + "pc": 13842, + "op": "MSTORE", + "gas": 471507, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 13843, + "op": "PUSH1", + "gas": 471504, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 13845, + "op": "PUSH1", + "gas": 471501, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0xa" + ] + }, + { + "pc": 13847, + "op": "MSTORE", + "gas": 471498, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 13848, + "op": "PUSH1", + "gas": 471495, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 13850, + "op": "SWAP1", + "gas": 471492, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 13851, + "op": "KECCAK256", + "gas": 471489, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x40", + "0x0" + ] + }, + { + "pc": 13852, + "op": "PUSH1", + "gas": 471447, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 13854, + "op": "ADD", + "gas": 471444, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 13855, + "op": "SLOAD", + "gas": 471441, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305dffffffff000006f000000000000000000178720f00668000" + } + }, + { + "pc": 13856, + "op": "AND", + "gas": 470641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 13857, + "op": "ISZERO", + "gas": 470638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0x6" + ] + }, + { + "pc": 13858, + "op": "ISZERO", + "gas": 470635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0x0" + ] + }, + { + "pc": 13859, + "op": "SWAP1", + "gas": 470632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x24ec", + "0x1" + ] + }, + { + "pc": 13860, + "op": "JUMP", + "gas": 470629, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x1", + "0x24ec" + ] + }, + { + "pc": 9452, + "op": "JUMPDEST", + "gas": 470621, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x1" + ] + }, + { + "pc": 9453, + "op": "PUSH2", + "gas": 470620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x1" + ] + }, + { + "pc": 9456, + "op": "JUMPI", + "gas": 470617, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x1", + "0x253d" + ] + }, + { + "pc": 9533, + "op": "JUMPDEST", + "gas": 470607, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e" + ] + }, + { + "pc": 9534, + "op": "PUSH4", + "gas": 470606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e" + ] + }, + { + "pc": 9539, + "op": "DUP2", + "gas": 470603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9540, + "op": "AND", + "gas": 470600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9541, + "op": "PUSH1", + "gas": 470597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9543, + "op": "DUP2", + "gas": 470594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9544, + "op": "DUP2", + "gas": 470591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x305e" + ] + }, + { + "pc": 9545, + "op": "MSTORE", + "gas": 470588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9546, + "op": "PUSH1", + "gas": 470585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9548, + "op": "PUSH1", + "gas": 470582, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0xa" + ] + }, + { + "pc": 9550, + "op": "SWAP1", + "gas": 470579, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 9551, + "op": "DUP2", + "gas": 470576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0xa" + ] + }, + { + "pc": 9552, + "op": "MSTORE", + "gas": 470573, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0xa", + "0x20" + ] + }, + { + "pc": 9553, + "op": "PUSH1", + "gas": 470570, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20" + ] + }, + { + "pc": 9555, + "op": "DUP1", + "gas": 470567, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40" + ] + }, + { + "pc": 9556, + "op": "DUP4", + "gas": 470564, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x40" + ] + }, + { + "pc": 9557, + "op": "KECCAK256", + "gas": 470561, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x40", + "0x0" + ] + }, + { + "pc": 9558, + "op": "DUP1", + "gas": 470519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9559, + "op": "SLOAD", + "gas": 470516, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000002", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305dffffffff000006f000000000000000000178720f00668000" + } + }, + { + "pc": 9560, + "op": "PUSH1", + "gas": 469716, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x2" + ] + }, + { + "pc": 9562, + "op": "DUP1", + "gas": 469713, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x2", + "0x1" + ] + }, + { + "pc": 9563, + "op": "DUP3", + "gas": 469710, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x2", + "0x1", + "0x1" + ] + }, + { + "pc": 9564, + "op": "ADD", + "gas": 469707, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x2", + "0x1", + "0x1", + "0x2" + ] + }, + { + "pc": 9565, + "op": "DUP4", + "gas": 469704, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x2", + "0x1", + "0x3" + ] + }, + { + "pc": 9566, + "op": "SSTORE", + "gas": 469701, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x2", + "0x1", + "0x3", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305dffffffff000006f000000000000000000178720f00668000" + } + }, + { + "pc": 9567, + "op": "SWAP2", + "gas": 464701, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x2", + "0x1" + ] + }, + { + "pc": 9568, + "op": "DUP6", + "gas": 464698, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x2", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9569, + "op": "MSTORE", + "gas": 464695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x2", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x0" + ] + }, + { + "pc": 9570, + "op": "DUP4", + "gas": 464692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x2" + ] + }, + { + "pc": 9571, + "op": "DUP6", + "gas": 464689, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x2", + "0x20" + ] + }, + { + "pc": 9572, + "op": "KECCAK256", + "gas": 464686, + "gasCost": 36, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x2", + "0x20", + "0x0" + ] + }, + { + "pc": 9573, + "op": "ADD", + "gas": 464650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x2", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f" + ] + }, + { + "pc": 9574, + "op": "DUP8", + "gas": 464647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51" + ] + }, + { + "pc": 9575, + "op": "SWAP1", + "gas": 464644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0x41edd68838a5610000" + ] + }, + { + "pc": 9576, + "op": "SSTORE", + "gas": 464641, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x41edd68838a5610000", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305dffffffff000006f000000000000000000178720f00668000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9577, + "op": "CALLER", + "gas": 444641, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1" + ] + }, + { + "pc": 9578, + "op": "DUP1", + "gas": 444639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 9579, + "op": "DUP6", + "gas": 444636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 9580, + "op": "MSTORE", + "gas": 444633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x0" + ] + }, + { + "pc": 9581, + "op": "PUSH1", + "gas": 444630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 9583, + "op": "SWAP1", + "gas": 444627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x8" + ] + }, + { + "pc": 9584, + "op": "SWAP4", + "gas": 444624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x8", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 9585, + "op": "MSTORE", + "gas": 444621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x8", + "0x20" + ] + }, + { + "pc": 9586, + "op": "DUP2", + "gas": 444618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1" + ] + }, + { + "pc": 9587, + "op": "DUP5", + "gas": 444615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x40" + ] + }, + { + "pc": 9588, + "op": "KECCAK256", + "gas": 444612, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x40", + "0x0" + ] + }, + { + "pc": 9589, + "op": "DUP1", + "gas": 444570, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503" + ] + }, + { + "pc": 9590, + "op": "SLOAD", + "gas": 444567, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305dffffffff000006f000000000000000000178720f00668000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9591, + "op": "PUSH4", + "gas": 443767, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000" + ] + }, + { + "pc": 9596, + "op": "PUSH1", + "gas": 443764, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff" + ] + }, + { + "pc": 9598, + "op": "SHL", + "gas": 443761, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff", + "0xc0" + ] + }, + { + "pc": 9599, + "op": "NOT", + "gas": 443758, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 9600, + "op": "AND", + "gas": 443755, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305dffffffff000006f000000000000000000178720f00668000", + "0xffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 9601, + "op": "PUSH1", + "gas": 443752, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff700000000ffffffff000006f000000000000000000178720f00668000" + ] + }, + { + "pc": 9603, + "op": "PUSH1", + "gas": 443749, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff700000000ffffffff000006f000000000000000000178720f00668000", + "0x1" + ] + }, + { + "pc": 9605, + "op": "SHL", + "gas": 443746, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff700000000ffffffff000006f000000000000000000178720f00668000", + "0x1", + "0xc0" + ] + }, + { + "pc": 9606, + "op": "DUP8", + "gas": 443743, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff700000000ffffffff000006f000000000000000000178720f00668000", + "0x1000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 9607, + "op": "MUL", + "gas": 443740, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff700000000ffffffff000006f000000000000000000178720f00668000", + "0x1000000000000000000000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 9608, + "op": "OR", + "gas": 443735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff700000000ffffffff000006f000000000000000000178720f00668000", + "0x305e000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 9609, + "op": "DUP2", + "gas": 443732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000178720f00668000" + ] + }, + { + "pc": 9610, + "op": "SSTORE", + "gas": 443729, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000178720f00668000", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9611, + "op": "ADD", + "gas": 438729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x1", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503" + ] + }, + { + "pc": 9612, + "op": "DUP7", + "gas": 438726, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504" + ] + }, + { + "pc": 9613, + "op": "SWAP1", + "gas": 438723, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504", + "0x41edd68838a5610000" + ] + }, + { + "pc": 9614, + "op": "SSTORE", + "gas": 438720, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40", + "0x41edd68838a5610000", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9615, + "op": "MLOAD", + "gas": 433720, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x40" + ] + }, + { + "pc": 9616, + "op": "SWAP1", + "gas": 433717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x80" + ] + }, + { + "pc": 9617, + "op": "SWAP3", + "gas": 433714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x305e", + "0x0", + "0x80", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 9618, + "op": "SWAP2", + "gas": 433711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x0", + "0x80", + "0x305e" + ] + }, + { + "pc": 9619, + "op": "DUP6", + "gas": 433708, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x80", + "0x0" + ] + }, + { + "pc": 9620, + "op": "SWAP2", + "gas": 433705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x80", + "0x0", + "0x41edd68838a5610000" + ] + }, + { + "pc": 9621, + "op": "PUSH32", + "gas": 433702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x41edd68838a5610000", + "0x0", + "0x80" + ] + }, + { + "pc": 9654, + "op": "SWAP2", + "gas": 433699, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x92e98423f8adac6e64d0608e519fd1cefb861498385c6dee70d58fc926ddc68c" + ] + }, + { + "pc": 9655, + "op": "SWAP1", + "gas": 433696, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x41edd68838a5610000", + "0x92e98423f8adac6e64d0608e519fd1cefb861498385c6dee70d58fc926ddc68c", + "0x80", + "0x0" + ] + }, + { + "pc": 9656, + "op": "LOG4", + "gas": 433693, + "gasCost": 1875, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x305e", + "0x41edd68838a5610000", + "0x92e98423f8adac6e64d0608e519fd1cefb861498385c6dee70d58fc926ddc68c", + "0x0", + "0x80" + ] + }, + { + "pc": 9657, + "op": "POP", + "gas": 431818, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000", + "0x305e" + ] + }, + { + "pc": 9658, + "op": "POP", + "gas": 431816, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98", + "0x41edd68838a5610000" + ] + }, + { + "pc": 9659, + "op": "JUMP", + "gas": 431814, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0xb98" + ] + }, + { + "pc": 2968, + "op": "JUMPDEST", + "gas": 431806, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60" + ] + }, + { + "pc": 2969, + "op": "PUSH1", + "gas": 431805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60" + ] + }, + { + "pc": 2971, + "op": "DUP1", + "gas": 431802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0" + ] + }, + { + "pc": 2972, + "op": "PUSH2", + "gas": 431799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0" + ] + }, + { + "pc": 2975, + "op": "DUP6", + "gas": 431796, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4" + ] + }, + { + "pc": 2976, + "op": "PUSH2", + "gas": 431793, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e" + ] + }, + { + "pc": 2979, + "op": "JUMP", + "gas": 431790, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x25bc" + ] + }, + { + "pc": 9660, + "op": "JUMPDEST", + "gas": 431782, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e" + ] + }, + { + "pc": 9661, + "op": "PUSH4", + "gas": 431781, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e" + ] + }, + { + "pc": 9666, + "op": "DUP1", + "gas": 431778, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9667, + "op": "DUP3", + "gas": 431775, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 9668, + "op": "AND", + "gas": 431772, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9669, + "op": "PUSH1", + "gas": 431769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9671, + "op": "SWAP1", + "gas": 431766, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x305e", + "0x0" + ] + }, + { + "pc": 9672, + "op": "DUP2", + "gas": 431763, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x305e" + ] + }, + { + "pc": 9673, + "op": "MSTORE", + "gas": 431760, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9674, + "op": "PUSH1", + "gas": 431757, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 9676, + "op": "PUSH1", + "gas": 431754, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0xa" + ] + }, + { + "pc": 9678, + "op": "MSTORE", + "gas": 431751, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 9679, + "op": "PUSH1", + "gas": 431748, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 9681, + "op": "DUP2", + "gas": 431745, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 9682, + "op": "KECCAK256", + "gas": 431742, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x40", + "0x0" + ] + }, + { + "pc": 9683, + "op": "PUSH1", + "gas": 431700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9685, + "op": "DUP2", + "gas": 431697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 9686, + "op": "ADD", + "gas": 431694, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9687, + "op": "SLOAD", + "gas": 431691, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9688, + "op": "SWAP1", + "gas": 430891, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 9689, + "op": "SLOAD", + "gas": 430888, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9690, + "op": "SWAP2", + "gas": 430088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0x3" + ] + }, + { + "pc": 9691, + "op": "SWAP3", + "gas": 430085, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x3", + "0x9184e72a0000000003c0000000300000006", + "0x0" + ] + }, + { + "pc": 9692, + "op": "DUP4", + "gas": 430082, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x3", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff" + ] + }, + { + "pc": 9693, + "op": "SWAP3", + "gas": 430079, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x3", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 9694, + "op": "PUSH1", + "gas": 430076, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x3" + ] + }, + { + "pc": 9696, + "op": "PUSH1", + "gas": 430073, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x3", + "0x1" + ] + }, + { + "pc": 9698, + "op": "SHL", + "gas": 430070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x3", + "0x1", + "0x20" + ] + }, + { + "pc": 9699, + "op": "SWAP1", + "gas": 430067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x3", + "0x100000000" + ] + }, + { + "pc": 9700, + "op": "SWAP3", + "gas": 430064, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x100000000", + "0x3" + ] + }, + { + "pc": 9701, + "op": "DIV", + "gas": 430061, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x3", + "0xffffffff", + "0x100000000", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 9702, + "op": "AND", + "gas": 430056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x3", + "0xffffffff", + "0x9184e72a0000000003c00000003" + ] + }, + { + "pc": 9703, + "op": "GT", + "gas": 430053, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x3", + "0x3" + ] + }, + { + "pc": 9704, + "op": "ISZERO", + "gas": 430050, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 9705, + "op": "PUSH2", + "gas": 430047, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 9708, + "op": "JUMPI", + "gas": 430044, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x1", + "0x25f7" + ] + }, + { + "pc": 9719, + "op": "JUMPDEST", + "gas": 430034, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9720, + "op": "PUSH4", + "gas": 430033, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9725, + "op": "DUP4", + "gas": 430030, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0xffffffff" + ] + }, + { + "pc": 9726, + "op": "AND", + "gas": 430027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9727, + "op": "PUSH1", + "gas": 430024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x305e" + ] + }, + { + "pc": 9729, + "op": "SWAP1", + "gas": 430021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9730, + "op": "DUP2", + "gas": 430018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x305e" + ] + }, + { + "pc": 9731, + "op": "MSTORE", + "gas": 430015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9732, + "op": "PUSH1", + "gas": 430012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 9734, + "op": "PUSH1", + "gas": 430009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0xa" + ] + }, + { + "pc": 9736, + "op": "SWAP1", + "gas": 430006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 9737, + "op": "DUP2", + "gas": 430003, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0xa" + ] + }, + { + "pc": 9738, + "op": "MSTORE", + "gas": 430000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0xa", + "0x20" + ] + }, + { + "pc": 9739, + "op": "PUSH1", + "gas": 429997, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 9741, + "op": "DUP1", + "gas": 429994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40" + ] + }, + { + "pc": 9742, + "op": "DUP4", + "gas": 429991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x40" + ] + }, + { + "pc": 9743, + "op": "KECCAK256", + "gas": 429988, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x40", + "0x0" + ] + }, + { + "pc": 9744, + "op": "DUP1", + "gas": 429946, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9745, + "op": "SLOAD", + "gas": 429943, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9746, + "op": "DUP3", + "gas": 429143, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3" + ] + }, + { + "pc": 9747, + "op": "MLOAD", + "gas": 429140, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x40" + ] + }, + { + "pc": 9748, + "op": "DUP2", + "gas": 429137, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x80" + ] + }, + { + "pc": 9749, + "op": "DUP6", + "gas": 429134, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x80", + "0x3" + ] + }, + { + "pc": 9750, + "op": "MUL", + "gas": 429131, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x80", + "0x3", + "0x20" + ] + }, + { + "pc": 9751, + "op": "DUP2", + "gas": 429126, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x80", + "0x60" + ] + }, + { + "pc": 9752, + "op": "ADD", + "gas": 429123, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x80", + "0x60", + "0x80" + ] + }, + { + "pc": 9753, + "op": "DUP6", + "gas": 429120, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x80", + "0xe0" + ] + }, + { + "pc": 9754, + "op": "ADD", + "gas": 429117, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x80", + "0xe0", + "0x20" + ] + }, + { + "pc": 9755, + "op": "SWAP1", + "gas": 429114, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x80", + "0x100" + ] + }, + { + "pc": 9756, + "op": "SWAP4", + "gas": 429111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0x80" + ] + }, + { + "pc": 9757, + "op": "MSTORE", + "gas": 429108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0x40" + ] + }, + { + "pc": 9758, + "op": "DUP1", + "gas": 429105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3" + ] + }, + { + "pc": 9759, + "op": "DUP4", + "gas": 429102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x3" + ] + }, + { + "pc": 9760, + "op": "MSTORE", + "gas": 429099, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x3", + "0x80" + ] + }, + { + "pc": 9761, + "op": "PUSH2", + "gas": 429093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3" + ] + }, + { + "pc": 9764, + "op": "SWAP4", + "gas": 429090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x265d" + ] + }, + { + "pc": 9765, + "op": "DUP4", + "gas": 429087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x20" + ] + }, + { + "pc": 9766, + "op": "ADD", + "gas": 429084, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x20", + "0x80" + ] + }, + { + "pc": 9767, + "op": "DUP3", + "gas": 429081, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0xa0" + ] + }, + { + "pc": 9768, + "op": "DUP3", + "gas": 429078, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9769, + "op": "DUP1", + "gas": 429075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3" + ] + }, + { + "pc": 9770, + "op": "ISZERO", + "gas": 429072, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x3" + ] + }, + { + "pc": 9771, + "op": "PUSH2", + "gas": 429069, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x0" + ] + }, + { + "pc": 9774, + "op": "JUMPI", + "gas": 429066, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x0", + "0x2653" + ] + }, + { + "pc": 9775, + "op": "PUSH1", + "gas": 429056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3" + ] + }, + { + "pc": 9777, + "op": "MUL", + "gas": 429053, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x20" + ] + }, + { + "pc": 9778, + "op": "DUP3", + "gas": 429048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x60" + ] + }, + { + "pc": 9779, + "op": "ADD", + "gas": 429045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x60", + "0xa0" + ] + }, + { + "pc": 9780, + "op": "SWAP2", + "gas": 429042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x100" + ] + }, + { + "pc": 9781, + "op": "SWAP1", + "gas": 429039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0xa0" + ] + }, + { + "pc": 9782, + "op": "PUSH1", + "gas": 429036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9784, + "op": "MSTORE", + "gas": 429033, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x0" + ] + }, + { + "pc": 9785, + "op": "PUSH1", + "gas": 429030, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xa0" + ] + }, + { + "pc": 9787, + "op": "PUSH1", + "gas": 429027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xa0", + "0x20" + ] + }, + { + "pc": 9789, + "op": "KECCAK256", + "gas": 429024, + "gasCost": 36, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xa0", + "0x20", + "0x0" + ] + }, + { + "pc": 9790, + "op": "SWAP1", + "gas": 428988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xa0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f" + ] + }, + { + "pc": 9791, + "op": "JUMPDEST", + "gas": 428985, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0" + ] + }, + { + "pc": 9792, + "op": "DUP2", + "gas": 428984, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0" + ] + }, + { + "pc": 9793, + "op": "SLOAD", + "gas": 428981, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9794, + "op": "DUP2", + "gas": 428181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 9795, + "op": "MSTORE", + "gas": 428178, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0", + "0x41ee3e171aea2d7280", + "0xa0" + ] + }, + { + "pc": 9796, + "op": "PUSH1", + "gas": 428172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0" + ] + }, + { + "pc": 9798, + "op": "ADD", + "gas": 428169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0", + "0x20" + ] + }, + { + "pc": 9799, + "op": "SWAP1", + "gas": 428166, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xc0" + ] + }, + { + "pc": 9800, + "op": "PUSH1", + "gas": 428163, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xc0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f" + ] + }, + { + "pc": 9802, + "op": "ADD", + "gas": 428160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xc0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0x1" + ] + }, + { + "pc": 9803, + "op": "SWAP1", + "gas": 428157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xc0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50" + ] + }, + { + "pc": 9804, + "op": "DUP1", + "gas": 428154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0" + ] + }, + { + "pc": 9805, + "op": "DUP4", + "gas": 428151, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0xc0" + ] + }, + { + "pc": 9806, + "op": "GT", + "gas": 428148, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0xc0", + "0x100" + ] + }, + { + "pc": 9807, + "op": "PUSH2", + "gas": 428145, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x1" + ] + }, + { + "pc": 9810, + "op": "JUMPI", + "gas": 428142, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x1", + "0x263f" + ] + }, + { + "pc": 9791, + "op": "JUMPDEST", + "gas": 428132, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0" + ] + }, + { + "pc": 9792, + "op": "DUP2", + "gas": 428131, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0" + ] + }, + { + "pc": 9793, + "op": "SLOAD", + "gas": 428128, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9794, + "op": "DUP2", + "gas": 427328, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 9795, + "op": "MSTORE", + "gas": 427325, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x41f5599db40e4c4000", + "0xc0" + ] + }, + { + "pc": 9796, + "op": "PUSH1", + "gas": 427319, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0" + ] + }, + { + "pc": 9798, + "op": "ADD", + "gas": 427316, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x20" + ] + }, + { + "pc": 9799, + "op": "SWAP1", + "gas": 427313, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xe0" + ] + }, + { + "pc": 9800, + "op": "PUSH1", + "gas": 427310, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50" + ] + }, + { + "pc": 9802, + "op": "ADD", + "gas": 427307, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0x1" + ] + }, + { + "pc": 9803, + "op": "SWAP1", + "gas": 427304, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51" + ] + }, + { + "pc": 9804, + "op": "DUP1", + "gas": 427301, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0" + ] + }, + { + "pc": 9805, + "op": "DUP4", + "gas": 427298, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0xe0" + ] + }, + { + "pc": 9806, + "op": "GT", + "gas": 427295, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0xe0", + "0x100" + ] + }, + { + "pc": 9807, + "op": "PUSH2", + "gas": 427292, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x1" + ] + }, + { + "pc": 9810, + "op": "JUMPI", + "gas": 427289, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x1", + "0x263f" + ] + }, + { + "pc": 9791, + "op": "JUMPDEST", + "gas": 427279, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0" + ] + }, + { + "pc": 9792, + "op": "DUP2", + "gas": 427278, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0" + ] + }, + { + "pc": 9793, + "op": "SLOAD", + "gas": 427275, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9794, + "op": "DUP2", + "gas": 426475, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x41edd68838a5610000" + ] + }, + { + "pc": 9795, + "op": "MSTORE", + "gas": 426472, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x41edd68838a5610000", + "0xe0" + ] + }, + { + "pc": 9796, + "op": "PUSH1", + "gas": 426466, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0" + ] + }, + { + "pc": 9798, + "op": "ADD", + "gas": 426463, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x20" + ] + }, + { + "pc": 9799, + "op": "SWAP1", + "gas": 426460, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0x100" + ] + }, + { + "pc": 9800, + "op": "PUSH1", + "gas": 426457, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51" + ] + }, + { + "pc": 9802, + "op": "ADD", + "gas": 426454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0x1" + ] + }, + { + "pc": 9803, + "op": "SWAP1", + "gas": 426451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52" + ] + }, + { + "pc": 9804, + "op": "DUP1", + "gas": 426448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100" + ] + }, + { + "pc": 9805, + "op": "DUP4", + "gas": 426445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x100" + ] + }, + { + "pc": 9806, + "op": "GT", + "gas": 426442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x100", + "0x100" + ] + }, + { + "pc": 9807, + "op": "PUSH2", + "gas": 426439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x0" + ] + }, + { + "pc": 9810, + "op": "JUMPI", + "gas": 426436, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x0", + "0x263f" + ] + }, + { + "pc": 9811, + "op": "JUMPDEST", + "gas": 426426, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100" + ] + }, + { + "pc": 9812, + "op": "POP", + "gas": 426425, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100" + ] + }, + { + "pc": 9813, + "op": "POP", + "gas": 426423, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52" + ] + }, + { + "pc": 9814, + "op": "POP", + "gas": 426421, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x100" + ] + }, + { + "pc": 9815, + "op": "POP", + "gas": 426419, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3" + ] + }, + { + "pc": 9816, + "op": "POP", + "gas": 426417, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9817, + "op": "PUSH2", + "gas": 426415, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80" + ] + }, + { + "pc": 9820, + "op": "JUMP", + "gas": 426412, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x3625" + ] + }, + { + "pc": 13861, + "op": "JUMPDEST", + "gas": 426404, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80" + ] + }, + { + "pc": 13862, + "op": "PUSH1", + "gas": 426403, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80" + ] + }, + { + "pc": 13864, + "op": "DUP2", + "gas": 426400, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0" + ] + }, + { + "pc": 13865, + "op": "MLOAD", + "gas": 426397, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 13866, + "op": "PUSH1", + "gas": 426394, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3" + ] + }, + { + "pc": 13868, + "op": "LT", + "gas": 426391, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x0" + ] + }, + { + "pc": 13869, + "op": "PUSH2", + "gas": 426388, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 13872, + "op": "JUMPI", + "gas": 426385, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x1", + "0x3676" + ] + }, + { + "pc": 13942, + "op": "JUMPDEST", + "gas": 426375, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0" + ] + }, + { + "pc": 13943, + "op": "DUP2", + "gas": 426374, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0" + ] + }, + { + "pc": 13944, + "op": "MLOAD", + "gas": 426371, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 13945, + "op": "PUSH1", + "gas": 426368, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3" + ] + }, + { + "pc": 13947, + "op": "DUP2", + "gas": 426365, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x2" + ] + }, + { + "pc": 13948, + "op": "DIV", + "gas": 426362, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x2", + "0x3" + ] + }, + { + "pc": 13949, + "op": "PUSH1", + "gas": 426357, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1" + ] + }, + { + "pc": 13951, + "op": "DUP3", + "gas": 426354, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x1" + ] + }, + { + "pc": 13952, + "op": "AND", + "gas": 426351, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x1", + "0x3" + ] + }, + { + "pc": 13953, + "op": "PUSH2", + "gas": 426348, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x1" + ] + }, + { + "pc": 13956, + "op": "JUMPI", + "gas": 426345, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x1", + "0x36b5" + ] + }, + { + "pc": 14005, + "op": "JUMPDEST", + "gas": 426335, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1" + ] + }, + { + "pc": 14006, + "op": "PUSH2", + "gas": 426334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1" + ] + }, + { + "pc": 14009, + "op": "DUP5", + "gas": 426331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5" + ] + }, + { + "pc": 14010, + "op": "PUSH1", + "gas": 426328, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80" + ] + }, + { + "pc": 14012, + "op": "PUSH1", + "gas": 426325, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0" + ] + }, + { + "pc": 14014, + "op": "DUP6", + "gas": 426322, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 14015, + "op": "SUB", + "gas": 426319, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x1", + "0x3" + ] + }, + { + "pc": 14016, + "op": "DUP5", + "gas": 426316, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2" + ] + }, + { + "pc": 14017, + "op": "PUSH2", + "gas": 426313, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1" + ] + }, + { + "pc": 14020, + "op": "JUMP", + "gas": 426310, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x3ab5" + ] + }, + { + "pc": 15029, + "op": "JUMPDEST", + "gas": 426302, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1" + ] + }, + { + "pc": 15030, + "op": "PUSH1", + "gas": 426301, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1" + ] + }, + { + "pc": 15032, + "op": "DUP2", + "gas": 426298, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0" + ] + }, + { + "pc": 15033, + "op": "DUP5", + "gas": 426295, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 15034, + "op": "GT", + "gas": 426292, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 15035, + "op": "ISZERO", + "gas": 426289, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 15036, + "op": "PUSH2", + "gas": 426286, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 15039, + "op": "JUMPI", + "gas": 426283, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x1", + "0x3ac4" + ] + }, + { + "pc": 15044, + "op": "JUMPDEST", + "gas": 426273, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0" + ] + }, + { + "pc": 15045, + "op": "DUP3", + "gas": 426272, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0" + ] + }, + { + "pc": 15046, + "op": "DUP3", + "gas": 426269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x2" + ] + }, + { + "pc": 15047, + "op": "GT", + "gas": 426266, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x2", + "0x1" + ] + }, + { + "pc": 15048, + "op": "ISZERO", + "gas": 426263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 15049, + "op": "PUSH2", + "gas": 426260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 15052, + "op": "JUMPI", + "gas": 426257, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x1", + "0x3ad1" + ] + }, + { + "pc": 15057, + "op": "JUMPDEST", + "gas": 426247, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0" + ] + }, + { + "pc": 15058, + "op": "DUP3", + "gas": 426246, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0" + ] + }, + { + "pc": 15059, + "op": "DUP5", + "gas": 426243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x2" + ] + }, + { + "pc": 15060, + "op": "LT", + "gas": 426240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x2", + "0x0" + ] + }, + { + "pc": 15061, + "op": "ISZERO", + "gas": 426237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 15062, + "op": "PUSH2", + "gas": 426234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 15065, + "op": "JUMPI", + "gas": 426231, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3b28" + ] + }, + { + "pc": 15066, + "op": "PUSH1", + "gas": 426221, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0" + ] + }, + { + "pc": 15068, + "op": "DUP5", + "gas": 426218, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x7" + ] + }, + { + "pc": 15069, + "op": "DUP5", + "gas": 426215, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x7", + "0x0" + ] + }, + { + "pc": 15070, + "op": "SUB", + "gas": 426212, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x7", + "0x0", + "0x2" + ] + }, + { + "pc": 15071, + "op": "LT", + "gas": 426209, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x7", + "0x2" + ] + }, + { + "pc": 15072, + "op": "ISZERO", + "gas": 426206, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 15073, + "op": "PUSH2", + "gas": 426203, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 15076, + "op": "JUMPI", + "gas": 426200, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3afd" + ] + }, + { + "pc": 15077, + "op": "PUSH1", + "gas": 426190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0" + ] + }, + { + "pc": 15079, + "op": "PUSH2", + "gas": 426187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 15082, + "op": "DUP7", + "gas": 426184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3" + ] + }, + { + "pc": 15083, + "op": "DUP7", + "gas": 426181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80" + ] + }, + { + "pc": 15084, + "op": "DUP7", + "gas": 426178, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0" + ] + }, + { + "pc": 15085, + "op": "DUP7", + "gas": 426175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2" + ] + }, + { + "pc": 15086, + "op": "DUP8", + "gas": 426172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1" + ] + }, + { + "pc": 15087, + "op": "PUSH2", + "gas": 426169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1" + ] + }, + { + "pc": 15090, + "op": "JUMP", + "gas": 426166, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x3b46" + ] + }, + { + "pc": 15174, + "op": "JUMPDEST", + "gas": 426158, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1" + ] + }, + { + "pc": 15175, + "op": "PUSH1", + "gas": 426157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1" + ] + }, + { + "pc": 15177, + "op": "DUP1", + "gas": 426154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0" + ] + }, + { + "pc": 15178, + "op": "PUSH1", + "gas": 426151, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 15180, + "op": "DUP7", + "gas": 426148, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 15181, + "op": "DUP7", + "gas": 426145, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 15182, + "op": "PUSH1", + "gas": 426142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x0", + "0x0", + "0x2" + ] + }, + { + "pc": 15184, + "op": "ADD", + "gas": 426139, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x0", + "0x0", + "0x2", + "0x1" + ] + }, + { + "pc": 15185, + "op": "SUB", + "gas": 426136, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x0", + "0x0", + "0x3" + ] + }, + { + "pc": 15186, + "op": "SWAP1", + "gas": 426133, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x0", + "0x3" + ] + }, + { + "pc": 15187, + "op": "POP", + "gas": 426130, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0" + ] + }, + { + "pc": 15188, + "op": "PUSH1", + "gas": 426128, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3" + ] + }, + { + "pc": 15190, + "op": "DUP9", + "gas": 426125, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0" + ] + }, + { + "pc": 15191, + "op": "DUP9", + "gas": 426122, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80" + ] + }, + { + "pc": 15192, + "op": "PUSH1", + "gas": 426119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15194, + "op": "ADD", + "gas": 426116, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 15195, + "op": "DUP2", + "gas": 426113, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15196, + "op": "MLOAD", + "gas": 426110, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 15197, + "op": "DUP2", + "gas": 426107, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80", + "0x0", + "0x3" + ] + }, + { + "pc": 15198, + "op": "LT", + "gas": 426104, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80", + "0x0", + "0x3", + "0x0" + ] + }, + { + "pc": 15199, + "op": "PUSH2", + "gas": 426101, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 15202, + "op": "JUMPI", + "gas": 426098, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80", + "0x0", + "0x1", + "0x3b64" + ] + }, + { + "pc": 15204, + "op": "JUMPDEST", + "gas": 426088, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15205, + "op": "PUSH1", + "gas": 426087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15207, + "op": "MUL", + "gas": 426084, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 15208, + "op": "PUSH1", + "gas": 426079, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15210, + "op": "ADD", + "gas": 426076, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 15211, + "op": "ADD", + "gas": 426073, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x80", + "0x20" + ] + }, + { + "pc": 15212, + "op": "MLOAD", + "gas": 426070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0xa0" + ] + }, + { + "pc": 15213, + "op": "SWAP1", + "gas": 426067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15214, + "op": "POP", + "gas": 426064, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 15215, + "op": "PUSH1", + "gas": 426062, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15217, + "op": "DUP3", + "gas": 426059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 15218, + "op": "PUSH1", + "gas": 426056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x3" + ] + }, + { + "pc": 15220, + "op": "LT", + "gas": 426053, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x1" + ] + }, + { + "pc": 15221, + "op": "PUSH2", + "gas": 426050, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x1" + ] + }, + { + "pc": 15224, + "op": "JUMPI", + "gas": 426047, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x1", + "0x3b85" + ] + }, + { + "pc": 15237, + "op": "JUMPDEST", + "gas": 426037, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 15238, + "op": "DUP10", + "gas": 426036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 15239, + "op": "DUP10", + "gas": 426033, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80" + ] + }, + { + "pc": 15240, + "op": "PUSH1", + "gas": 426030, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15242, + "op": "ADD", + "gas": 426027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 15243, + "op": "DUP2", + "gas": 426024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1" + ] + }, + { + "pc": 15244, + "op": "MLOAD", + "gas": 426021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x80" + ] + }, + { + "pc": 15245, + "op": "DUP2", + "gas": 426018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x3" + ] + }, + { + "pc": 15246, + "op": "LT", + "gas": 426015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x3", + "0x1" + ] + }, + { + "pc": 15247, + "op": "PUSH2", + "gas": 426012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x1" + ] + }, + { + "pc": 15250, + "op": "JUMPI", + "gas": 426009, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x1", + "0x3b94" + ] + }, + { + "pc": 15252, + "op": "JUMPDEST", + "gas": 425999, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1" + ] + }, + { + "pc": 15253, + "op": "PUSH1", + "gas": 425998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1" + ] + }, + { + "pc": 15255, + "op": "MUL", + "gas": 425995, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x20" + ] + }, + { + "pc": 15256, + "op": "PUSH1", + "gas": 425990, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x20" + ] + }, + { + "pc": 15258, + "op": "ADD", + "gas": 425987, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 15259, + "op": "ADD", + "gas": 425984, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x40" + ] + }, + { + "pc": 15260, + "op": "MLOAD", + "gas": 425981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0xc0" + ] + }, + { + "pc": 15261, + "op": "JUMPDEST", + "gas": 425978, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15262, + "op": "SWAP1", + "gas": 425977, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x0", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15263, + "op": "POP", + "gas": 425974, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0" + ] + }, + { + "pc": 15264, + "op": "PUSH1", + "gas": 425972, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15266, + "op": "DUP4", + "gas": 425969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0" + ] + }, + { + "pc": 15267, + "op": "PUSH1", + "gas": 425966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x3" + ] + }, + { + "pc": 15269, + "op": "LT", + "gas": 425963, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x3", + "0x2" + ] + }, + { + "pc": 15270, + "op": "PUSH2", + "gas": 425960, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x1" + ] + }, + { + "pc": 15273, + "op": "JUMPI", + "gas": 425957, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x1", + "0x3bb6" + ] + }, + { + "pc": 15286, + "op": "JUMPDEST", + "gas": 425947, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0" + ] + }, + { + "pc": 15287, + "op": "DUP11", + "gas": 425946, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0" + ] + }, + { + "pc": 15288, + "op": "DUP11", + "gas": 425943, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80" + ] + }, + { + "pc": 15289, + "op": "PUSH1", + "gas": 425940, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15291, + "op": "ADD", + "gas": 425937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x0", + "0x2" + ] + }, + { + "pc": 15292, + "op": "DUP2", + "gas": 425934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2" + ] + }, + { + "pc": 15293, + "op": "MLOAD", + "gas": 425931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x80" + ] + }, + { + "pc": 15294, + "op": "DUP2", + "gas": 425928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x3" + ] + }, + { + "pc": 15295, + "op": "LT", + "gas": 425925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x3", + "0x2" + ] + }, + { + "pc": 15296, + "op": "PUSH2", + "gas": 425922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x1" + ] + }, + { + "pc": 15299, + "op": "JUMPI", + "gas": 425919, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x1", + "0x3bc5" + ] + }, + { + "pc": 15301, + "op": "JUMPDEST", + "gas": 425909, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2" + ] + }, + { + "pc": 15302, + "op": "PUSH1", + "gas": 425908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2" + ] + }, + { + "pc": 15304, + "op": "MUL", + "gas": 425905, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x20" + ] + }, + { + "pc": 15305, + "op": "PUSH1", + "gas": 425900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x40" + ] + }, + { + "pc": 15307, + "op": "ADD", + "gas": 425897, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x40", + "0x20" + ] + }, + { + "pc": 15308, + "op": "ADD", + "gas": 425894, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x60" + ] + }, + { + "pc": 15309, + "op": "MLOAD", + "gas": 425891, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0xe0" + ] + }, + { + "pc": 15310, + "op": "JUMPDEST", + "gas": 425888, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15311, + "op": "SWAP1", + "gas": 425887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15312, + "op": "POP", + "gas": 425884, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0" + ] + }, + { + "pc": 15313, + "op": "PUSH1", + "gas": 425882, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15315, + "op": "DUP5", + "gas": 425879, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0" + ] + }, + { + "pc": 15316, + "op": "PUSH1", + "gas": 425876, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x3" + ] + }, + { + "pc": 15318, + "op": "LT", + "gas": 425873, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x3", + "0x3" + ] + }, + { + "pc": 15319, + "op": "PUSH2", + "gas": 425870, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x0" + ] + }, + { + "pc": 15322, + "op": "JUMPI", + "gas": 425867, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x0", + "0x3be7" + ] + }, + { + "pc": 15323, + "op": "PUSH1", + "gas": 425857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0" + ] + }, + { + "pc": 15325, + "op": "PUSH1", + "gas": 425854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x1" + ] + }, + { + "pc": 15327, + "op": "PUSH1", + "gas": 425851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 15329, + "op": "SHL", + "gas": 425848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x1", + "0x1", + "0xff" + ] + }, + { + "pc": 15330, + "op": "SUB", + "gas": 425845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x1", + "0x8000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 15331, + "op": "PUSH2", + "gas": 425842, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15334, + "op": "JUMP", + "gas": 425839, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x3bff" + ] + }, + { + "pc": 15359, + "op": "JUMPDEST", + "gas": 425831, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15360, + "op": "SWAP1", + "gas": 425830, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15361, + "op": "POP", + "gas": 425827, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15362, + "op": "PUSH1", + "gas": 425825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15364, + "op": "DUP6", + "gas": 425822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15365, + "op": "PUSH1", + "gas": 425819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3" + ] + }, + { + "pc": 15367, + "op": "LT", + "gas": 425816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3", + "0x4" + ] + }, + { + "pc": 15368, + "op": "PUSH2", + "gas": 425813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0" + ] + }, + { + "pc": 15371, + "op": "JUMPI", + "gas": 425810, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0", + "0x3c18" + ] + }, + { + "pc": 15372, + "op": "PUSH1", + "gas": 425800, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15374, + "op": "PUSH1", + "gas": 425797, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1" + ] + }, + { + "pc": 15376, + "op": "PUSH1", + "gas": 425794, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 15378, + "op": "SHL", + "gas": 425791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x1", + "0xff" + ] + }, + { + "pc": 15379, + "op": "SUB", + "gas": 425788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x8000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 15380, + "op": "PUSH2", + "gas": 425785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15383, + "op": "JUMP", + "gas": 425782, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x3c30" + ] + }, + { + "pc": 15408, + "op": "JUMPDEST", + "gas": 425774, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15409, + "op": "SWAP1", + "gas": 425773, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15410, + "op": "POP", + "gas": 425770, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15411, + "op": "PUSH1", + "gas": 425768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15413, + "op": "DUP7", + "gas": 425765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15414, + "op": "PUSH1", + "gas": 425762, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3" + ] + }, + { + "pc": 15416, + "op": "LT", + "gas": 425759, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3", + "0x5" + ] + }, + { + "pc": 15417, + "op": "PUSH2", + "gas": 425756, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0" + ] + }, + { + "pc": 15420, + "op": "JUMPI", + "gas": 425753, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0", + "0x3c49" + ] + }, + { + "pc": 15421, + "op": "PUSH1", + "gas": 425743, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15423, + "op": "PUSH1", + "gas": 425740, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1" + ] + }, + { + "pc": 15425, + "op": "PUSH1", + "gas": 425737, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 15427, + "op": "SHL", + "gas": 425734, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x1", + "0xff" + ] + }, + { + "pc": 15428, + "op": "SUB", + "gas": 425731, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x8000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 15429, + "op": "PUSH2", + "gas": 425728, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15432, + "op": "JUMP", + "gas": 425725, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x3c61" + ] + }, + { + "pc": 15457, + "op": "JUMPDEST", + "gas": 425717, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15458, + "op": "SWAP1", + "gas": 425716, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15459, + "op": "POP", + "gas": 425713, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15460, + "op": "PUSH1", + "gas": 425711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15462, + "op": "DUP8", + "gas": 425708, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15463, + "op": "PUSH1", + "gas": 425705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3" + ] + }, + { + "pc": 15465, + "op": "LT", + "gas": 425702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3", + "0x6" + ] + }, + { + "pc": 15466, + "op": "PUSH2", + "gas": 425699, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0" + ] + }, + { + "pc": 15469, + "op": "JUMPI", + "gas": 425696, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0", + "0x3c7a" + ] + }, + { + "pc": 15470, + "op": "PUSH1", + "gas": 425686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15472, + "op": "PUSH1", + "gas": 425683, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1" + ] + }, + { + "pc": 15474, + "op": "PUSH1", + "gas": 425680, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 15476, + "op": "SHL", + "gas": 425677, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x1", + "0xff" + ] + }, + { + "pc": 15477, + "op": "SUB", + "gas": 425674, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x8000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 15478, + "op": "PUSH2", + "gas": 425671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15481, + "op": "JUMP", + "gas": 425668, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x3c92" + ] + }, + { + "pc": 15506, + "op": "JUMPDEST", + "gas": 425660, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15507, + "op": "SWAP1", + "gas": 425659, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15508, + "op": "POP", + "gas": 425656, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15509, + "op": "DUP6", + "gas": 425654, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15510, + "op": "DUP8", + "gas": 425651, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15511, + "op": "SGT", + "gas": 425648, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15512, + "op": "ISZERO", + "gas": 425645, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15513, + "op": "PUSH2", + "gas": 425642, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15516, + "op": "JUMPI", + "gas": 425639, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3ca0" + ] + }, + { + "pc": 15520, + "op": "JUMPDEST", + "gas": 425629, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15521, + "op": "DUP4", + "gas": 425628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15522, + "op": "DUP6", + "gas": 425625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15523, + "op": "SGT", + "gas": 425622, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15524, + "op": "ISZERO", + "gas": 425619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15525, + "op": "PUSH2", + "gas": 425616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15528, + "op": "JUMPI", + "gas": 425613, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cac" + ] + }, + { + "pc": 15532, + "op": "JUMPDEST", + "gas": 425603, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15533, + "op": "DUP2", + "gas": 425602, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15534, + "op": "DUP4", + "gas": 425599, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15535, + "op": "SGT", + "gas": 425596, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15536, + "op": "ISZERO", + "gas": 425593, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15537, + "op": "PUSH2", + "gas": 425590, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15540, + "op": "JUMPI", + "gas": 425587, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cb8" + ] + }, + { + "pc": 15544, + "op": "JUMPDEST", + "gas": 425577, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15545, + "op": "DUP5", + "gas": 425576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15546, + "op": "DUP8", + "gas": 425573, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15547, + "op": "SGT", + "gas": 425570, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15548, + "op": "ISZERO", + "gas": 425567, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15549, + "op": "PUSH2", + "gas": 425564, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15552, + "op": "JUMPI", + "gas": 425561, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3cc4" + ] + }, + { + "pc": 15553, + "op": "SWAP4", + "gas": 425551, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15554, + "op": "SWAP6", + "gas": 425548, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15555, + "op": "SWAP4", + "gas": 425545, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15556, + "op": "JUMPDEST", + "gas": 425542, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15557, + "op": "DUP4", + "gas": 425541, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15558, + "op": "DUP7", + "gas": 425538, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15559, + "op": "SGT", + "gas": 425535, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15560, + "op": "ISZERO", + "gas": 425532, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15561, + "op": "PUSH2", + "gas": 425529, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15564, + "op": "JUMPI", + "gas": 425526, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cd0" + ] + }, + { + "pc": 15568, + "op": "JUMPDEST", + "gas": 425516, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15569, + "op": "DUP1", + "gas": 425515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15570, + "op": "DUP4", + "gas": 425512, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15571, + "op": "SGT", + "gas": 425509, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15572, + "op": "ISZERO", + "gas": 425506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15573, + "op": "PUSH2", + "gas": 425503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15576, + "op": "JUMPI", + "gas": 425500, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cda" + ] + }, + { + "pc": 15578, + "op": "JUMPDEST", + "gas": 425490, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15579, + "op": "DUP5", + "gas": 425489, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15580, + "op": "DUP7", + "gas": 425486, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15581, + "op": "SGT", + "gas": 425483, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15582, + "op": "ISZERO", + "gas": 425480, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15583, + "op": "PUSH2", + "gas": 425477, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15586, + "op": "JUMPI", + "gas": 425474, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3ce6" + ] + }, + { + "pc": 15587, + "op": "SWAP4", + "gas": 425464, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15588, + "op": "SWAP5", + "gas": 425461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15589, + "op": "SWAP4", + "gas": 425458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15590, + "op": "JUMPDEST", + "gas": 425455, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15591, + "op": "DUP1", + "gas": 425454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15592, + "op": "DUP3", + "gas": 425451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15593, + "op": "SGT", + "gas": 425448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15594, + "op": "ISZERO", + "gas": 425445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15595, + "op": "PUSH2", + "gas": 425442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15598, + "op": "JUMPI", + "gas": 425439, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cf0" + ] + }, + { + "pc": 15600, + "op": "JUMPDEST", + "gas": 425429, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15601, + "op": "DUP3", + "gas": 425428, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15602, + "op": "DUP8", + "gas": 425425, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15603, + "op": "SGT", + "gas": 425422, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15604, + "op": "ISZERO", + "gas": 425419, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15605, + "op": "PUSH2", + "gas": 425416, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15608, + "op": "JUMPI", + "gas": 425413, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cfc" + ] + }, + { + "pc": 15612, + "op": "JUMPDEST", + "gas": 425403, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15613, + "op": "DUP2", + "gas": 425402, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15614, + "op": "DUP7", + "gas": 425399, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15615, + "op": "SGT", + "gas": 425396, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15616, + "op": "ISZERO", + "gas": 425393, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15617, + "op": "PUSH2", + "gas": 425390, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15620, + "op": "JUMPI", + "gas": 425387, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d08" + ] + }, + { + "pc": 15624, + "op": "JUMPDEST", + "gas": 425377, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15625, + "op": "DUP1", + "gas": 425376, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15626, + "op": "DUP6", + "gas": 425373, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15627, + "op": "SGT", + "gas": 425370, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15628, + "op": "ISZERO", + "gas": 425367, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15629, + "op": "PUSH2", + "gas": 425364, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15632, + "op": "JUMPI", + "gas": 425361, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d12" + ] + }, + { + "pc": 15634, + "op": "JUMPDEST", + "gas": 425351, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15635, + "op": "DUP3", + "gas": 425350, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15636, + "op": "DUP7", + "gas": 425347, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15637, + "op": "SGT", + "gas": 425344, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15638, + "op": "ISZERO", + "gas": 425341, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15639, + "op": "PUSH2", + "gas": 425338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15642, + "op": "JUMPI", + "gas": 425335, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d1e" + ] + }, + { + "pc": 15646, + "op": "JUMPDEST", + "gas": 425325, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15647, + "op": "DUP1", + "gas": 425324, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15648, + "op": "DUP5", + "gas": 425321, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15649, + "op": "SGT", + "gas": 425318, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15650, + "op": "ISZERO", + "gas": 425315, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15651, + "op": "PUSH2", + "gas": 425312, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15654, + "op": "JUMPI", + "gas": 425309, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d28" + ] + }, + { + "pc": 15656, + "op": "JUMPDEST", + "gas": 425299, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15657, + "op": "DUP3", + "gas": 425298, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15658, + "op": "DUP6", + "gas": 425295, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15659, + "op": "SGT", + "gas": 425292, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15660, + "op": "ISZERO", + "gas": 425289, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15661, + "op": "PUSH2", + "gas": 425286, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15664, + "op": "JUMPI", + "gas": 425283, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d34" + ] + }, + { + "pc": 15668, + "op": "JUMPDEST", + "gas": 425273, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15669, + "op": "DUP2", + "gas": 425272, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15670, + "op": "DUP5", + "gas": 425269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15671, + "op": "SGT", + "gas": 425266, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15672, + "op": "ISZERO", + "gas": 425263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15673, + "op": "PUSH2", + "gas": 425260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15676, + "op": "JUMPI", + "gas": 425257, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d40" + ] + }, + { + "pc": 15680, + "op": "JUMPDEST", + "gas": 425247, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15681, + "op": "DUP3", + "gas": 425246, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15682, + "op": "DUP5", + "gas": 425243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15683, + "op": "SGT", + "gas": 425240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15684, + "op": "ISZERO", + "gas": 425237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15685, + "op": "PUSH2", + "gas": 425234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15688, + "op": "JUMPI", + "gas": 425231, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d4c" + ] + }, + { + "pc": 15692, + "op": "JUMPDEST", + "gas": 425221, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15693, + "op": "DUP14", + "gas": 425220, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15694, + "op": "DUP13", + "gas": 425217, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15695, + "op": "SUB", + "gas": 425214, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1" + ] + }, + { + "pc": 15696, + "op": "DUP1", + "gas": 425211, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15697, + "op": "PUSH2", + "gas": 425208, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1" + ] + }, + { + "pc": 15700, + "op": "JUMPI", + "gas": 425205, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1", + "0x3d5c" + ] + }, + { + "pc": 15708, + "op": "JUMPDEST", + "gas": 425195, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15709, + "op": "DUP1", + "gas": 425194, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15710, + "op": "PUSH1", + "gas": 425191, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1" + ] + }, + { + "pc": 15712, + "op": "EQ", + "gas": 425188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1", + "0x1" + ] + }, + { + "pc": 15713, + "op": "ISZERO", + "gas": 425185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1" + ] + }, + { + "pc": 15714, + "op": "PUSH2", + "gas": 425182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x0" + ] + }, + { + "pc": 15717, + "op": "JUMPI", + "gas": 425179, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x0", + "0x3d6d" + ] + }, + { + "pc": 15718, + "op": "DUP7", + "gas": 425169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15719, + "op": "SWAP11", + "gas": 425166, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x0", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15720, + "op": "POP", + "gas": 425163, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x0" + ] + }, + { + "pc": 15721, + "op": "PUSH2", + "gas": 425161, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15724, + "op": "JUMP", + "gas": 425158, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3e02" + ] + }, + { + "pc": 15874, + "op": "JUMPDEST", + "gas": 425150, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15875, + "op": "DUP15", + "gas": 425149, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15876, + "op": "DUP13", + "gas": 425146, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x0" + ] + }, + { + "pc": 15877, + "op": "SUB", + "gas": 425143, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 15878, + "op": "DUP14", + "gas": 425140, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1" + ] + }, + { + "pc": 15879, + "op": "DUP14", + "gas": 425137, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1", + "0x1" + ] + }, + { + "pc": 15880, + "op": "EQ", + "gas": 425134, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1", + "0x1", + "0x1" + ] + }, + { + "pc": 15881, + "op": "ISZERO", + "gas": 425131, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1", + "0x1" + ] + }, + { + "pc": 15882, + "op": "PUSH2", + "gas": 425128, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1", + "0x0" + ] + }, + { + "pc": 15885, + "op": "JUMPI", + "gas": 425125, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1", + "0x0", + "0x3e20" + ] + }, + { + "pc": 15886, + "op": "POP", + "gas": 425115, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1" + ] + }, + { + "pc": 15887, + "op": "DUP11", + "gas": 425113, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15888, + "op": "SWAP10", + "gas": 425110, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15889, + "op": "POP", + "gas": 425107, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x0" + ] + }, + { + "pc": 15890, + "op": "PUSH2", + "gas": 425105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15893, + "op": "SWAP9", + "gas": 425102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3a3d" + ] + }, + { + "pc": 15894, + "op": "POP", + "gas": 425099, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3" + ] + }, + { + "pc": 15895, + "op": "POP", + "gas": 425097, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15896, + "op": "POP", + "gas": 425095, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15897, + "op": "POP", + "gas": 425093, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15898, + "op": "POP", + "gas": 425091, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15899, + "op": "POP", + "gas": 425089, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15900, + "op": "POP", + "gas": 425087, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15901, + "op": "POP", + "gas": 425085, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15902, + "op": "POP", + "gas": 425083, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3a3d", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15903, + "op": "JUMP", + "gas": 425081, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3a3d" + ] + }, + { + "pc": 14909, + "op": "JUMPDEST", + "gas": 425073, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 14910, + "op": "SWAP6", + "gas": 425072, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 14911, + "op": "POP", + "gas": 425069, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x41ee3e171aea2d7280", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280", + "0x80" + ] + }, + { + "pc": 14912, + "op": "SWAP6", + "gas": 425067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x3af3", + "0x41ee3e171aea2d7280", + "0x0", + "0x2", + "0x1", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 14913, + "op": "SWAP4", + "gas": 425064, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x0", + "0x2", + "0x1", + "0x1", + "0x3af3" + ] + }, + { + "pc": 14914, + "op": "POP", + "gas": 425061, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3af3", + "0x2", + "0x1", + "0x1", + "0x0" + ] + }, + { + "pc": 14915, + "op": "POP", + "gas": 425059, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3af3", + "0x2", + "0x1", + "0x1" + ] + }, + { + "pc": 14916, + "op": "POP", + "gas": 425057, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3af3", + "0x2", + "0x1" + ] + }, + { + "pc": 14917, + "op": "POP", + "gas": 425055, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3af3", + "0x2" + ] + }, + { + "pc": 14918, + "op": "JUMP", + "gas": 425053, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280", + "0x3af3" + ] + }, + { + "pc": 15091, + "op": "JUMPDEST", + "gas": 425045, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15092, + "op": "POP", + "gas": 425044, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15093, + "op": "SWAP2", + "gas": 425042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x0", + "0x0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15094, + "op": "POP", + "gas": 425039, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x0" + ] + }, + { + "pc": 15095, + "op": "PUSH2", + "gas": 425037, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 15098, + "op": "SWAP1", + "gas": 425034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0x31f3" + ] + }, + { + "pc": 15099, + "op": "POP", + "gas": 425031, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x41ee3e171aea2d7280", + "0x31f3", + "0x0" + ] + }, + { + "pc": 15100, + "op": "JUMP", + "gas": 425029, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x41ee3e171aea2d7280", + "0x31f3" + ] + }, + { + "pc": 12787, + "op": "JUMPDEST", + "gas": 425021, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 12788, + "op": "SWAP5", + "gas": 425020, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x36c5", + "0x80", + "0x0", + "0x2", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 12789, + "op": "SWAP4", + "gas": 425017, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x41ee3e171aea2d7280", + "0x80", + "0x0", + "0x2", + "0x1", + "0x36c5" + ] + }, + { + "pc": 12790, + "op": "POP", + "gas": 425014, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x41ee3e171aea2d7280", + "0x36c5", + "0x0", + "0x2", + "0x1", + "0x80" + ] + }, + { + "pc": 12791, + "op": "POP", + "gas": 425012, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x41ee3e171aea2d7280", + "0x36c5", + "0x0", + "0x2", + "0x1" + ] + }, + { + "pc": 12792, + "op": "POP", + "gas": 425010, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x41ee3e171aea2d7280", + "0x36c5", + "0x0", + "0x2" + ] + }, + { + "pc": 12793, + "op": "POP", + "gas": 425008, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x41ee3e171aea2d7280", + "0x36c5", + "0x0" + ] + }, + { + "pc": 12794, + "op": "JUMP", + "gas": 425006, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x41ee3e171aea2d7280", + "0x36c5" + ] + }, + { + "pc": 14021, + "op": "JUMPDEST", + "gas": 424998, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 14022, + "op": "SWAP3", + "gas": 424997, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x3", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 14023, + "op": "POP", + "gas": 424994, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41ee3e171aea2d7280", + "0x3", + "0x1", + "0x0" + ] + }, + { + "pc": 14024, + "op": "POP", + "gas": 424992, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41ee3e171aea2d7280", + "0x3", + "0x1" + ] + }, + { + "pc": 14025, + "op": "POP", + "gas": 424990, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41ee3e171aea2d7280", + "0x3" + ] + }, + { + "pc": 14026, + "op": "PUSH2", + "gas": 424988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 14029, + "op": "JUMP", + "gas": 424985, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41ee3e171aea2d7280", + "0x1787" + ] + }, + { + "pc": 6023, + "op": "JUMPDEST", + "gas": 424977, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 6024, + "op": "SWAP2", + "gas": 424976, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 6025, + "op": "SWAP1", + "gas": 424973, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x80", + "0x265d" + ] + }, + { + "pc": 6026, + "op": "POP", + "gas": 424970, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x265d", + "0x80" + ] + }, + { + "pc": 6027, + "op": "JUMP", + "gas": 424968, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x265d" + ] + }, + { + "pc": 9821, + "op": "JUMPDEST", + "gas": 424960, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 9822, + "op": "PUSH4", + "gas": 424959, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 9827, + "op": "DUP6", + "gas": 424956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0xffffffff" + ] + }, + { + "pc": 9828, + "op": "AND", + "gas": 424953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9829, + "op": "PUSH1", + "gas": 424950, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e" + ] + }, + { + "pc": 9831, + "op": "DUP2", + "gas": 424947, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x0" + ] + }, + { + "pc": 9832, + "op": "DUP2", + "gas": 424944, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x0", + "0x305e" + ] + }, + { + "pc": 9833, + "op": "MSTORE", + "gas": 424941, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9834, + "op": "PUSH1", + "gas": 424938, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x0" + ] + }, + { + "pc": 9836, + "op": "PUSH1", + "gas": 424935, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x0", + "0x9" + ] + }, + { + "pc": 9838, + "op": "SWAP1", + "gas": 424932, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x0", + "0x9", + "0x20" + ] + }, + { + "pc": 9839, + "op": "DUP2", + "gas": 424929, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x0", + "0x20", + "0x9" + ] + }, + { + "pc": 9840, + "op": "MSTORE", + "gas": 424926, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x0", + "0x20", + "0x9", + "0x20" + ] + }, + { + "pc": 9841, + "op": "PUSH1", + "gas": 424923, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x0", + "0x20" + ] + }, + { + "pc": 9843, + "op": "SWAP2", + "gas": 424920, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x0", + "0x20", + "0x40" + ] + }, + { + "pc": 9844, + "op": "DUP3", + "gas": 424917, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x0" + ] + }, + { + "pc": 9845, + "op": "SWAP1", + "gas": 424914, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x0", + "0x40" + ] + }, + { + "pc": 9846, + "op": "KECCAK256", + "gas": 424911, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x40", + "0x0" + ] + }, + { + "pc": 9847, + "op": "DUP5", + "gas": 424869, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f" + ] + }, + { + "pc": 9848, + "op": "DUP2", + "gas": 424866, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 9849, + "op": "SSTORE", + "gas": 424863, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f", + "0x41ee3e171aea2d7280", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9850, + "op": "PUSH1", + "gas": 404863, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f" + ] + }, + { + "pc": 9852, + "op": "ADD", + "gas": 404860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f", + "0x1" + ] + }, + { + "pc": 9853, + "op": "DUP1", + "gas": 404857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260" + ] + }, + { + "pc": 9854, + "op": "SLOAD", + "gas": 404854, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "00000000000000000000000000000000000000000000000000000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9855, + "op": "PUSH8", + "gas": 404054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2" + ] + }, + { + "pc": 9864, + "op": "PUSH1", + "gas": 404051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0xffffffffffffffff" + ] + }, + { + "pc": 9866, + "op": "SHL", + "gas": 404048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0xffffffffffffffff", + "0x40" + ] + }, + { + "pc": 9867, + "op": "NOT", + "gas": 404045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0xffffffffffffffff0000000000000000" + ] + }, + { + "pc": 9868, + "op": "AND", + "gas": 404042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" + ] + }, + { + "pc": 9869, + "op": "PUSH1", + "gas": 404039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2" + ] + }, + { + "pc": 9871, + "op": "PUSH1", + "gas": 404036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x1" + ] + }, + { + "pc": 9873, + "op": "SHL", + "gas": 404033, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x1", + "0x40" + ] + }, + { + "pc": 9874, + "op": "TIMESTAMP", + "gas": 404030, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x10000000000000000" + ] + }, + { + "pc": 9875, + "op": "PUSH1", + "gas": 404028, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x10000000000000000", + "0x689d90e4" + ] + }, + { + "pc": 9877, + "op": "PUSH1", + "gas": 404025, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x1" + ] + }, + { + "pc": 9879, + "op": "PUSH1", + "gas": 404022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x1", + "0x1" + ] + }, + { + "pc": 9881, + "op": "SHL", + "gas": 404019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x1", + "0x1", + "0x40" + ] + }, + { + "pc": 9882, + "op": "SUB", + "gas": 404016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x1", + "0x10000000000000000" + ] + }, + { + "pc": 9883, + "op": "DUP2", + "gas": 404013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0xffffffffffffffff" + ] + }, + { + "pc": 9884, + "op": "AND", + "gas": 404010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0xffffffffffffffff", + "0x689d90e4" + ] + }, + { + "pc": 9885, + "op": "SWAP2", + "gas": 404007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x689d90e4" + ] + }, + { + "pc": 9886, + "op": "SWAP1", + "gas": 404004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x689d90e4", + "0x689d90e4", + "0x10000000000000000" + ] + }, + { + "pc": 9887, + "op": "SWAP2", + "gas": 404001, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x689d90e4", + "0x10000000000000000", + "0x689d90e4" + ] + }, + { + "pc": 9888, + "op": "MUL", + "gas": 403998, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x689d90e4", + "0x10000000000000000", + "0x689d90e4" + ] + }, + { + "pc": 9889, + "op": "SWAP2", + "gas": 403993, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e2", + "0x689d90e4", + "0x689d90e40000000000000000" + ] + }, + { + "pc": 9890, + "op": "SWAP1", + "gas": 403990, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e40000000000000000", + "0x689d90e4", + "0x689d90e2" + ] + }, + { + "pc": 9891, + "op": "SWAP2", + "gas": 403987, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e40000000000000000", + "0x689d90e2", + "0x689d90e4" + ] + }, + { + "pc": 9892, + "op": "OR", + "gas": 403984, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e2", + "0x689d90e40000000000000000" + ] + }, + { + "pc": 9893, + "op": "PUSH4", + "gas": 403981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2" + ] + }, + { + "pc": 9898, + "op": "PUSH1", + "gas": 403978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0xffffffff" + ] + }, + { + "pc": 9900, + "op": "SHL", + "gas": 403975, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0xffffffff", + "0x80" + ] + }, + { + "pc": 9901, + "op": "NOT", + "gas": 403972, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0xffffffff00000000000000000000000000000000" + ] + }, + { + "pc": 9902, + "op": "AND", + "gas": 403969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0xffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 9903, + "op": "PUSH1", + "gas": 403966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2" + ] + }, + { + "pc": 9905, + "op": "PUSH1", + "gas": 403963, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x1" + ] + }, + { + "pc": 9907, + "op": "SHL", + "gas": 403960, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x1", + "0x80" + ] + }, + { + "pc": 9908, + "op": "DUP7", + "gas": 403957, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 9909, + "op": "MUL", + "gas": 403954, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x100000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 9910, + "op": "OR", + "gas": 403949, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x305e00000000000000000000000000000000" + ] + }, + { + "pc": 9911, + "op": "SWAP1", + "gas": 403946, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2" + ] + }, + { + "pc": 9912, + "op": "SWAP2", + "gas": 403943, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e00000000689d90e400000000689d90e2", + "0x689d90e4" + ] + }, + { + "pc": 9913, + "op": "SSTORE", + "gas": 403940, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9914, + "op": "PUSH1", + "gas": 398940, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4" + ] + }, + { + "pc": 9916, + "op": "DUP1", + "gas": 398937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7" + ] + }, + { + "pc": 9917, + "op": "SLOAD", + "gas": 398934, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305d0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9918, + "op": "PUSH8", + "gas": 398134, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305d0000305e" + ] + }, + { + "pc": 9927, + "op": "NOT", + "gas": 398131, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305d0000305e", + "0xffffffff00000000" + ] + }, + { + "pc": 9928, + "op": "AND", + "gas": 398128, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305d0000305e", + "0xffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff" + ] + }, + { + "pc": 9929, + "op": "PUSH1", + "gas": 398125, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e" + ] + }, + { + "pc": 9931, + "op": "PUSH1", + "gas": 398122, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x1" + ] + }, + { + "pc": 9933, + "op": "SHL", + "gas": 398119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x1", + "0x20" + ] + }, + { + "pc": 9934, + "op": "DUP7", + "gas": 398116, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x100000000" + ] + }, + { + "pc": 9935, + "op": "MUL", + "gas": 398113, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x100000000", + "0x305e" + ] + }, + { + "pc": 9936, + "op": "OR", + "gas": 398108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x305e00000000" + ] + }, + { + "pc": 9937, + "op": "SWAP1", + "gas": 398105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e0000305e" + ] + }, + { + "pc": 9938, + "op": "SSTORE", + "gas": 398102, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x305e0000305e", + "0x7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 9939, + "op": "DUP3", + "gas": 393102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4" + ] + }, + { + "pc": 9940, + "op": "MLOAD", + "gas": 393099, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x40" + ] + }, + { + "pc": 9941, + "op": "SWAP1", + "gas": 393096, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x100" + ] + }, + { + "pc": 9942, + "op": "DUP2", + "gas": 393093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x100", + "0x689d90e4" + ] + }, + { + "pc": 9943, + "op": "MSTORE", + "gas": 393090, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x100", + "0x689d90e4", + "0x100" + ] + }, + { + "pc": 9944, + "op": "SWAP2", + "gas": 393084, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x40", + "0x20", + "0x100" + ] + }, + { + "pc": 9945, + "op": "MLOAD", + "gas": 393081, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x100", + "0x20", + "0x40" + ] + }, + { + "pc": 9946, + "op": "SWAP4", + "gas": 393078, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x100", + "0x20", + "0x100" + ] + }, + { + "pc": 9947, + "op": "SWAP5", + "gas": 393075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x100", + "0x305e", + "0x100", + "0x20", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 9948, + "op": "POP", + "gas": 393072, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x100", + "0x305e", + "0x100", + "0x20", + "0x0" + ] + }, + { + "pc": 9949, + "op": "SWAP2", + "gas": 393070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x100", + "0x305e", + "0x100", + "0x20" + ] + }, + { + "pc": 9950, + "op": "SWAP3", + "gas": 393067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x100", + "0x20", + "0x100", + "0x305e" + ] + }, + { + "pc": 9951, + "op": "DUP5", + "gas": 393064, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x20", + "0x100", + "0x100" + ] + }, + { + "pc": 9952, + "op": "SWAP3", + "gas": 393061, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x20", + "0x100", + "0x100", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 9953, + "op": "PUSH32", + "gas": 393058, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x41ee3e171aea2d7280", + "0x100", + "0x100", + "0x20" + ] + }, + { + "pc": 9986, + "op": "SWAP3", + "gas": 393055, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x41ee3e171aea2d7280", + "0x100", + "0x100", + "0x20", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f" + ] + }, + { + "pc": 9987, + "op": "DUP3", + "gas": 393052, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x41ee3e171aea2d7280", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x100", + "0x20", + "0x100" + ] + }, + { + "pc": 9988, + "op": "SWAP1", + "gas": 393049, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x41ee3e171aea2d7280", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x100", + "0x20", + "0x100", + "0x100" + ] + }, + { + "pc": 9989, + "op": "SUB", + "gas": 393046, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x41ee3e171aea2d7280", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x100", + "0x20", + "0x100", + "0x100" + ] + }, + { + "pc": 9990, + "op": "ADD", + "gas": 393043, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x41ee3e171aea2d7280", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x100", + "0x20", + "0x0" + ] + }, + { + "pc": 9991, + "op": "SWAP1", + "gas": 393040, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x41ee3e171aea2d7280", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x100", + "0x20" + ] + }, + { + "pc": 9992, + "op": "LOG3", + "gas": 393037, + "gasCost": 1756, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x305e", + "0x41ee3e171aea2d7280", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x20", + "0x100" + ] + }, + { + "pc": 9993, + "op": "PUSH1", + "gas": 391281, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 9995, + "op": "SWAP3", + "gas": 391278, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x1" + ] + }, + { + "pc": 9996, + "op": "POP", + "gas": 391275, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x0", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 9997, + "op": "SWAP1", + "gas": 391273, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 9998, + "op": "POP", + "gas": 391270, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 9999, + "op": "JUMPDEST", + "gas": 391268, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 10000, + "op": "SWAP2", + "gas": 391267, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 10001, + "op": "POP", + "gas": 391264, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x41ee3e171aea2d7280", + "0x1", + "0x305e" + ] + }, + { + "pc": 10002, + "op": "SWAP2", + "gas": 391262, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x41ee3e171aea2d7280", + "0x1" + ] + }, + { + "pc": 10003, + "op": "JUMP", + "gas": 391259, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0x1", + "0x41ee3e171aea2d7280", + "0xba4" + ] + }, + { + "pc": 2980, + "op": "JUMPDEST", + "gas": 391251, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 2981, + "op": "SWAP2", + "gas": 391250, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x0", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 2982, + "op": "POP", + "gas": 391247, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x41ee3e171aea2d7280", + "0x1", + "0x0" + ] + }, + { + "pc": 2983, + "op": "SWAP2", + "gas": 391245, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x0", + "0x41ee3e171aea2d7280", + "0x1" + ] + }, + { + "pc": 2984, + "op": "POP", + "gas": 391242, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 2985, + "op": "PUSH2", + "gas": 391240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 2988, + "op": "DUP6", + "gas": 391237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1" + ] + }, + { + "pc": 2989, + "op": "PUSH2", + "gas": 391234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 2992, + "op": "JUMP", + "gas": 391231, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x2714" + ] + }, + { + "pc": 10004, + "op": "JUMPDEST", + "gas": 391223, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 10005, + "op": "PUSH4", + "gas": 391222, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 10010, + "op": "DUP2", + "gas": 391219, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 10011, + "op": "AND", + "gas": 391216, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 10012, + "op": "PUSH1", + "gas": 391213, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x305e" + ] + }, + { + "pc": 10014, + "op": "SWAP1", + "gas": 391210, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x305e", + "0x0" + ] + }, + { + "pc": 10015, + "op": "DUP2", + "gas": 391207, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x0", + "0x305e" + ] + }, + { + "pc": 10016, + "op": "MSTORE", + "gas": 391204, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 10017, + "op": "PUSH1", + "gas": 391201, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x0" + ] + }, + { + "pc": 10019, + "op": "PUSH1", + "gas": 391198, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x0", + "0xa" + ] + }, + { + "pc": 10021, + "op": "MSTORE", + "gas": 391195, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 10022, + "op": "PUSH1", + "gas": 391192, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x0" + ] + }, + { + "pc": 10024, + "op": "SWAP1", + "gas": 391189, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 10025, + "op": "KECCAK256", + "gas": 391186, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 10026, + "op": "PUSH1", + "gas": 391144, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 10028, + "op": "ADD", + "gas": 391141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 10029, + "op": "SLOAD", + "gas": 391138, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 10030, + "op": "PUSH1", + "gas": 390338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 10032, + "op": "PUSH1", + "gas": 390335, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006", + "0x1" + ] + }, + { + "pc": 10034, + "op": "SHL", + "gas": 390332, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006", + "0x1", + "0x60" + ] + }, + { + "pc": 10035, + "op": "SWAP1", + "gas": 390329, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006", + "0x1000000000000000000000000" + ] + }, + { + "pc": 10036, + "op": "DIV", + "gas": 390326, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x1000000000000000000000000", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 10037, + "op": "PUSH1", + "gas": 390321, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10039, + "op": "PUSH1", + "gas": 390318, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1" + ] + }, + { + "pc": 10041, + "op": "PUSH1", + "gas": 390315, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1", + "0x1" + ] + }, + { + "pc": 10043, + "op": "SHL", + "gas": 390312, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10044, + "op": "SUB", + "gas": 390309, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10045, + "op": "AND", + "gas": 390306, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10046, + "op": "PUSH2", + "gas": 390303, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10049, + "op": "PUSH2", + "gas": 390300, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745" + ] + }, + { + "pc": 10052, + "op": "JUMP", + "gas": 390297, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x405b" + ] + }, + { + "pc": 16475, + "op": "JUMPDEST", + "gas": 390289, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745" + ] + }, + { + "pc": 16476, + "op": "PUSH1", + "gas": 390288, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745" + ] + }, + { + "pc": 16478, + "op": "DUP1", + "gas": 390285, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40" + ] + }, + { + "pc": 16479, + "op": "MLOAD", + "gas": 390282, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x40" + ] + }, + { + "pc": 16480, + "op": "DUP1", + "gas": 390279, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x100" + ] + }, + { + "pc": 16481, + "op": "DUP3", + "gas": 390276, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x100", + "0x100" + ] + }, + { + "pc": 16482, + "op": "ADD", + "gas": 390273, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x100", + "0x100", + "0x40" + ] + }, + { + "pc": 16483, + "op": "SWAP1", + "gas": 390270, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x100", + "0x140" + ] + }, + { + "pc": 16484, + "op": "SWAP2", + "gas": 390267, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x140", + "0x100" + ] + }, + { + "pc": 16485, + "op": "MSTORE", + "gas": 390264, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x100", + "0x140", + "0x40" + ] + }, + { + "pc": 16486, + "op": "PUSH1", + "gas": 390261, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x100" + ] + }, + { + "pc": 16488, + "op": "DUP1", + "gas": 390258, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x100", + "0x0" + ] + }, + { + "pc": 16489, + "op": "DUP3", + "gas": 390255, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x100", + "0x0", + "0x0" + ] + }, + { + "pc": 16490, + "op": "MSTORE", + "gas": 390252, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x100", + "0x0", + "0x0", + "0x100" + ] + }, + { + "pc": 16491, + "op": "PUSH1", + "gas": 390249, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x100", + "0x0" + ] + }, + { + "pc": 16493, + "op": "DUP3", + "gas": 390246, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x100", + "0x0", + "0x20" + ] + }, + { + "pc": 16494, + "op": "ADD", + "gas": 390243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x100", + "0x0", + "0x20", + "0x100" + ] + }, + { + "pc": 16495, + "op": "MSTORE", + "gas": 390240, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x100", + "0x0", + "0x120" + ] + }, + { + "pc": 16496, + "op": "SWAP1", + "gas": 390234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x100" + ] + }, + { + "pc": 16497, + "op": "JUMP", + "gas": 390231, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x100", + "0x2745" + ] + }, + { + "pc": 10053, + "op": "JUMPDEST", + "gas": 390223, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x100" + ] + }, + { + "pc": 10054, + "op": "POP", + "gas": 390222, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x100" + ] + }, + { + "pc": 10055, + "op": "PUSH1", + "gas": 390220, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10057, + "op": "DUP1", + "gas": 390217, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40" + ] + }, + { + "pc": 10058, + "op": "MLOAD", + "gas": 390214, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x40" + ] + }, + { + "pc": 10059, + "op": "DUP1", + "gas": 390211, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x140" + ] + }, + { + "pc": 10060, + "op": "DUP3", + "gas": 390208, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x140", + "0x140" + ] + }, + { + "pc": 10061, + "op": "ADD", + "gas": 390205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x140", + "0x140", + "0x40" + ] + }, + { + "pc": 10062, + "op": "SWAP1", + "gas": 390202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x140", + "0x180" + ] + }, + { + "pc": 10063, + "op": "SWAP2", + "gas": 390199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x180", + "0x140" + ] + }, + { + "pc": 10064, + "op": "MSTORE", + "gas": 390196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x180", + "0x40" + ] + }, + { + "pc": 10065, + "op": "PUSH1", + "gas": 390193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140" + ] + }, + { + "pc": 10067, + "op": "SLOAD", + "gas": 390190, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xd" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce4dac5154200000000000000000003c9543d5f39fe000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 10068, + "op": "PUSH1", + "gas": 389390, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000" + ] + }, + { + "pc": 10070, + "op": "PUSH1", + "gas": 389387, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x1" + ] + }, + { + "pc": 10072, + "op": "PUSH1", + "gas": 389384, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x1", + "0x1" + ] + }, + { + "pc": 10074, + "op": "SHL", + "gas": 389381, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10075, + "op": "SUB", + "gas": 389378, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10076, + "op": "DUP1", + "gas": 389375, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10077, + "op": "DUP3", + "gas": 389372, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10078, + "op": "AND", + "gas": 389369, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000" + ] + }, + { + "pc": 10079, + "op": "DUP1", + "gas": 389366, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10080, + "op": "DUP5", + "gas": 389363, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff", + "0x3c9543d5f39fe000", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10081, + "op": "MSTORE", + "gas": 389360, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff", + "0x3c9543d5f39fe000", + "0x3c9543d5f39fe000", + "0x140" + ] + }, + { + "pc": 10082, + "op": "PUSH1", + "gas": 389354, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10084, + "op": "PUSH1", + "gas": 389351, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff", + "0x3c9543d5f39fe000", + "0x1" + ] + }, + { + "pc": 10086, + "op": "SHL", + "gas": 389348, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff", + "0x3c9543d5f39fe000", + "0x1", + "0x80" + ] + }, + { + "pc": 10087, + "op": "SWAP1", + "gas": 389345, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff", + "0x3c9543d5f39fe000", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10088, + "op": "SWAP3", + "gas": 389342, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff", + "0x100000000000000000000000000000000", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10089, + "op": "DIV", + "gas": 389339, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff", + "0x100000000000000000000000000000000", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000" + ] + }, + { + "pc": 10090, + "op": "AND", + "gas": 389334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000" + ] + }, + { + "pc": 10091, + "op": "PUSH1", + "gas": 389331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c9543d5f39fe000", + "0x8ce4dac51542000" + ] + }, + { + "pc": 10093, + "op": "DUP4", + "gas": 389328, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c9543d5f39fe000", + "0x8ce4dac51542000", + "0x20" + ] + }, + { + "pc": 10094, + "op": "ADD", + "gas": 389325, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c9543d5f39fe000", + "0x8ce4dac51542000", + "0x20", + "0x140" + ] + }, + { + "pc": 10095, + "op": "MSTORE", + "gas": 389322, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c9543d5f39fe000", + "0x8ce4dac51542000", + "0x160" + ] + }, + { + "pc": 10096, + "op": "PUSH2", + "gas": 389316, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10099, + "op": "SWAP1", + "gas": 389313, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c9543d5f39fe000", + "0x277f" + ] + }, + { + "pc": 10100, + "op": "DUP4", + "gas": 389310, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 10101, + "op": "PUSH4", + "gas": 389307, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000" + ] + }, + { + "pc": 10106, + "op": "PUSH2", + "gas": 389304, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0xffffffff" + ] + }, + { + "pc": 10109, + "op": "AND", + "gas": 389301, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0xffffffff", + "0x2e8a" + ] + }, + { + "pc": 10110, + "op": "JUMP", + "gas": 389298, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x2e8a" + ] + }, + { + "pc": 11914, + "op": "JUMPDEST", + "gas": 389290, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000" + ] + }, + { + "pc": 11915, + "op": "PUSH1", + "gas": 389289, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000" + ] + }, + { + "pc": 11917, + "op": "DUP3", + "gas": 389286, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 11918, + "op": "PUSH1", + "gas": 389283, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 11920, + "op": "PUSH1", + "gas": 389280, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x3c9543d5f39fe000", + "0x1" + ] + }, + { + "pc": 11922, + "op": "PUSH1", + "gas": 389277, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x3c9543d5f39fe000", + "0x1", + "0x1" + ] + }, + { + "pc": 11924, + "op": "SHL", + "gas": 389274, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x3c9543d5f39fe000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 11925, + "op": "SUB", + "gas": 389271, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x3c9543d5f39fe000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 11926, + "op": "AND", + "gas": 389268, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x3c9543d5f39fe000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 11927, + "op": "DUP3", + "gas": 389265, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 11928, + "op": "PUSH1", + "gas": 389262, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x3c9543d5f39fe000", + "0x9184e72a000" + ] + }, + { + "pc": 11930, + "op": "PUSH1", + "gas": 389259, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x1" + ] + }, + { + "pc": 11932, + "op": "PUSH1", + "gas": 389256, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x1", + "0x1" + ] + }, + { + "pc": 11934, + "op": "SHL", + "gas": 389253, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 11935, + "op": "SUB", + "gas": 389250, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 11936, + "op": "AND", + "gas": 389247, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 11937, + "op": "GT", + "gas": 389244, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x3c9543d5f39fe000", + "0x9184e72a000" + ] + }, + { + "pc": 11938, + "op": "ISZERO", + "gas": 389241, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x0" + ] + }, + { + "pc": 11939, + "op": "PUSH2", + "gas": 389238, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x1" + ] + }, + { + "pc": 11942, + "op": "JUMPI", + "gas": 389235, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0", + "0x1", + "0x2ef3" + ] + }, + { + "pc": 12019, + "op": "JUMPDEST", + "gas": 389225, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 12020, + "op": "POP", + "gas": 389224, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 12021, + "op": "SWAP1", + "gas": 389222, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c9543d5f39fe000", + "0x9184e72a000" + ] + }, + { + "pc": 12022, + "op": "SUB", + "gas": 389219, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x9184e72a000", + "0x3c9543d5f39fe000" + ] + }, + { + "pc": 12023, + "op": "SWAP1", + "gas": 389216, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x277f", + "0x3c953abda52d4000" + ] + }, + { + "pc": 12024, + "op": "JUMP", + "gas": 389213, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c953abda52d4000", + "0x277f" + ] + }, + { + "pc": 10111, + "op": "JUMPDEST", + "gas": 389205, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10112, + "op": "PUSH1", + "gas": 389204, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10114, + "op": "PUSH1", + "gas": 389201, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c953abda52d4000", + "0x1" + ] + }, + { + "pc": 10116, + "op": "PUSH1", + "gas": 389198, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c953abda52d4000", + "0x1", + "0x1" + ] + }, + { + "pc": 10118, + "op": "SHL", + "gas": 389195, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c953abda52d4000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10119, + "op": "SUB", + "gas": 389192, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c953abda52d4000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10120, + "op": "SWAP1", + "gas": 389189, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c953abda52d4000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10121, + "op": "DUP2", + "gas": 389186, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10122, + "op": "AND", + "gas": 389183, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x3c953abda52d4000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10123, + "op": "DUP3", + "gas": 389180, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10124, + "op": "MSTORE", + "gas": 389177, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x3c953abda52d4000", + "0x140" + ] + }, + { + "pc": 10125, + "op": "PUSH1", + "gas": 389174, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10127, + "op": "DUP3", + "gas": 389171, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x20" + ] + }, + { + "pc": 10128, + "op": "ADD", + "gas": 389168, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x140" + ] + }, + { + "pc": 10129, + "op": "MLOAD", + "gas": 389165, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x160" + ] + }, + { + "pc": 10130, + "op": "PUSH2", + "gas": 389162, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000" + ] + }, + { + "pc": 10133, + "op": "SWAP2", + "gas": 389159, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000", + "0x27a2" + ] + }, + { + "pc": 10134, + "op": "AND", + "gas": 389156, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10135, + "op": "DUP4", + "gas": 389153, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000" + ] + }, + { + "pc": 10136, + "op": "PUSH4", + "gas": 389150, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000" + ] + }, + { + "pc": 10141, + "op": "PUSH2", + "gas": 389147, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0xffffffff" + ] + }, + { + "pc": 10144, + "op": "AND", + "gas": 389144, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0xffffffff", + "0x36ce" + ] + }, + { + "pc": 10145, + "op": "JUMP", + "gas": 389141, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x36ce" + ] + }, + { + "pc": 14030, + "op": "JUMPDEST", + "gas": 389133, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000" + ] + }, + { + "pc": 14031, + "op": "PUSH1", + "gas": 389132, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000" + ] + }, + { + "pc": 14033, + "op": "DUP3", + "gas": 389129, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 14034, + "op": "DUP3", + "gas": 389126, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000" + ] + }, + { + "pc": 14035, + "op": "ADD", + "gas": 389123, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000", + "0x9184e72a000" + ] + }, + { + "pc": 14036, + "op": "PUSH1", + "gas": 389120, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 14038, + "op": "PUSH1", + "gas": 389117, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0x1" + ] + }, + { + "pc": 14040, + "op": "PUSH1", + "gas": 389114, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0x1", + "0x1" + ] + }, + { + "pc": 14042, + "op": "SHL", + "gas": 389111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 14043, + "op": "SUB", + "gas": 389108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 14044, + "op": "DUP1", + "gas": 389105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14045, + "op": "DUP6", + "gas": 389102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14046, + "op": "AND", + "gas": 389099, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000" + ] + }, + { + "pc": 14047, + "op": "SWAP1", + "gas": 389096, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac51542000" + ] + }, + { + "pc": 14048, + "op": "DUP3", + "gas": 389093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0x8ce4dac51542000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14049, + "op": "AND", + "gas": 389090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0x8ce4dac51542000", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 14050, + "op": "LT", + "gas": 389087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0x8ce4dac51542000", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 14051, + "op": "ISZERO", + "gas": 389084, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0x0" + ] + }, + { + "pc": 14052, + "op": "PUSH2", + "gas": 389081, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0x1" + ] + }, + { + "pc": 14055, + "op": "JUMPI", + "gas": 389078, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0x1", + "0x2bf3" + ] + }, + { + "pc": 11251, + "op": "JUMPDEST", + "gas": 389068, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 11252, + "op": "SWAP4", + "gas": 389067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27a2", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 11253, + "op": "SWAP3", + "gas": 389064, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce56c49fc6c000", + "0x8ce4dac51542000", + "0x9184e72a000", + "0x0", + "0x27a2" + ] + }, + { + "pc": 11254, + "op": "POP", + "gas": 389061, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce56c49fc6c000", + "0x27a2", + "0x9184e72a000", + "0x0", + "0x8ce4dac51542000" + ] + }, + { + "pc": 11255, + "op": "POP", + "gas": 389059, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce56c49fc6c000", + "0x27a2", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 11256, + "op": "POP", + "gas": 389057, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce56c49fc6c000", + "0x27a2", + "0x9184e72a000" + ] + }, + { + "pc": 11257, + "op": "JUMP", + "gas": 389055, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce56c49fc6c000", + "0x27a2" + ] + }, + { + "pc": 10146, + "op": "JUMPDEST", + "gas": 389047, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 10147, + "op": "PUSH1", + "gas": 389046, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 10149, + "op": "PUSH1", + "gas": 389043, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce56c49fc6c000", + "0x1" + ] + }, + { + "pc": 10151, + "op": "PUSH1", + "gas": 389040, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce56c49fc6c000", + "0x1", + "0x1" + ] + }, + { + "pc": 10153, + "op": "SHL", + "gas": 389037, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce56c49fc6c000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10154, + "op": "SUB", + "gas": 389034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce56c49fc6c000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10155, + "op": "SWAP1", + "gas": 389031, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x8ce56c49fc6c000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10156, + "op": "DUP2", + "gas": 389028, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 10157, + "op": "AND", + "gas": 389025, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10158, + "op": "PUSH1", + "gas": 389022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 10160, + "op": "DUP1", + "gas": 389019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20" + ] + }, + { + "pc": 10161, + "op": "DUP5", + "gas": 389016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20", + "0x20" + ] + }, + { + "pc": 10162, + "op": "ADD", + "gas": 389013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20", + "0x20", + "0x140" + ] + }, + { + "pc": 10163, + "op": "DUP3", + "gas": 389010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20", + "0x160" + ] + }, + { + "pc": 10164, + "op": "SWAP1", + "gas": 389007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20", + "0x160", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 10165, + "op": "MSTORE", + "gas": 389004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20", + "0x8ce56c49fc6c000", + "0x160" + ] + }, + { + "pc": 10166, + "op": "DUP4", + "gas": 389001, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20" + ] + }, + { + "pc": 10167, + "op": "MLOAD", + "gas": 388998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20", + "0x140" + ] + }, + { + "pc": 10168, + "op": "PUSH1", + "gas": 388995, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10170, + "op": "DUP1", + "gas": 388992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20", + "0x3c953abda52d4000", + "0xd" + ] + }, + { + "pc": 10171, + "op": "SLOAD", + "gas": 388989, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20", + "0x3c953abda52d4000", + "0xd", + "0xd" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce4dac5154200000000000000000003c9543d5f39fe000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 10172, + "op": "PUSH1", + "gas": 388189, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20", + "0x3c953abda52d4000", + "0xd", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000" + ] + }, + { + "pc": 10174, + "op": "PUSH1", + "gas": 388186, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20", + "0x3c953abda52d4000", + "0xd", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x1" + ] + }, + { + "pc": 10176, + "op": "SHL", + "gas": 388183, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20", + "0x3c953abda52d4000", + "0xd", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x1", + "0x80" + ] + }, + { + "pc": 10177, + "op": "SWAP1", + "gas": 388180, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20", + "0x3c953abda52d4000", + "0xd", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10178, + "op": "SWAP5", + "gas": 388177, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x20", + "0x3c953abda52d4000", + "0xd", + "0x100000000000000000000000000000000", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000" + ] + }, + { + "pc": 10179, + "op": "MUL", + "gas": 388174, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x20", + "0x3c953abda52d4000", + "0xd", + "0x100000000000000000000000000000000", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 10180, + "op": "SWAP2", + "gas": 388169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x20", + "0x3c953abda52d4000", + "0xd", + "0x8ce56c49fc6c00000000000000000000000000000000000" + ] + }, + { + "pc": 10181, + "op": "DUP6", + "gas": 388166, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0xd", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10182, + "op": "AND", + "gas": 388163, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0xd", + "0x3c953abda52d4000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10183, + "op": "PUSH1", + "gas": 388160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0xd", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10185, + "op": "PUSH1", + "gas": 388157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0xd", + "0x3c953abda52d4000", + "0x1" + ] + }, + { + "pc": 10187, + "op": "PUSH1", + "gas": 388154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0xd", + "0x3c953abda52d4000", + "0x1", + "0x1" + ] + }, + { + "pc": 10189, + "op": "SHL", + "gas": 388151, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0xd", + "0x3c953abda52d4000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10190, + "op": "SUB", + "gas": 388148, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0xd", + "0x3c953abda52d4000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10191, + "op": "NOT", + "gas": 388145, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0xd", + "0x3c953abda52d4000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10192, + "op": "SWAP1", + "gas": 388142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0xd", + "0x3c953abda52d4000", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" + ] + }, + { + "pc": 10193, + "op": "SWAP5", + "gas": 388139, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0xd", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10194, + "op": "AND", + "gas": 388136, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x3c953abda52d4000", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0xd", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", + "0x8ce4dac5154200000000000000000003c9543d5f39fe000" + ] + }, + { + "pc": 10195, + "op": "SWAP4", + "gas": 388133, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x3c953abda52d4000", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0xd", + "0x8ce4dac5154200000000000000000000000000000000000" + ] + }, + { + "pc": 10196, + "op": "SWAP1", + "gas": 388130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000000000000000000000", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0xd", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10197, + "op": "SWAP4", + "gas": 388127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x8ce4dac5154200000000000000000000000000000000000", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0x3c953abda52d4000", + "0xd" + ] + }, + { + "pc": 10198, + "op": "OR", + "gas": 388124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0x3c953abda52d4000", + "0x8ce4dac5154200000000000000000000000000000000000" + ] + }, + { + "pc": 10199, + "op": "DUP5", + "gas": 388121, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0x8ce4dac5154200000000000000000003c953abda52d4000" + ] + }, + { + "pc": 10200, + "op": "AND", + "gas": 388118, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0x8ce4dac5154200000000000000000003c953abda52d4000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10201, + "op": "OR", + "gas": 388115, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10202, + "op": "SWAP1", + "gas": 388112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000" + ] + }, + { + "pc": 10203, + "op": "SWAP2", + "gas": 388109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x20" + ] + }, + { + "pc": 10204, + "op": "SSTORE", + "gas": 388106, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0xd" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce56c49fc6c00000000000000000003c953abda52d4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 10205, + "op": "CALLER", + "gas": 383106, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x20" + ] + }, + { + "pc": 10206, + "op": "PUSH1", + "gas": 383104, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 10208, + "op": "SWAP1", + "gas": 383101, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x0" + ] + }, + { + "pc": 10209, + "op": "DUP2", + "gas": 383098, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 10210, + "op": "MSTORE", + "gas": 383095, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x0" + ] + }, + { + "pc": 10211, + "op": "PUSH1", + "gas": 383092, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0" + ] + }, + { + "pc": 10213, + "op": "SWAP1", + "gas": 383089, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0", + "0x8" + ] + }, + { + "pc": 10214, + "op": "SWAP2", + "gas": 383086, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x8", + "0x0" + ] + }, + { + "pc": 10215, + "op": "MSTORE", + "gas": 383083, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 10216, + "op": "PUSH1", + "gas": 383080, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 10218, + "op": "SWAP1", + "gas": 383077, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 10219, + "op": "KECCAK256", + "gas": 383074, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x40", + "0x0" + ] + }, + { + "pc": 10220, + "op": "SLOAD", + "gas": 383032, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce56c49fc6c00000000000000000003c953abda52d4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 10221, + "op": "PUSH2", + "gas": 382232, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x2ff70000305effffffff000006f000000000000000000178720f00668000" + ] + }, + { + "pc": 10224, + "op": "SWAP2", + "gas": 382229, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x2ff70000305effffffff000006f000000000000000000178720f00668000", + "0x27fd" + ] + }, + { + "pc": 10225, + "op": "AND", + "gas": 382226, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x2ff70000305effffffff000006f000000000000000000178720f00668000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10226, + "op": "DUP4", + "gas": 382223, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000" + ] + }, + { + "pc": 10227, + "op": "PUSH4", + "gas": 382220, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000" + ] + }, + { + "pc": 10232, + "op": "PUSH2", + "gas": 382217, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0xffffffff" + ] + }, + { + "pc": 10235, + "op": "AND", + "gas": 382214, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0xffffffff", + "0x36ce" + ] + }, + { + "pc": 10236, + "op": "JUMP", + "gas": 382211, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x36ce" + ] + }, + { + "pc": 14030, + "op": "JUMPDEST", + "gas": 382203, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000" + ] + }, + { + "pc": 14031, + "op": "PUSH1", + "gas": 382202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000" + ] + }, + { + "pc": 14033, + "op": "DUP3", + "gas": 382199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 14034, + "op": "DUP3", + "gas": 382196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x178720f00668000" + ] + }, + { + "pc": 14035, + "op": "ADD", + "gas": 382193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x178720f00668000", + "0x9184e72a000" + ] + }, + { + "pc": 14036, + "op": "PUSH1", + "gas": 382190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000" + ] + }, + { + "pc": 14038, + "op": "PUSH1", + "gas": 382187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000", + "0x1" + ] + }, + { + "pc": 14040, + "op": "PUSH1", + "gas": 382184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000", + "0x1", + "0x1" + ] + }, + { + "pc": 14042, + "op": "SHL", + "gas": 382181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 14043, + "op": "SUB", + "gas": 382178, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 14044, + "op": "DUP1", + "gas": 382175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14045, + "op": "DUP6", + "gas": 382172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14046, + "op": "AND", + "gas": 382169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff", + "0x178720f00668000" + ] + }, + { + "pc": 14047, + "op": "SWAP1", + "gas": 382166, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000", + "0xffffffffffffffffffffffffffffffff", + "0x178720f00668000" + ] + }, + { + "pc": 14048, + "op": "DUP3", + "gas": 382163, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000", + "0x178720f00668000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14049, + "op": "AND", + "gas": 382160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000", + "0x178720f00668000", + "0xffffffffffffffffffffffffffffffff", + "0x1787b274ed92000" + ] + }, + { + "pc": 14050, + "op": "LT", + "gas": 382157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000", + "0x178720f00668000", + "0x1787b274ed92000" + ] + }, + { + "pc": 14051, + "op": "ISZERO", + "gas": 382154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000", + "0x0" + ] + }, + { + "pc": 14052, + "op": "PUSH2", + "gas": 382151, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000", + "0x1" + ] + }, + { + "pc": 14055, + "op": "JUMPI", + "gas": 382148, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000", + "0x1", + "0x2bf3" + ] + }, + { + "pc": 11251, + "op": "JUMPDEST", + "gas": 382138, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000" + ] + }, + { + "pc": 11252, + "op": "SWAP4", + "gas": 382137, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x27fd", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x1787b274ed92000" + ] + }, + { + "pc": 11253, + "op": "SWAP3", + "gas": 382134, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x178720f00668000", + "0x9184e72a000", + "0x0", + "0x27fd" + ] + }, + { + "pc": 11254, + "op": "POP", + "gas": 382131, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x27fd", + "0x9184e72a000", + "0x0", + "0x178720f00668000" + ] + }, + { + "pc": 11255, + "op": "POP", + "gas": 382129, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x27fd", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 11256, + "op": "POP", + "gas": 382127, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x27fd", + "0x9184e72a000" + ] + }, + { + "pc": 11257, + "op": "JUMP", + "gas": 382125, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x27fd" + ] + }, + { + "pc": 10237, + "op": "JUMPDEST", + "gas": 382117, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000" + ] + }, + { + "pc": 10238, + "op": "CALLER", + "gas": 382116, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000" + ] + }, + { + "pc": 10239, + "op": "PUSH1", + "gas": 382114, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 10241, + "op": "SWAP1", + "gas": 382111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x0" + ] + }, + { + "pc": 10242, + "op": "DUP2", + "gas": 382108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538" + ] + }, + { + "pc": 10243, + "op": "MSTORE", + "gas": 382105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x155e87c1ccc244d6b517ff14e94f4612982e9538", + "0x0" + ] + }, + { + "pc": 10244, + "op": "PUSH1", + "gas": 382102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0" + ] + }, + { + "pc": 10246, + "op": "PUSH1", + "gas": 382099, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x8" + ] + }, + { + "pc": 10248, + "op": "MSTORE", + "gas": 382096, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 10249, + "op": "PUSH1", + "gas": 382093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0" + ] + }, + { + "pc": 10251, + "op": "DUP1", + "gas": 382090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40" + ] + }, + { + "pc": 10252, + "op": "DUP3", + "gas": 382087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x40" + ] + }, + { + "pc": 10253, + "op": "KECCAK256", + "gas": 382084, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x40", + "0x0" + ] + }, + { + "pc": 10254, + "op": "DUP1", + "gas": 382042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503" + ] + }, + { + "pc": 10255, + "op": "SLOAD", + "gas": 382039, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce56c49fc6c00000000000000000003c953abda52d4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f000000000000000000178720f00668000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 10256, + "op": "PUSH1", + "gas": 381239, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000178720f00668000" + ] + }, + { + "pc": 10258, + "op": "PUSH1", + "gas": 381236, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000178720f00668000", + "0x1" + ] + }, + { + "pc": 10260, + "op": "PUSH1", + "gas": 381233, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000178720f00668000", + "0x1", + "0x1" + ] + }, + { + "pc": 10262, + "op": "SHL", + "gas": 381230, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000178720f00668000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10263, + "op": "SUB", + "gas": 381227, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000178720f00668000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10264, + "op": "NOT", + "gas": 381224, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000178720f00668000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10265, + "op": "AND", + "gas": 381221, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000178720f00668000", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" + ] + }, + { + "pc": 10266, + "op": "PUSH1", + "gas": 381218, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000000000000000000" + ] + }, + { + "pc": 10268, + "op": "PUSH1", + "gas": 381215, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000000000000000000", + "0x1" + ] + }, + { + "pc": 10270, + "op": "PUSH1", + "gas": 381212, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000000000000000000", + "0x1", + "0x1" + ] + }, + { + "pc": 10272, + "op": "SHL", + "gas": 381209, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000000000000000000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10273, + "op": "SUB", + "gas": 381206, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000000000000000000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10274, + "op": "SWAP5", + "gas": 381203, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x1787b274ed92000", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10275, + "op": "DUP6", + "gas": 381200, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000000000000000000", + "0x1787b274ed92000" + ] + }, + { + "pc": 10276, + "op": "AND", + "gas": 381197, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000000000000000000", + "0x1787b274ed92000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10277, + "op": "OR", + "gas": 381194, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f000000000000000000000000000000000", + "0x1787b274ed92000" + ] + }, + { + "pc": 10278, + "op": "SWAP1", + "gas": 381191, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503", + "0x2ff70000305effffffff000006f0000000000000000001787b274ed92000" + ] + }, + { + "pc": 10279, + "op": "SSTORE", + "gas": 381188, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x2ff70000305effffffff000006f0000000000000000001787b274ed92000", + "0x89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce56c49fc6c00000000000000000003c953abda52d4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f0000000000000000001787b274ed92000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 10280, + "op": "DUP4", + "gas": 380388, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 10281, + "op": "MLOAD", + "gas": 380385, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x140" + ] + }, + { + "pc": 10282, + "op": "SWAP1", + "gas": 380382, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10283, + "op": "MLOAD", + "gas": 380379, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x3c953abda52d4000", + "0x40" + ] + }, + { + "pc": 10284, + "op": "SWAP3", + "gas": 380376, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x3c953abda52d4000", + "0x180" + ] + }, + { + "pc": 10285, + "op": "AND", + "gas": 380373, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x180", + "0x0", + "0x3c953abda52d4000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10286, + "op": "SWAP2", + "gas": 380370, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x180", + "0x0", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10287, + "op": "PUSH32", + "gas": 380367, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c953abda52d4000", + "0x0", + "0x180" + ] + }, + { + "pc": 10320, + "op": "SWAP2", + "gas": 380364, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c953abda52d4000", + "0x0", + "0x180", + "0xfe25c73e3b9089fac37d55c4c7efcba6f04af04cebd2fc4d6d7dbb07e1e5234f" + ] + }, + { + "pc": 10321, + "op": "SWAP1", + "gas": 380361, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c953abda52d4000", + "0xfe25c73e3b9089fac37d55c4c7efcba6f04af04cebd2fc4d6d7dbb07e1e5234f", + "0x180", + "0x0" + ] + }, + { + "pc": 10322, + "op": "LOG2", + "gas": 380358, + "gasCost": 1125, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x3c953abda52d4000", + "0xfe25c73e3b9089fac37d55c4c7efcba6f04af04cebd2fc4d6d7dbb07e1e5234f", + "0x0", + "0x180" + ] + }, + { + "pc": 10323, + "op": "POP", + "gas": 379233, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140" + ] + }, + { + "pc": 10324, + "op": "POP", + "gas": 379231, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10325, + "op": "POP", + "gas": 379229, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 10326, + "op": "JUMP", + "gas": 379227, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbb1" + ] + }, + { + "pc": 2993, + "op": "JUMPDEST", + "gas": 379219, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 2994, + "op": "PUSH2", + "gas": 379218, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 2997, + "op": "DUP6", + "gas": 379215, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba" + ] + }, + { + "pc": 2998, + "op": "PUSH2", + "gas": 379212, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e" + ] + }, + { + "pc": 3001, + "op": "JUMP", + "gas": 379209, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0x2857" + ] + }, + { + "pc": 10327, + "op": "JUMPDEST", + "gas": 379201, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e" + ] + }, + { + "pc": 10328, + "op": "PUSH4", + "gas": 379200, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e" + ] + }, + { + "pc": 10333, + "op": "DUP1", + "gas": 379197, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 10334, + "op": "DUP3", + "gas": 379194, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 10335, + "op": "AND", + "gas": 379191, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 10336, + "op": "PUSH1", + "gas": 379188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 10338, + "op": "SWAP1", + "gas": 379185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x305e", + "0x0" + ] + }, + { + "pc": 10339, + "op": "DUP2", + "gas": 379182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0x305e" + ] + }, + { + "pc": 10340, + "op": "MSTORE", + "gas": 379179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 10341, + "op": "PUSH1", + "gas": 379176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 10343, + "op": "PUSH1", + "gas": 379173, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0xa" + ] + }, + { + "pc": 10345, + "op": "MSTORE", + "gas": 379170, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 10346, + "op": "PUSH1", + "gas": 379167, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 10348, + "op": "SWAP1", + "gas": 379164, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 10349, + "op": "KECCAK256", + "gas": 379161, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x40", + "0x0" + ] + }, + { + "pc": 10350, + "op": "PUSH1", + "gas": 379119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 10352, + "op": "DUP2", + "gas": 379116, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 10353, + "op": "ADD", + "gas": 379113, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 10354, + "op": "SLOAD", + "gas": 379110, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce56c49fc6c00000000000000000003c953abda52d4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f0000000000000000001787b274ed92000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 10355, + "op": "SWAP1", + "gas": 378310, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 10356, + "op": "SLOAD", + "gas": 378307, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x9184e72a0000000003c0000000300000006", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce56c49fc6c00000000000000000003c953abda52d4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f0000000000000000001787b274ed92000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 10357, + "op": "SWAP2", + "gas": 377507, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0xffffffff", + "0x9184e72a0000000003c0000000300000006", + "0x3" + ] + }, + { + "pc": 10358, + "op": "AND", + "gas": 377504, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0x3", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff" + ] + }, + { + "pc": 10359, + "op": "GT", + "gas": 377501, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0x3", + "0x6" + ] + }, + { + "pc": 10360, + "op": "ISZERO", + "gas": 377498, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0x1" + ] + }, + { + "pc": 10361, + "op": "PUSH2", + "gas": 377495, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0x0" + ] + }, + { + "pc": 10364, + "op": "JUMPI", + "gas": 377492, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0x0", + "0x2881" + ] + }, + { + "pc": 10365, + "op": "PUSH2", + "gas": 377482, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e" + ] + }, + { + "pc": 10368, + "op": "JUMP", + "gas": 377479, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e", + "0x24e0" + ] + }, + { + "pc": 9440, + "op": "JUMPDEST", + "gas": 377471, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e" + ] + }, + { + "pc": 9441, + "op": "POP", + "gas": 377470, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba", + "0x305e" + ] + }, + { + "pc": 9442, + "op": "JUMP", + "gas": 377468, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbba" + ] + }, + { + "pc": 3002, + "op": "JUMPDEST", + "gas": 377460, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 3003, + "op": "DUP2", + "gas": 377459, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 3004, + "op": "ISZERO", + "gas": 377456, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0x1" + ] + }, + { + "pc": 3005, + "op": "PUSH2", + "gas": 377453, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 3008, + "op": "JUMPI", + "gas": 377450, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0x0", + "0xbca" + ] + }, + { + "pc": 3009, + "op": "PUSH2", + "gas": 377440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 3012, + "op": "DUP6", + "gas": 377437, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca" + ] + }, + { + "pc": 3013, + "op": "DUP3", + "gas": 377434, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e" + ] + }, + { + "pc": 3014, + "op": "PUSH2", + "gas": 377431, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 3017, + "op": "JUMP", + "gas": 377428, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280", + "0x28b6" + ] + }, + { + "pc": 10422, + "op": "JUMPDEST", + "gas": 377420, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 10423, + "op": "PUSH1", + "gas": 377419, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 10425, + "op": "SLOAD", + "gas": 377416, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280", + "0x3" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce56c49fc6c00000000000000000003c953abda52d4000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8503": "00002ff70000305effffffff000006f0000000000000000001787b274ed92000", + "89e5f36ed8b2dac1d168e6197d79b16cc70d1a2a8306cbb16dec7dffb45e8504": "000000000000000000000000000000000000000000000041edd68838a5610000", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000" + } + }, + { + "pc": 10426, + "op": "PUSH1", + "gas": 376616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 10428, + "op": "PUSH1", + "gas": 376613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280", + "0x0", + "0x1" + ] + }, + { + "pc": 10430, + "op": "PUSH1", + "gas": 376610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 10432, + "op": "SHL", + "gas": 376607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280", + "0x0", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 10433, + "op": "SUB", + "gas": 376604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280", + "0x0", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 10434, + "op": "AND", + "gas": 376601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10435, + "op": "DUP1", + "gas": 376598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 10436, + "op": "PUSH2", + "gas": 376595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280", + "0x0", + "0x0" + ] + }, + { + "pc": 10439, + "op": "JUMPI", + "gas": 376592, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280", + "0x0", + "0x0", + "0x28cd" + ] + }, + { + "pc": 10440, + "op": "POP", + "gas": 376582, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 10441, + "op": "PUSH2", + "gas": 376580, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 10444, + "op": "JUMP", + "gas": 376577, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280", + "0x9fb" + ] + }, + { + "pc": 2555, + "op": "JUMPDEST", + "gas": 376569, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 2556, + "op": "POP", + "gas": 376568, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 2557, + "op": "POP", + "gas": 376566, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca", + "0x305e" + ] + }, + { + "pc": 2558, + "op": "JUMP", + "gas": 376564, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280", + "0xbca" + ] + }, + { + "pc": 3018, + "op": "JUMPDEST", + "gas": 376556, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 3019, + "op": "POP", + "gas": 376555, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 3020, + "op": "POP", + "gas": 376553, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60", + "0x1" + ] + }, + { + "pc": 3021, + "op": "POP", + "gas": 376551, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000", + "0x60" + ] + }, + { + "pc": 3022, + "op": "POP", + "gas": 376549, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41edd68838a5610000" + ] + }, + { + "pc": 3023, + "op": "POP", + "gas": 376547, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e" + ] + }, + { + "pc": 3024, + "op": "JUMP", + "gas": 376545, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e" + ] + }, + { + "pc": 638, + "op": "JUMPDEST", + "gas": 376537, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 639, + "op": "STOP", + "gas": 376536, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + } + ] + } + }, + { + "result": { + "gas": 101657, + "failed": false, + "returnValue": "", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 477832, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 477829, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 477826, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 477814, + "gasCost": 2, + "depth": 1, + "stack": [] + }, + { + "pc": 6, + "op": "DUP1", + "gas": 477812, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 477809, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 477806, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 477803, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 477793, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 477792, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 477790, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 477787, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 477785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x44" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 477782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 477779, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x253" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 477769, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 477766, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 477763, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 477760, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed00000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 477757, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 477754, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 38, + "op": "GT", + "gas": 477751, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x70dea79a" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 477748, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 477745, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x146" + ] + }, + { + "pc": 326, + "op": "JUMPDEST", + "gas": 477735, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 327, + "op": "DUP1", + "gas": 477734, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 328, + "op": "PUSH4", + "gas": 477731, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 333, + "op": "GT", + "gas": 477728, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x40884c52" + ] + }, + { + "pc": 334, + "op": "PUSH2", + "gas": 477725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 337, + "op": "JUMPI", + "gas": 477722, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x1d4" + ] + }, + { + "pc": 468, + "op": "JUMPDEST", + "gas": 477712, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 469, + "op": "DUP1", + "gas": 477711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 470, + "op": "PUSH4", + "gas": 477708, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 475, + "op": "GT", + "gas": 477705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x357ebb02" + ] + }, + { + "pc": 476, + "op": "PUSH2", + "gas": 477702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 479, + "op": "JUMPI", + "gas": 477699, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x21b" + ] + }, + { + "pc": 539, + "op": "JUMPDEST", + "gas": 477689, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 540, + "op": "DUP1", + "gas": 477688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 541, + "op": "PUSH4", + "gas": 477685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 546, + "op": "EQ", + "gas": 477682, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x1327d3d8" + ] + }, + { + "pc": 547, + "op": "PUSH2", + "gas": 477679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x0" + ] + }, + { + "pc": 550, + "op": "JUMPI", + "gas": 477676, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x0", + "0x258" + ] + }, + { + "pc": 551, + "op": "DUP1", + "gas": 477666, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 552, + "op": "PUSH4", + "gas": 477663, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 557, + "op": "EQ", + "gas": 477660, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 558, + "op": "PUSH2", + "gas": 477657, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 561, + "op": "JUMPI", + "gas": 477654, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x280" + ] + }, + { + "pc": 640, + "op": "JUMPDEST", + "gas": 477644, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 641, + "op": "PUSH2", + "gas": 477643, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 644, + "op": "PUSH1", + "gas": 477640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e" + ] + }, + { + "pc": 646, + "op": "DUP1", + "gas": 477637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4" + ] + }, + { + "pc": 647, + "op": "CALLDATASIZE", + "gas": 477634, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x4" + ] + }, + { + "pc": 648, + "op": "SUB", + "gas": 477632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x4", + "0x44" + ] + }, + { + "pc": 649, + "op": "PUSH1", + "gas": 477629, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40" + ] + }, + { + "pc": 651, + "op": "DUP2", + "gas": 477626, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x40" + ] + }, + { + "pc": 652, + "op": "LT", + "gas": 477623, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x40", + "0x40" + ] + }, + { + "pc": 653, + "op": "ISZERO", + "gas": 477620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x0" + ] + }, + { + "pc": 654, + "op": "PUSH2", + "gas": 477617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x1" + ] + }, + { + "pc": 657, + "op": "JUMPI", + "gas": 477614, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x1", + "0x296" + ] + }, + { + "pc": 662, + "op": "JUMPDEST", + "gas": 477604, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40" + ] + }, + { + "pc": 663, + "op": "POP", + "gas": 477603, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40" + ] + }, + { + "pc": 664, + "op": "DUP1", + "gas": 477601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4" + ] + }, + { + "pc": 665, + "op": "CALLDATALOAD", + "gas": 477598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x4" + ] + }, + { + "pc": 666, + "op": "SWAP1", + "gas": 477595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x305e" + ] + }, + { + "pc": 667, + "op": "PUSH1", + "gas": 477592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x4" + ] + }, + { + "pc": 669, + "op": "ADD", + "gas": 477589, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x4", + "0x20" + ] + }, + { + "pc": 670, + "op": "CALLDATALOAD", + "gas": 477586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x24" + ] + }, + { + "pc": 671, + "op": "PUSH2", + "gas": 477583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000" + ] + }, + { + "pc": 674, + "op": "JUMP", + "gas": 477580, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x9ff" + ] + }, + { + "pc": 2559, + "op": "JUMPDEST", + "gas": 477572, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000" + ] + }, + { + "pc": 2560, + "op": "PUSH1", + "gas": 477571, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000" + ] + }, + { + "pc": 2562, + "op": "PUSH2", + "gas": 477568, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60" + ] + }, + { + "pc": 2565, + "op": "CALLER", + "gas": 477565, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b" + ] + }, + { + "pc": 2566, + "op": "DUP5", + "gas": 477563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 2567, + "op": "PUSH2", + "gas": 477560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e" + ] + }, + { + "pc": 2570, + "op": "JUMP", + "gas": 477557, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x21ac" + ] + }, + { + "pc": 8620, + "op": "JUMPDEST", + "gas": 477549, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e" + ] + }, + { + "pc": 8621, + "op": "PUSH1", + "gas": 477548, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e" + ] + }, + { + "pc": 8623, + "op": "PUSH1", + "gas": 477545, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x1" + ] + }, + { + "pc": 8625, + "op": "PUSH1", + "gas": 477542, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 8627, + "op": "SHL", + "gas": 477539, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 8628, + "op": "SUB", + "gas": 477536, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8629, + "op": "DUP3", + "gas": 477533, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 8630, + "op": "AND", + "gas": 477530, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 8631, + "op": "PUSH1", + "gas": 477527, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 8633, + "op": "SWAP1", + "gas": 477524, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x0" + ] + }, + { + "pc": 8634, + "op": "DUP2", + "gas": 477521, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 8635, + "op": "MSTORE", + "gas": 477518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x0" + ] + }, + { + "pc": 8636, + "op": "PUSH1", + "gas": 477515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x0" + ] + }, + { + "pc": 8638, + "op": "PUSH1", + "gas": 477512, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x0", + "0x8" + ] + }, + { + "pc": 8640, + "op": "MSTORE", + "gas": 477509, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 8641, + "op": "PUSH1", + "gas": 477506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x0" + ] + }, + { + "pc": 8643, + "op": "SWAP1", + "gas": 477503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 8644, + "op": "KECCAK256", + "gas": 477500, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 8645, + "op": "SLOAD", + "gas": 477458, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6" + ], + "storage": { + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305dffffffff000006f00000000000000000017856c6150ea000" + } + }, + { + "pc": 8646, + "op": "PUSH1", + "gas": 476658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000" + ] + }, + { + "pc": 8648, + "op": "SLOAD", + "gas": 476655, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0x7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305dffffffff000006f00000000000000000017856c6150ea000" + } + }, + { + "pc": 8649, + "op": "PUSH1", + "gas": 475855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0x305e0000305e" + ] + }, + { + "pc": 8651, + "op": "SWAP2", + "gas": 475852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0x305e0000305e", + "0x60" + ] + }, + { + "pc": 8652, + "op": "PUSH4", + "gas": 475849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x305e0000305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000" + ] + }, + { + "pc": 8657, + "op": "PUSH1", + "gas": 475846, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x305e0000305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff" + ] + }, + { + "pc": 8659, + "op": "PUSH1", + "gas": 475843, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x305e0000305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0x1" + ] + }, + { + "pc": 8661, + "op": "SHL", + "gas": 475840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x305e0000305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0x1", + "0x80" + ] + }, + { + "pc": 8662, + "op": "SWAP1", + "gas": 475837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x305e0000305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 8663, + "op": "SWAP2", + "gas": 475834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x305e0000305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0x100000000000000000000000000000000", + "0xffffffff" + ] + }, + { + "pc": 8664, + "op": "DIV", + "gas": 475831, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x305e0000305e", + "0xffffffff", + "0x100000000000000000000000000000000", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000" + ] + }, + { + "pc": 8665, + "op": "DUP2", + "gas": 475826, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x305e0000305e", + "0xffffffff", + "0x305b0000305dffffffff000006f0" + ] + }, + { + "pc": 8666, + "op": "AND", + "gas": 475823, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x305e0000305e", + "0xffffffff", + "0x305b0000305dffffffff000006f0", + "0xffffffff" + ] + }, + { + "pc": 8667, + "op": "SWAP2", + "gas": 475820, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x305e0000305e", + "0xffffffff", + "0x6f0" + ] + }, + { + "pc": 8668, + "op": "AND", + "gas": 475817, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0xffffffff", + "0x305e0000305e" + ] + }, + { + "pc": 8669, + "op": "DUP2", + "gas": 475814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8670, + "op": "PUSH2", + "gas": 475811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x6f0" + ] + }, + { + "pc": 8673, + "op": "JUMPI", + "gas": 475808, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x6f0", + "0x2215" + ] + }, + { + "pc": 8725, + "op": "JUMPDEST", + "gas": 475798, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8726, + "op": "DUP4", + "gas": 475797, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8727, + "op": "PUSH4", + "gas": 475794, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 8732, + "op": "AND", + "gas": 475791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 8733, + "op": "DUP3", + "gas": 475788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 8734, + "op": "PUSH4", + "gas": 475785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x6f0" + ] + }, + { + "pc": 8739, + "op": "AND", + "gas": 475782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x6f0", + "0xffffffff" + ] + }, + { + "pc": 8740, + "op": "GT", + "gas": 475779, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x6f0" + ] + }, + { + "pc": 8741, + "op": "ISZERO", + "gas": 475776, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8742, + "op": "PUSH2", + "gas": 475773, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8745, + "op": "JUMPI", + "gas": 475770, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2261" + ] + }, + { + "pc": 8801, + "op": "JUMPDEST", + "gas": 475760, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8802, + "op": "PUSH1", + "gas": 475759, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8804, + "op": "PUSH1", + "gas": 475756, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8806, + "op": "PUSH1", + "gas": 475753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 8808, + "op": "SHL", + "gas": 475750, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 8809, + "op": "SUB", + "gas": 475747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8810, + "op": "DUP6", + "gas": 475744, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 8811, + "op": "AND", + "gas": 475741, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 8812, + "op": "PUSH1", + "gas": 475738, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 8814, + "op": "SWAP1", + "gas": 475735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x0" + ] + }, + { + "pc": 8815, + "op": "DUP2", + "gas": 475732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 8816, + "op": "MSTORE", + "gas": 475729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x0" + ] + }, + { + "pc": 8817, + "op": "PUSH1", + "gas": 475726, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8819, + "op": "PUSH1", + "gas": 475723, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x8" + ] + }, + { + "pc": 8821, + "op": "MSTORE", + "gas": 475720, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 8822, + "op": "PUSH1", + "gas": 475717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8824, + "op": "SWAP1", + "gas": 475714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 8825, + "op": "KECCAK256", + "gas": 475711, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 8826, + "op": "SLOAD", + "gas": 475669, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305dffffffff000006f00000000000000000017856c6150ea000" + } + }, + { + "pc": 8827, + "op": "PUSH4", + "gas": 474869, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000" + ] + }, + { + "pc": 8832, + "op": "DUP1", + "gas": 474866, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff" + ] + }, + { + "pc": 8833, + "op": "DUP7", + "gas": 474863, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 8834, + "op": "AND", + "gas": 474860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8835, + "op": "PUSH1", + "gas": 474857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8837, + "op": "PUSH1", + "gas": 474854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0x305e", + "0x1" + ] + }, + { + "pc": 8839, + "op": "SHL", + "gas": 474851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0x305e", + "0x1", + "0xa0" + ] + }, + { + "pc": 8840, + "op": "SWAP1", + "gas": 474848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0x305e", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8841, + "op": "SWAP3", + "gas": 474845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0x10000000000000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 8842, + "op": "DIV", + "gas": 474842, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff", + "0x10000000000000000000000000000000000000000", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000" + ] + }, + { + "pc": 8843, + "op": "AND", + "gas": 474837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff", + "0x305b0000305dffffffff" + ] + }, + { + "pc": 8844, + "op": "LT", + "gas": 474834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 8845, + "op": "ISZERO", + "gas": 474831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8846, + "op": "PUSH2", + "gas": 474828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8849, + "op": "JUMPI", + "gas": 474825, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x22d0" + ] + }, + { + "pc": 8912, + "op": "JUMPDEST", + "gas": 474815, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8913, + "op": "PUSH1", + "gas": 474814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 8915, + "op": "PUSH1", + "gas": 474811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8917, + "op": "PUSH1", + "gas": 474808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 8919, + "op": "SHL", + "gas": 474805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 8920, + "op": "SUB", + "gas": 474802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8921, + "op": "DUP6", + "gas": 474799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 8922, + "op": "AND", + "gas": 474796, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 8923, + "op": "PUSH1", + "gas": 474793, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 8925, + "op": "SWAP1", + "gas": 474790, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x0" + ] + }, + { + "pc": 8926, + "op": "DUP2", + "gas": 474787, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 8927, + "op": "MSTORE", + "gas": 474784, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x0" + ] + }, + { + "pc": 8928, + "op": "PUSH1", + "gas": 474781, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8930, + "op": "PUSH1", + "gas": 474778, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x8" + ] + }, + { + "pc": 8932, + "op": "MSTORE", + "gas": 474775, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 8933, + "op": "PUSH1", + "gas": 474772, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 8935, + "op": "SWAP1", + "gas": 474769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 8936, + "op": "KECCAK256", + "gas": 474766, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 8937, + "op": "SLOAD", + "gas": 474724, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305dffffffff000006f00000000000000000017856c6150ea000" + } + }, + { + "pc": 8938, + "op": "PUSH4", + "gas": 473924, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000" + ] + }, + { + "pc": 8943, + "op": "DUP1", + "gas": 473921, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff" + ] + }, + { + "pc": 8944, + "op": "DUP7", + "gas": 473918, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 8945, + "op": "AND", + "gas": 473915, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8946, + "op": "PUSH1", + "gas": 473912, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8948, + "op": "PUSH1", + "gas": 473909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0x305e", + "0x1" + ] + }, + { + "pc": 8950, + "op": "SHL", + "gas": 473906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0x305e", + "0x1", + "0xc0" + ] + }, + { + "pc": 8951, + "op": "SWAP1", + "gas": 473903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0x305e", + "0x1000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 8952, + "op": "SWAP3", + "gas": 473900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0x1000000000000000000000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 8953, + "op": "DIV", + "gas": 473897, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff", + "0x1000000000000000000000000000000000000000000000000", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000" + ] + }, + { + "pc": 8954, + "op": "AND", + "gas": 473892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff", + "0x305b0000305d" + ] + }, + { + "pc": 8955, + "op": "LT", + "gas": 473889, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x305d" + ] + }, + { + "pc": 8956, + "op": "PUSH2", + "gas": 473886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 8959, + "op": "JUMPI", + "gas": 473883, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x233e" + ] + }, + { + "pc": 9022, + "op": "JUMPDEST", + "gas": 473873, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9023, + "op": "DUP1", + "gas": 473872, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9024, + "op": "PUSH4", + "gas": 473869, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9029, + "op": "AND", + "gas": 473866, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9030, + "op": "DUP5", + "gas": 473863, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9031, + "op": "PUSH4", + "gas": 473860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9036, + "op": "AND", + "gas": 473857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9037, + "op": "EQ", + "gas": 473854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9038, + "op": "ISZERO", + "gas": 473851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9039, + "op": "DUP1", + "gas": 473848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9040, + "op": "ISZERO", + "gas": 473845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9041, + "op": "PUSH2", + "gas": 473842, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x1" + ] + }, + { + "pc": 9044, + "op": "JUMPI", + "gas": 473839, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x1", + "0x237a" + ] + }, + { + "pc": 9082, + "op": "JUMPDEST", + "gas": 473829, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9083, + "op": "DUP1", + "gas": 473828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9084, + "op": "ISZERO", + "gas": 473825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9085, + "op": "PUSH2", + "gas": 473822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x1" + ] + }, + { + "pc": 9088, + "op": "JUMPI", + "gas": 473819, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0", + "0x1", + "0x238d" + ] + }, + { + "pc": 9101, + "op": "JUMPDEST", + "gas": 473809, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9102, + "op": "ISZERO", + "gas": 473808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9103, + "op": "PUSH2", + "gas": 473805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9106, + "op": "JUMPI", + "gas": 473802, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x23d1" + ] + }, + { + "pc": 9169, + "op": "JUMPDEST", + "gas": 473792, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9170, + "op": "DUP4", + "gas": 473791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9171, + "op": "PUSH4", + "gas": 473788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9176, + "op": "AND", + "gas": 473785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9177, + "op": "PUSH1", + "gas": 473782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9179, + "op": "EQ", + "gas": 473779, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x305e", + "0x1" + ] + }, + { + "pc": 9180, + "op": "ISZERO", + "gas": 473776, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9181, + "op": "DUP1", + "gas": 473773, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9182, + "op": "ISZERO", + "gas": 473770, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 9183, + "op": "PUSH2", + "gas": 473767, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 9186, + "op": "JUMPI", + "gas": 473764, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x0", + "0x2402" + ] + }, + { + "pc": 9187, + "op": "POP", + "gas": 473754, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9188, + "op": "PUSH2", + "gas": 473752, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9191, + "op": "PUSH2", + "gas": 473749, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400" + ] + }, + { + "pc": 9194, + "op": "PUSH4", + "gas": 473746, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb" + ] + }, + { + "pc": 9199, + "op": "DUP1", + "gas": 473743, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff" + ] + }, + { + "pc": 9200, + "op": "DUP8", + "gas": 473740, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 9201, + "op": "AND", + "gas": 473737, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9202, + "op": "SWAP1", + "gas": 473734, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9203, + "op": "PUSH1", + "gas": 473731, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9205, + "op": "SWAP1", + "gas": 473728, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0xffffffff", + "0x1" + ] + }, + { + "pc": 9206, + "op": "PUSH2", + "gas": 473725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0xffffffff" + ] + }, + { + "pc": 9209, + "op": "AND", + "gas": 473722, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0xffffffff", + "0x3384" + ] + }, + { + "pc": 9210, + "op": "JUMP", + "gas": 473719, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x3384" + ] + }, + { + "pc": 13188, + "op": "JUMPDEST", + "gas": 473711, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1" + ] + }, + { + "pc": 13189, + "op": "PUSH1", + "gas": 473710, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1" + ] + }, + { + "pc": 13191, + "op": "DUP3", + "gas": 473707, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 13192, + "op": "PUSH4", + "gas": 473704, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 13197, + "op": "AND", + "gas": 473701, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13198, + "op": "DUP3", + "gas": 473698, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 13199, + "op": "PUSH4", + "gas": 473695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1" + ] + }, + { + "pc": 13204, + "op": "AND", + "gas": 473692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1", + "0xffffffff" + ] + }, + { + "pc": 13205, + "op": "GT", + "gas": 473689, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1" + ] + }, + { + "pc": 13206, + "op": "ISZERO", + "gas": 473686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 13207, + "op": "PUSH2", + "gas": 473683, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 13210, + "op": "JUMPI", + "gas": 473680, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x1", + "0x2ef3" + ] + }, + { + "pc": 12019, + "op": "JUMPDEST", + "gas": 473670, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 12020, + "op": "POP", + "gas": 473669, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 12021, + "op": "SWAP1", + "gas": 473667, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1" + ] + }, + { + "pc": 12022, + "op": "SUB", + "gas": 473664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x1", + "0x305e" + ] + }, + { + "pc": 12023, + "op": "SWAP1", + "gas": 473661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x23fb", + "0x305d" + ] + }, + { + "pc": 12024, + "op": "JUMP", + "gas": 473658, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x23fb" + ] + }, + { + "pc": 9211, + "op": "JUMPDEST", + "gas": 473650, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 9212, + "op": "PUSH2", + "gas": 473649, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 9215, + "op": "JUMP", + "gas": 473646, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x33e7" + ] + }, + { + "pc": 13287, + "op": "JUMPDEST", + "gas": 473638, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 13288, + "op": "PUSH4", + "gas": 473637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 13293, + "op": "DUP2", + "gas": 473634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0xffffffff" + ] + }, + { + "pc": 13294, + "op": "AND", + "gas": 473631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0xffffffff", + "0x305d" + ] + }, + { + "pc": 13295, + "op": "PUSH1", + "gas": 473628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x305d" + ] + }, + { + "pc": 13297, + "op": "SWAP1", + "gas": 473625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x305d", + "0x0" + ] + }, + { + "pc": 13298, + "op": "DUP2", + "gas": 473622, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d" + ] + }, + { + "pc": 13299, + "op": "MSTORE", + "gas": 473619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d", + "0x0" + ] + }, + { + "pc": 13300, + "op": "PUSH1", + "gas": 473616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0" + ] + }, + { + "pc": 13302, + "op": "PUSH1", + "gas": 473613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x9" + ] + }, + { + "pc": 13304, + "op": "MSTORE", + "gas": 473610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x9", + "0x20" + ] + }, + { + "pc": 13305, + "op": "PUSH1", + "gas": 473607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0" + ] + }, + { + "pc": 13307, + "op": "DUP2", + "gas": 473604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x40" + ] + }, + { + "pc": 13308, + "op": "KECCAK256", + "gas": 473601, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x40", + "0x0" + ] + }, + { + "pc": 13309, + "op": "PUSH1", + "gas": 473559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae3" + ] + }, + { + "pc": 13311, + "op": "ADD", + "gas": 473556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae3", + "0x1" + ] + }, + { + "pc": 13312, + "op": "SLOAD", + "gas": 473553, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b" + } + }, + { + "pc": 13313, + "op": "PUSH1", + "gas": 472753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b" + ] + }, + { + "pc": 13315, + "op": "PUSH1", + "gas": 472750, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b", + "0x1" + ] + }, + { + "pc": 13317, + "op": "SHL", + "gas": 472747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b", + "0x1", + "0x40" + ] + }, + { + "pc": 13318, + "op": "SWAP1", + "gas": 472744, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b", + "0x10000000000000000" + ] + }, + { + "pc": 13319, + "op": "DIV", + "gas": 472741, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x10000000000000000", + "0x305d00000000689d901f00000000689d901b" + ] + }, + { + "pc": 13320, + "op": "PUSH1", + "gas": 472736, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f" + ] + }, + { + "pc": 13322, + "op": "PUSH1", + "gas": 472733, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1" + ] + }, + { + "pc": 13324, + "op": "PUSH1", + "gas": 472730, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1", + "0x1" + ] + }, + { + "pc": 13326, + "op": "SHL", + "gas": 472727, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1", + "0x1", + "0x40" + ] + }, + { + "pc": 13327, + "op": "SUB", + "gas": 472724, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1", + "0x10000000000000000" + ] + }, + { + "pc": 13328, + "op": "AND", + "gas": 472721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0xffffffffffffffff" + ] + }, + { + "pc": 13329, + "op": "ISZERO", + "gas": 472718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x689d901f" + ] + }, + { + "pc": 13330, + "op": "ISZERO", + "gas": 472715, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x0" + ] + }, + { + "pc": 13331, + "op": "DUP1", + "gas": 472712, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1" + ] + }, + { + "pc": 13332, + "op": "PUSH2", + "gas": 472709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 13335, + "op": "JUMPI", + "gas": 472706, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1", + "0x1", + "0x2449" + ] + }, + { + "pc": 9289, + "op": "JUMPDEST", + "gas": 472696, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1" + ] + }, + { + "pc": 9290, + "op": "SWAP3", + "gas": 472695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1" + ] + }, + { + "pc": 9291, + "op": "SWAP2", + "gas": 472692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x305d", + "0x0", + "0x2400" + ] + }, + { + "pc": 9292, + "op": "POP", + "gas": 472689, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2400", + "0x0", + "0x305d" + ] + }, + { + "pc": 9293, + "op": "POP", + "gas": 472687, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2400", + "0x0" + ] + }, + { + "pc": 9294, + "op": "JUMP", + "gas": 472685, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2400" + ] + }, + { + "pc": 9216, + "op": "JUMPDEST", + "gas": 472677, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9217, + "op": "ISZERO", + "gas": 472676, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9218, + "op": "JUMPDEST", + "gas": 472673, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9219, + "op": "ISZERO", + "gas": 472672, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9220, + "op": "PUSH2", + "gas": 472669, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9223, + "op": "JUMPI", + "gas": 472666, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e", + "0x1", + "0x2446" + ] + }, + { + "pc": 9286, + "op": "JUMPDEST", + "gas": 472656, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9287, + "op": "POP", + "gas": 472655, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0", + "0x305e" + ] + }, + { + "pc": 9288, + "op": "POP", + "gas": 472653, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60", + "0x6f0" + ] + }, + { + "pc": 9289, + "op": "JUMPDEST", + "gas": 472651, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60" + ] + }, + { + "pc": 9290, + "op": "SWAP3", + "gas": 472650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xa0b", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x60" + ] + }, + { + "pc": 9291, + "op": "SWAP2", + "gas": 472647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x60", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0xa0b" + ] + }, + { + "pc": 9292, + "op": "POP", + "gas": 472644, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x60", + "0xa0b", + "0x305e", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 9293, + "op": "POP", + "gas": 472642, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x60", + "0xa0b", + "0x305e" + ] + }, + { + "pc": 9294, + "op": "JUMP", + "gas": 472640, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x60", + "0xa0b" + ] + }, + { + "pc": 2571, + "op": "JUMPDEST", + "gas": 472632, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x60" + ] + }, + { + "pc": 2572, + "op": "SWAP1", + "gas": 472631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x60" + ] + }, + { + "pc": 2573, + "op": "POP", + "gas": 472628, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x60" + ] + }, + { + "pc": 2574, + "op": "PUSH32", + "gas": 472626, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60" + ] + }, + { + "pc": 2607, + "op": "DUP3", + "gas": 472623, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0" + ] + }, + { + "pc": 2608, + "op": "SLT", + "gas": 472620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x41f53671b4af058000" + ] + }, + { + "pc": 2609, + "op": "ISZERO", + "gas": 472617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0" + ] + }, + { + "pc": 2610, + "op": "PUSH2", + "gas": 472614, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1" + ] + }, + { + "pc": 2613, + "op": "JUMPI", + "gas": 472611, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0xa82" + ] + }, + { + "pc": 2690, + "op": "JUMPDEST", + "gas": 472601, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60" + ] + }, + { + "pc": 2691, + "op": "PUSH32", + "gas": 472600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60" + ] + }, + { + "pc": 2724, + "op": "DUP3", + "gas": 472597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x845951614014849ffffff" + ] + }, + { + "pc": 2725, + "op": "SGT", + "gas": 472594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x845951614014849ffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 2726, + "op": "ISZERO", + "gas": 472591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0" + ] + }, + { + "pc": 2727, + "op": "PUSH2", + "gas": 472588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1" + ] + }, + { + "pc": 2730, + "op": "JUMPI", + "gas": 472585, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0xaf7" + ] + }, + { + "pc": 2807, + "op": "JUMPDEST", + "gas": 472575, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60" + ] + }, + { + "pc": 2808, + "op": "DUP1", + "gas": 472574, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60" + ] + }, + { + "pc": 2809, + "op": "MLOAD", + "gas": 472571, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x60" + ] + }, + { + "pc": 2810, + "op": "DUP2", + "gas": 472565, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0" + ] + }, + { + "pc": 2811, + "op": "SWAP1", + "gas": 472562, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x60" + ] + }, + { + "pc": 2812, + "op": "ISZERO", + "gas": 472559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x60", + "0x0" + ] + }, + { + "pc": 2813, + "op": "PUSH2", + "gas": 472556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x60", + "0x1" + ] + }, + { + "pc": 2816, + "op": "JUMPI", + "gas": 472553, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x60", + "0x1", + "0xb84" + ] + }, + { + "pc": 2948, + "op": "JUMPDEST", + "gas": 472543, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x60" + ] + }, + { + "pc": 2949, + "op": "POP", + "gas": 472542, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x60" + ] + }, + { + "pc": 2950, + "op": "PUSH2", + "gas": 472540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60" + ] + }, + { + "pc": 2953, + "op": "DUP4", + "gas": 472537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e" + ] + }, + { + "pc": 2954, + "op": "PUSH2", + "gas": 472534, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 2957, + "op": "JUMP", + "gas": 472531, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x244f" + ] + }, + { + "pc": 9295, + "op": "JUMPDEST", + "gas": 472523, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9296, + "op": "PUSH2", + "gas": 472522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9299, + "op": "DUP2", + "gas": 472519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458" + ] + }, + { + "pc": 9300, + "op": "PUSH2", + "gas": 472516, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e" + ] + }, + { + "pc": 9303, + "op": "JUMP", + "gas": 472513, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x3421" + ] + }, + { + "pc": 13345, + "op": "JUMPDEST", + "gas": 472505, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e" + ] + }, + { + "pc": 13346, + "op": "PUSH1", + "gas": 472504, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e" + ] + }, + { + "pc": 13348, + "op": "SLOAD", + "gas": 472501, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b" + } + }, + { + "pc": 13349, + "op": "PUSH1", + "gas": 471701, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x305e0000305e" + ] + }, + { + "pc": 13351, + "op": "SWAP1", + "gas": 471698, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x305e0000305e", + "0x0" + ] + }, + { + "pc": 13352, + "op": "PUSH2", + "gas": 471695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305e0000305e" + ] + }, + { + "pc": 13355, + "op": "SWAP1", + "gas": 471692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305e0000305e", + "0x343d" + ] + }, + { + "pc": 13356, + "op": "PUSH4", + "gas": 471689, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e0000305e" + ] + }, + { + "pc": 13361, + "op": "SWAP1", + "gas": 471686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e0000305e", + "0xffffffff" + ] + }, + { + "pc": 13362, + "op": "DUP2", + "gas": 471683, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0xffffffff", + "0x305e0000305e" + ] + }, + { + "pc": 13363, + "op": "AND", + "gas": 471680, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0xffffffff", + "0x305e0000305e", + "0xffffffff" + ] + }, + { + "pc": 13364, + "op": "SWAP1", + "gas": 471677, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 13365, + "op": "PUSH1", + "gas": 471674, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13367, + "op": "SWAP1", + "gas": 471671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0xffffffff", + "0x1" + ] + }, + { + "pc": 13368, + "op": "PUSH2", + "gas": 471668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0xffffffff" + ] + }, + { + "pc": 13371, + "op": "AND", + "gas": 471665, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0xffffffff", + "0x31fb" + ] + }, + { + "pc": 13372, + "op": "JUMP", + "gas": 471662, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x31fb" + ] + }, + { + "pc": 12795, + "op": "JUMPDEST", + "gas": 471654, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1" + ] + }, + { + "pc": 12796, + "op": "PUSH1", + "gas": 471653, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1" + ] + }, + { + "pc": 12798, + "op": "DUP3", + "gas": 471650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 12799, + "op": "DUP3", + "gas": 471647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 12800, + "op": "ADD", + "gas": 471644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1" + ] + }, + { + "pc": 12801, + "op": "PUSH4", + "gas": 471641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f" + ] + }, + { + "pc": 12806, + "op": "DUP1", + "gas": 471638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff" + ] + }, + { + "pc": 12807, + "op": "DUP6", + "gas": 471635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 12808, + "op": "AND", + "gas": 471632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 12809, + "op": "SWAP1", + "gas": 471629, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 12810, + "op": "DUP3", + "gas": 471626, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 12811, + "op": "AND", + "gas": 471623, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x305e", + "0xffffffff", + "0x305f" + ] + }, + { + "pc": 12812, + "op": "LT", + "gas": 471620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x305e", + "0x305f" + ] + }, + { + "pc": 12813, + "op": "ISZERO", + "gas": 471617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x0" + ] + }, + { + "pc": 12814, + "op": "PUSH2", + "gas": 471614, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x1" + ] + }, + { + "pc": 12817, + "op": "JUMPI", + "gas": 471611, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x1", + "0x2bf3" + ] + }, + { + "pc": 11251, + "op": "JUMPDEST", + "gas": 471601, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f" + ] + }, + { + "pc": 11252, + "op": "SWAP4", + "gas": 471600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f" + ] + }, + { + "pc": 11253, + "op": "SWAP3", + "gas": 471597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e", + "0x1", + "0x0", + "0x343d" + ] + }, + { + "pc": 11254, + "op": "POP", + "gas": 471594, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 11255, + "op": "POP", + "gas": 471592, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d", + "0x1", + "0x0" + ] + }, + { + "pc": 11256, + "op": "POP", + "gas": 471590, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d", + "0x1" + ] + }, + { + "pc": 11257, + "op": "JUMP", + "gas": 471588, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d" + ] + }, + { + "pc": 13373, + "op": "JUMPDEST", + "gas": 471580, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f" + ] + }, + { + "pc": 13374, + "op": "PUSH4", + "gas": 471579, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f" + ] + }, + { + "pc": 13379, + "op": "AND", + "gas": 471576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0xffffffff" + ] + }, + { + "pc": 13380, + "op": "DUP3", + "gas": 471573, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f" + ] + }, + { + "pc": 13381, + "op": "PUSH4", + "gas": 471570, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e" + ] + }, + { + "pc": 13386, + "op": "AND", + "gas": 471567, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13387, + "op": "EQ", + "gas": 471564, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e" + ] + }, + { + "pc": 13388, + "op": "SWAP1", + "gas": 471561, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 13389, + "op": "POP", + "gas": 471558, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 13390, + "op": "SWAP2", + "gas": 471556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0" + ] + }, + { + "pc": 13391, + "op": "SWAP1", + "gas": 471553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x305e", + "0x2458" + ] + }, + { + "pc": 13392, + "op": "POP", + "gas": 471550, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x2458", + "0x305e" + ] + }, + { + "pc": 13393, + "op": "JUMP", + "gas": 471548, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x2458" + ] + }, + { + "pc": 9304, + "op": "JUMPDEST", + "gas": 471540, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9305, + "op": "PUSH2", + "gas": 471539, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9308, + "op": "JUMPI", + "gas": 471536, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x2461" + ] + }, + { + "pc": 9309, + "op": "PUSH2", + "gas": 471526, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9312, + "op": "JUMP", + "gas": 471523, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e", + "0x24e0" + ] + }, + { + "pc": 9440, + "op": "JUMPDEST", + "gas": 471515, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9441, + "op": "POP", + "gas": 471514, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9442, + "op": "JUMP", + "gas": 471512, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb8e" + ] + }, + { + "pc": 2958, + "op": "JUMPDEST", + "gas": 471504, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60" + ] + }, + { + "pc": 2959, + "op": "PUSH2", + "gas": 471503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60" + ] + }, + { + "pc": 2962, + "op": "DUP3", + "gas": 471500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98" + ] + }, + { + "pc": 2963, + "op": "DUP5", + "gas": 471497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000" + ] + }, + { + "pc": 2964, + "op": "PUSH2", + "gas": 471494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e" + ] + }, + { + "pc": 2967, + "op": "JUMP", + "gas": 471491, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24e3" + ] + }, + { + "pc": 9443, + "op": "JUMPDEST", + "gas": 471483, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e" + ] + }, + { + "pc": 9444, + "op": "PUSH2", + "gas": 471482, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e" + ] + }, + { + "pc": 9447, + "op": "DUP2", + "gas": 471479, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec" + ] + }, + { + "pc": 9448, + "op": "PUSH2", + "gas": 471476, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0x305e" + ] + }, + { + "pc": 9451, + "op": "JUMP", + "gas": 471473, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0x305e", + "0x3605" + ] + }, + { + "pc": 13829, + "op": "JUMPDEST", + "gas": 471465, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0x305e" + ] + }, + { + "pc": 13830, + "op": "PUSH4", + "gas": 471464, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0x305e" + ] + }, + { + "pc": 13835, + "op": "SWAP1", + "gas": 471461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13836, + "op": "DUP2", + "gas": 471458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 13837, + "op": "AND", + "gas": 471455, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13838, + "op": "PUSH1", + "gas": 471452, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 13840, + "op": "SWAP1", + "gas": 471449, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e", + "0x0" + ] + }, + { + "pc": 13841, + "op": "DUP2", + "gas": 471446, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0x305e" + ] + }, + { + "pc": 13842, + "op": "MSTORE", + "gas": 471443, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 13843, + "op": "PUSH1", + "gas": 471440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 13845, + "op": "PUSH1", + "gas": 471437, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0xa" + ] + }, + { + "pc": 13847, + "op": "MSTORE", + "gas": 471434, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 13848, + "op": "PUSH1", + "gas": 471431, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 13850, + "op": "SWAP1", + "gas": 471428, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 13851, + "op": "KECCAK256", + "gas": 471425, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x40", + "0x0" + ] + }, + { + "pc": 13852, + "op": "PUSH1", + "gas": 471383, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 13854, + "op": "ADD", + "gas": 471380, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 13855, + "op": "SLOAD", + "gas": 471377, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006" + } + }, + { + "pc": 13856, + "op": "AND", + "gas": 470577, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0xffffffff", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 13857, + "op": "ISZERO", + "gas": 470574, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0x6" + ] + }, + { + "pc": 13858, + "op": "ISZERO", + "gas": 470571, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0x0" + ] + }, + { + "pc": 13859, + "op": "SWAP1", + "gas": 470568, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x24ec", + "0x1" + ] + }, + { + "pc": 13860, + "op": "JUMP", + "gas": 470565, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x1", + "0x24ec" + ] + }, + { + "pc": 9452, + "op": "JUMPDEST", + "gas": 470557, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x1" + ] + }, + { + "pc": 9453, + "op": "PUSH2", + "gas": 470556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x1" + ] + }, + { + "pc": 9456, + "op": "JUMPI", + "gas": 470553, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x1", + "0x253d" + ] + }, + { + "pc": 9533, + "op": "JUMPDEST", + "gas": 470543, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e" + ] + }, + { + "pc": 9534, + "op": "PUSH4", + "gas": 470542, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e" + ] + }, + { + "pc": 9539, + "op": "DUP2", + "gas": 470539, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9540, + "op": "AND", + "gas": 470536, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9541, + "op": "PUSH1", + "gas": 470533, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9543, + "op": "DUP2", + "gas": 470530, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9544, + "op": "DUP2", + "gas": 470527, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x305e" + ] + }, + { + "pc": 9545, + "op": "MSTORE", + "gas": 470524, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9546, + "op": "PUSH1", + "gas": 470521, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9548, + "op": "PUSH1", + "gas": 470518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0xa" + ] + }, + { + "pc": 9550, + "op": "SWAP1", + "gas": 470515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 9551, + "op": "DUP2", + "gas": 470512, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0xa" + ] + }, + { + "pc": 9552, + "op": "MSTORE", + "gas": 470509, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0xa", + "0x20" + ] + }, + { + "pc": 9553, + "op": "PUSH1", + "gas": 470506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20" + ] + }, + { + "pc": 9555, + "op": "DUP1", + "gas": 470503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40" + ] + }, + { + "pc": 9556, + "op": "DUP4", + "gas": 470500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x40" + ] + }, + { + "pc": 9557, + "op": "KECCAK256", + "gas": 470497, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x40", + "0x0" + ] + }, + { + "pc": 9558, + "op": "DUP1", + "gas": 470455, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9559, + "op": "SLOAD", + "gas": 470452, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000003", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006" + } + }, + { + "pc": 9560, + "op": "PUSH1", + "gas": 469652, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3" + ] + }, + { + "pc": 9562, + "op": "DUP1", + "gas": 469649, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x1" + ] + }, + { + "pc": 9563, + "op": "DUP3", + "gas": 469646, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x1", + "0x1" + ] + }, + { + "pc": 9564, + "op": "ADD", + "gas": 469643, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x1", + "0x1", + "0x3" + ] + }, + { + "pc": 9565, + "op": "DUP4", + "gas": 469640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x1", + "0x4" + ] + }, + { + "pc": 9566, + "op": "SSTORE", + "gas": 469637, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x1", + "0x4", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006" + } + }, + { + "pc": 9567, + "op": "SWAP2", + "gas": 464637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x3", + "0x1" + ] + }, + { + "pc": 9568, + "op": "DUP6", + "gas": 464634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x3", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9569, + "op": "MSTORE", + "gas": 464631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x3", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x0" + ] + }, + { + "pc": 9570, + "op": "DUP4", + "gas": 464628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x3" + ] + }, + { + "pc": 9571, + "op": "DUP6", + "gas": 464625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x3", + "0x20" + ] + }, + { + "pc": 9572, + "op": "KECCAK256", + "gas": 464622, + "gasCost": 36, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x3", + "0x20", + "0x0" + ] + }, + { + "pc": 9573, + "op": "ADD", + "gas": 464586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x3", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f" + ] + }, + { + "pc": 9574, + "op": "DUP8", + "gas": 464583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52" + ] + }, + { + "pc": 9575, + "op": "SWAP1", + "gas": 464580, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x41f53671b4af058000" + ] + }, + { + "pc": 9576, + "op": "SSTORE", + "gas": 464577, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x41f53671b4af058000", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9577, + "op": "CALLER", + "gas": 444577, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1" + ] + }, + { + "pc": 9578, + "op": "DUP1", + "gas": 444575, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 9579, + "op": "DUP6", + "gas": 444572, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 9580, + "op": "MSTORE", + "gas": 444569, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x0" + ] + }, + { + "pc": 9581, + "op": "PUSH1", + "gas": 444566, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 9583, + "op": "SWAP1", + "gas": 444563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x8" + ] + }, + { + "pc": 9584, + "op": "SWAP4", + "gas": 444560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x8", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 9585, + "op": "MSTORE", + "gas": 444557, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x8", + "0x20" + ] + }, + { + "pc": 9586, + "op": "DUP2", + "gas": 444554, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1" + ] + }, + { + "pc": 9587, + "op": "DUP5", + "gas": 444551, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x40" + ] + }, + { + "pc": 9588, + "op": "KECCAK256", + "gas": 444548, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x40", + "0x0" + ] + }, + { + "pc": 9589, + "op": "DUP1", + "gas": 444506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6" + ] + }, + { + "pc": 9590, + "op": "SLOAD", + "gas": 444503, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9591, + "op": "PUSH4", + "gas": 443703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000" + ] + }, + { + "pc": 9596, + "op": "PUSH1", + "gas": 443700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff" + ] + }, + { + "pc": 9598, + "op": "SHL", + "gas": 443697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff", + "0xc0" + ] + }, + { + "pc": 9599, + "op": "NOT", + "gas": 443694, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 9600, + "op": "AND", + "gas": 443691, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305dffffffff000006f00000000000000000017856c6150ea000", + "0xffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 9601, + "op": "PUSH1", + "gas": 443688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b00000000ffffffff000006f00000000000000000017856c6150ea000" + ] + }, + { + "pc": 9603, + "op": "PUSH1", + "gas": 443685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b00000000ffffffff000006f00000000000000000017856c6150ea000", + "0x1" + ] + }, + { + "pc": 9605, + "op": "SHL", + "gas": 443682, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b00000000ffffffff000006f00000000000000000017856c6150ea000", + "0x1", + "0xc0" + ] + }, + { + "pc": 9606, + "op": "DUP8", + "gas": 443679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b00000000ffffffff000006f00000000000000000017856c6150ea000", + "0x1000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 9607, + "op": "MUL", + "gas": 443676, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b00000000ffffffff000006f00000000000000000017856c6150ea000", + "0x1000000000000000000000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 9608, + "op": "OR", + "gas": 443671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b00000000ffffffff000006f00000000000000000017856c6150ea000", + "0x305e000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 9609, + "op": "DUP2", + "gas": 443668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f00000000000000000017856c6150ea000" + ] + }, + { + "pc": 9610, + "op": "SSTORE", + "gas": 443665, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f00000000000000000017856c6150ea000", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9611, + "op": "ADD", + "gas": 438665, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6" + ] + }, + { + "pc": 9612, + "op": "DUP7", + "gas": 438662, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7" + ] + }, + { + "pc": 9613, + "op": "SWAP1", + "gas": 438659, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7", + "0x41f53671b4af058000" + ] + }, + { + "pc": 9614, + "op": "SSTORE", + "gas": 438656, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40", + "0x41f53671b4af058000", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9615, + "op": "MLOAD", + "gas": 433656, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x40" + ] + }, + { + "pc": 9616, + "op": "SWAP1", + "gas": 433653, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x80" + ] + }, + { + "pc": 9617, + "op": "SWAP3", + "gas": 433650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x305e", + "0x0", + "0x80", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 9618, + "op": "SWAP2", + "gas": 433647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x0", + "0x80", + "0x305e" + ] + }, + { + "pc": 9619, + "op": "DUP6", + "gas": 433644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x80", + "0x0" + ] + }, + { + "pc": 9620, + "op": "SWAP2", + "gas": 433641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x80", + "0x0", + "0x41f53671b4af058000" + ] + }, + { + "pc": 9621, + "op": "PUSH32", + "gas": 433638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x41f53671b4af058000", + "0x0", + "0x80" + ] + }, + { + "pc": 9654, + "op": "SWAP2", + "gas": 433635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0x92e98423f8adac6e64d0608e519fd1cefb861498385c6dee70d58fc926ddc68c" + ] + }, + { + "pc": 9655, + "op": "SWAP1", + "gas": 433632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x41f53671b4af058000", + "0x92e98423f8adac6e64d0608e519fd1cefb861498385c6dee70d58fc926ddc68c", + "0x80", + "0x0" + ] + }, + { + "pc": 9656, + "op": "LOG4", + "gas": 433629, + "gasCost": 1875, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x305e", + "0x41f53671b4af058000", + "0x92e98423f8adac6e64d0608e519fd1cefb861498385c6dee70d58fc926ddc68c", + "0x0", + "0x80" + ] + }, + { + "pc": 9657, + "op": "POP", + "gas": 431754, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000", + "0x305e" + ] + }, + { + "pc": 9658, + "op": "POP", + "gas": 431752, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98", + "0x41f53671b4af058000" + ] + }, + { + "pc": 9659, + "op": "JUMP", + "gas": 431750, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0xb98" + ] + }, + { + "pc": 2968, + "op": "JUMPDEST", + "gas": 431742, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60" + ] + }, + { + "pc": 2969, + "op": "PUSH1", + "gas": 431741, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60" + ] + }, + { + "pc": 2971, + "op": "DUP1", + "gas": 431738, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0" + ] + }, + { + "pc": 2972, + "op": "PUSH2", + "gas": 431735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0" + ] + }, + { + "pc": 2975, + "op": "DUP6", + "gas": 431732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4" + ] + }, + { + "pc": 2976, + "op": "PUSH2", + "gas": 431729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e" + ] + }, + { + "pc": 2979, + "op": "JUMP", + "gas": 431726, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x25bc" + ] + }, + { + "pc": 9660, + "op": "JUMPDEST", + "gas": 431718, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e" + ] + }, + { + "pc": 9661, + "op": "PUSH4", + "gas": 431717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e" + ] + }, + { + "pc": 9666, + "op": "DUP1", + "gas": 431714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9667, + "op": "DUP3", + "gas": 431711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 9668, + "op": "AND", + "gas": 431708, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9669, + "op": "PUSH1", + "gas": 431705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9671, + "op": "SWAP1", + "gas": 431702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x305e", + "0x0" + ] + }, + { + "pc": 9672, + "op": "DUP2", + "gas": 431699, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x305e" + ] + }, + { + "pc": 9673, + "op": "MSTORE", + "gas": 431696, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9674, + "op": "PUSH1", + "gas": 431693, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 9676, + "op": "PUSH1", + "gas": 431690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0xa" + ] + }, + { + "pc": 9678, + "op": "MSTORE", + "gas": 431687, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 9679, + "op": "PUSH1", + "gas": 431684, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 9681, + "op": "DUP2", + "gas": 431681, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 9682, + "op": "KECCAK256", + "gas": 431678, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x40", + "0x0" + ] + }, + { + "pc": 9683, + "op": "PUSH1", + "gas": 431636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9685, + "op": "DUP2", + "gas": 431633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 9686, + "op": "ADD", + "gas": 431630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9687, + "op": "SLOAD", + "gas": 431627, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9688, + "op": "SWAP1", + "gas": 430827, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 9689, + "op": "SLOAD", + "gas": 430824, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9690, + "op": "SWAP2", + "gas": 430024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0x4" + ] + }, + { + "pc": 9691, + "op": "SWAP3", + "gas": 430021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x4", + "0x9184e72a0000000003c0000000300000006", + "0x0" + ] + }, + { + "pc": 9692, + "op": "DUP4", + "gas": 430018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x4", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff" + ] + }, + { + "pc": 9693, + "op": "SWAP3", + "gas": 430015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x4", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 9694, + "op": "PUSH1", + "gas": 430012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x4" + ] + }, + { + "pc": 9696, + "op": "PUSH1", + "gas": 430009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x4", + "0x1" + ] + }, + { + "pc": 9698, + "op": "SHL", + "gas": 430006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x4", + "0x1", + "0x20" + ] + }, + { + "pc": 9699, + "op": "SWAP1", + "gas": 430003, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x4", + "0x100000000" + ] + }, + { + "pc": 9700, + "op": "SWAP3", + "gas": 430000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x100000000", + "0x4" + ] + }, + { + "pc": 9701, + "op": "DIV", + "gas": 429997, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x4", + "0xffffffff", + "0x100000000", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 9702, + "op": "AND", + "gas": 429992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x4", + "0xffffffff", + "0x9184e72a0000000003c00000003" + ] + }, + { + "pc": 9703, + "op": "GT", + "gas": 429989, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x4", + "0x3" + ] + }, + { + "pc": 9704, + "op": "ISZERO", + "gas": 429986, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 9705, + "op": "PUSH2", + "gas": 429983, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 9708, + "op": "JUMPI", + "gas": 429980, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x1", + "0x25f7" + ] + }, + { + "pc": 9719, + "op": "JUMPDEST", + "gas": 429970, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9720, + "op": "PUSH4", + "gas": 429969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9725, + "op": "DUP4", + "gas": 429966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0xffffffff" + ] + }, + { + "pc": 9726, + "op": "AND", + "gas": 429963, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9727, + "op": "PUSH1", + "gas": 429960, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x305e" + ] + }, + { + "pc": 9729, + "op": "SWAP1", + "gas": 429957, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9730, + "op": "DUP2", + "gas": 429954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x305e" + ] + }, + { + "pc": 9731, + "op": "MSTORE", + "gas": 429951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9732, + "op": "PUSH1", + "gas": 429948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 9734, + "op": "PUSH1", + "gas": 429945, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0xa" + ] + }, + { + "pc": 9736, + "op": "SWAP1", + "gas": 429942, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 9737, + "op": "DUP2", + "gas": 429939, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0xa" + ] + }, + { + "pc": 9738, + "op": "MSTORE", + "gas": 429936, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0xa", + "0x20" + ] + }, + { + "pc": 9739, + "op": "PUSH1", + "gas": 429933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 9741, + "op": "DUP1", + "gas": 429930, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40" + ] + }, + { + "pc": 9742, + "op": "DUP4", + "gas": 429927, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x40" + ] + }, + { + "pc": 9743, + "op": "KECCAK256", + "gas": 429924, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x40", + "0x0" + ] + }, + { + "pc": 9744, + "op": "DUP1", + "gas": 429882, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9745, + "op": "SLOAD", + "gas": 429879, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9746, + "op": "DUP3", + "gas": 429079, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4" + ] + }, + { + "pc": 9747, + "op": "MLOAD", + "gas": 429076, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x40" + ] + }, + { + "pc": 9748, + "op": "DUP2", + "gas": 429073, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x80" + ] + }, + { + "pc": 9749, + "op": "DUP6", + "gas": 429070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x80", + "0x4" + ] + }, + { + "pc": 9750, + "op": "MUL", + "gas": 429067, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x80", + "0x4", + "0x20" + ] + }, + { + "pc": 9751, + "op": "DUP2", + "gas": 429062, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x80", + "0x80" + ] + }, + { + "pc": 9752, + "op": "ADD", + "gas": 429059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x80", + "0x80", + "0x80" + ] + }, + { + "pc": 9753, + "op": "DUP6", + "gas": 429056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x80", + "0x100" + ] + }, + { + "pc": 9754, + "op": "ADD", + "gas": 429053, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x80", + "0x100", + "0x20" + ] + }, + { + "pc": 9755, + "op": "SWAP1", + "gas": 429050, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x80", + "0x120" + ] + }, + { + "pc": 9756, + "op": "SWAP4", + "gas": 429047, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0x80" + ] + }, + { + "pc": 9757, + "op": "MSTORE", + "gas": 429044, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0x40" + ] + }, + { + "pc": 9758, + "op": "DUP1", + "gas": 429041, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4" + ] + }, + { + "pc": 9759, + "op": "DUP4", + "gas": 429038, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x4" + ] + }, + { + "pc": 9760, + "op": "MSTORE", + "gas": 429035, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x4", + "0x80" + ] + }, + { + "pc": 9761, + "op": "PUSH2", + "gas": 429029, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4" + ] + }, + { + "pc": 9764, + "op": "SWAP4", + "gas": 429026, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x265d" + ] + }, + { + "pc": 9765, + "op": "DUP4", + "gas": 429023, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x20" + ] + }, + { + "pc": 9766, + "op": "ADD", + "gas": 429020, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x20", + "0x80" + ] + }, + { + "pc": 9767, + "op": "DUP3", + "gas": 429017, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0xa0" + ] + }, + { + "pc": 9768, + "op": "DUP3", + "gas": 429014, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9769, + "op": "DUP1", + "gas": 429011, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4" + ] + }, + { + "pc": 9770, + "op": "ISZERO", + "gas": 429008, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x4" + ] + }, + { + "pc": 9771, + "op": "PUSH2", + "gas": 429005, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x0" + ] + }, + { + "pc": 9774, + "op": "JUMPI", + "gas": 429002, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x0", + "0x2653" + ] + }, + { + "pc": 9775, + "op": "PUSH1", + "gas": 428992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4" + ] + }, + { + "pc": 9777, + "op": "MUL", + "gas": 428989, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x20" + ] + }, + { + "pc": 9778, + "op": "DUP3", + "gas": 428984, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x80" + ] + }, + { + "pc": 9779, + "op": "ADD", + "gas": 428981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x80", + "0xa0" + ] + }, + { + "pc": 9780, + "op": "SWAP2", + "gas": 428978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x120" + ] + }, + { + "pc": 9781, + "op": "SWAP1", + "gas": 428975, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0xa0" + ] + }, + { + "pc": 9782, + "op": "PUSH1", + "gas": 428972, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9784, + "op": "MSTORE", + "gas": 428969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x0" + ] + }, + { + "pc": 9785, + "op": "PUSH1", + "gas": 428966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xa0" + ] + }, + { + "pc": 9787, + "op": "PUSH1", + "gas": 428963, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xa0", + "0x20" + ] + }, + { + "pc": 9789, + "op": "KECCAK256", + "gas": 428960, + "gasCost": 36, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xa0", + "0x20", + "0x0" + ] + }, + { + "pc": 9790, + "op": "SWAP1", + "gas": 428924, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xa0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f" + ] + }, + { + "pc": 9791, + "op": "JUMPDEST", + "gas": 428921, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0" + ] + }, + { + "pc": 9792, + "op": "DUP2", + "gas": 428920, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0" + ] + }, + { + "pc": 9793, + "op": "SLOAD", + "gas": 428917, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9794, + "op": "DUP2", + "gas": 428117, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 9795, + "op": "MSTORE", + "gas": 428114, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0", + "0x41ee3e171aea2d7280", + "0xa0" + ] + }, + { + "pc": 9796, + "op": "PUSH1", + "gas": 428108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0" + ] + }, + { + "pc": 9798, + "op": "ADD", + "gas": 428105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0", + "0x20" + ] + }, + { + "pc": 9799, + "op": "SWAP1", + "gas": 428102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xc0" + ] + }, + { + "pc": 9800, + "op": "PUSH1", + "gas": 428099, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xc0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f" + ] + }, + { + "pc": 9802, + "op": "ADD", + "gas": 428096, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xc0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0x1" + ] + }, + { + "pc": 9803, + "op": "SWAP1", + "gas": 428093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xc0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50" + ] + }, + { + "pc": 9804, + "op": "DUP1", + "gas": 428090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0" + ] + }, + { + "pc": 9805, + "op": "DUP4", + "gas": 428087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0xc0" + ] + }, + { + "pc": 9806, + "op": "GT", + "gas": 428084, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0xc0", + "0x120" + ] + }, + { + "pc": 9807, + "op": "PUSH2", + "gas": 428081, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x1" + ] + }, + { + "pc": 9810, + "op": "JUMPI", + "gas": 428078, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x1", + "0x263f" + ] + }, + { + "pc": 9791, + "op": "JUMPDEST", + "gas": 428068, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0" + ] + }, + { + "pc": 9792, + "op": "DUP2", + "gas": 428067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0" + ] + }, + { + "pc": 9793, + "op": "SLOAD", + "gas": 428064, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9794, + "op": "DUP2", + "gas": 427264, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 9795, + "op": "MSTORE", + "gas": 427261, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x41f5599db40e4c4000", + "0xc0" + ] + }, + { + "pc": 9796, + "op": "PUSH1", + "gas": 427255, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0" + ] + }, + { + "pc": 9798, + "op": "ADD", + "gas": 427252, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x20" + ] + }, + { + "pc": 9799, + "op": "SWAP1", + "gas": 427249, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xe0" + ] + }, + { + "pc": 9800, + "op": "PUSH1", + "gas": 427246, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50" + ] + }, + { + "pc": 9802, + "op": "ADD", + "gas": 427243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0x1" + ] + }, + { + "pc": 9803, + "op": "SWAP1", + "gas": 427240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51" + ] + }, + { + "pc": 9804, + "op": "DUP1", + "gas": 427237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0" + ] + }, + { + "pc": 9805, + "op": "DUP4", + "gas": 427234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0xe0" + ] + }, + { + "pc": 9806, + "op": "GT", + "gas": 427231, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0xe0", + "0x120" + ] + }, + { + "pc": 9807, + "op": "PUSH2", + "gas": 427228, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x1" + ] + }, + { + "pc": 9810, + "op": "JUMPI", + "gas": 427225, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x1", + "0x263f" + ] + }, + { + "pc": 9791, + "op": "JUMPDEST", + "gas": 427215, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0" + ] + }, + { + "pc": 9792, + "op": "DUP2", + "gas": 427214, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0" + ] + }, + { + "pc": 9793, + "op": "SLOAD", + "gas": 427211, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9794, + "op": "DUP2", + "gas": 426411, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x41edd68838a5610000" + ] + }, + { + "pc": 9795, + "op": "MSTORE", + "gas": 426408, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x41edd68838a5610000", + "0xe0" + ] + }, + { + "pc": 9796, + "op": "PUSH1", + "gas": 426402, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0" + ] + }, + { + "pc": 9798, + "op": "ADD", + "gas": 426399, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x20" + ] + }, + { + "pc": 9799, + "op": "SWAP1", + "gas": 426396, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0x100" + ] + }, + { + "pc": 9800, + "op": "PUSH1", + "gas": 426393, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51" + ] + }, + { + "pc": 9802, + "op": "ADD", + "gas": 426390, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0x1" + ] + }, + { + "pc": 9803, + "op": "SWAP1", + "gas": 426387, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52" + ] + }, + { + "pc": 9804, + "op": "DUP1", + "gas": 426384, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100" + ] + }, + { + "pc": 9805, + "op": "DUP4", + "gas": 426381, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x100" + ] + }, + { + "pc": 9806, + "op": "GT", + "gas": 426378, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x100", + "0x120" + ] + }, + { + "pc": 9807, + "op": "PUSH2", + "gas": 426375, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x1" + ] + }, + { + "pc": 9810, + "op": "JUMPI", + "gas": 426372, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x1", + "0x263f" + ] + }, + { + "pc": 9791, + "op": "JUMPDEST", + "gas": 426362, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100" + ] + }, + { + "pc": 9792, + "op": "DUP2", + "gas": 426361, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100" + ] + }, + { + "pc": 9793, + "op": "SLOAD", + "gas": 426358, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9794, + "op": "DUP2", + "gas": 425558, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x41f53671b4af058000" + ] + }, + { + "pc": 9795, + "op": "MSTORE", + "gas": 425555, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x41f53671b4af058000", + "0x100" + ] + }, + { + "pc": 9796, + "op": "PUSH1", + "gas": 425549, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100" + ] + }, + { + "pc": 9798, + "op": "ADD", + "gas": 425546, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x20" + ] + }, + { + "pc": 9799, + "op": "SWAP1", + "gas": 425543, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x120" + ] + }, + { + "pc": 9800, + "op": "PUSH1", + "gas": 425540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52" + ] + }, + { + "pc": 9802, + "op": "ADD", + "gas": 425537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x1" + ] + }, + { + "pc": 9803, + "op": "SWAP1", + "gas": 425534, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53" + ] + }, + { + "pc": 9804, + "op": "DUP1", + "gas": 425531, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120" + ] + }, + { + "pc": 9805, + "op": "DUP4", + "gas": 425528, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120", + "0x120" + ] + }, + { + "pc": 9806, + "op": "GT", + "gas": 425525, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120", + "0x120", + "0x120" + ] + }, + { + "pc": 9807, + "op": "PUSH2", + "gas": 425522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120", + "0x0" + ] + }, + { + "pc": 9810, + "op": "JUMPI", + "gas": 425519, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120", + "0x0", + "0x263f" + ] + }, + { + "pc": 9811, + "op": "JUMPDEST", + "gas": 425509, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120" + ] + }, + { + "pc": 9812, + "op": "POP", + "gas": 425508, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120" + ] + }, + { + "pc": 9813, + "op": "POP", + "gas": 425506, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53" + ] + }, + { + "pc": 9814, + "op": "POP", + "gas": 425504, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x120" + ] + }, + { + "pc": 9815, + "op": "POP", + "gas": 425502, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4" + ] + }, + { + "pc": 9816, + "op": "POP", + "gas": 425500, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9817, + "op": "PUSH2", + "gas": 425498, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80" + ] + }, + { + "pc": 9820, + "op": "JUMP", + "gas": 425495, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x3625" + ] + }, + { + "pc": 13861, + "op": "JUMPDEST", + "gas": 425487, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80" + ] + }, + { + "pc": 13862, + "op": "PUSH1", + "gas": 425486, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80" + ] + }, + { + "pc": 13864, + "op": "DUP2", + "gas": 425483, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0" + ] + }, + { + "pc": 13865, + "op": "MLOAD", + "gas": 425480, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 13866, + "op": "PUSH1", + "gas": 425477, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4" + ] + }, + { + "pc": 13868, + "op": "LT", + "gas": 425474, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x0" + ] + }, + { + "pc": 13869, + "op": "PUSH2", + "gas": 425471, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 13872, + "op": "JUMPI", + "gas": 425468, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x1", + "0x3676" + ] + }, + { + "pc": 13942, + "op": "JUMPDEST", + "gas": 425458, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0" + ] + }, + { + "pc": 13943, + "op": "DUP2", + "gas": 425457, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0" + ] + }, + { + "pc": 13944, + "op": "MLOAD", + "gas": 425454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 13945, + "op": "PUSH1", + "gas": 425451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4" + ] + }, + { + "pc": 13947, + "op": "DUP2", + "gas": 425448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2" + ] + }, + { + "pc": 13948, + "op": "DIV", + "gas": 425445, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x4" + ] + }, + { + "pc": 13949, + "op": "PUSH1", + "gas": 425440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2" + ] + }, + { + "pc": 13951, + "op": "DUP3", + "gas": 425437, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x1" + ] + }, + { + "pc": 13952, + "op": "AND", + "gas": 425434, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x1", + "0x4" + ] + }, + { + "pc": 13953, + "op": "PUSH2", + "gas": 425431, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0" + ] + }, + { + "pc": 13956, + "op": "JUMPI", + "gas": 425428, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x36b5" + ] + }, + { + "pc": 13957, + "op": "PUSH1", + "gas": 425418, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2" + ] + }, + { + "pc": 13959, + "op": "DUP1", + "gas": 425415, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0" + ] + }, + { + "pc": 13960, + "op": "PUSH2", + "gas": 425412, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 13963, + "op": "DUP7", + "gas": 425409, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b" + ] + }, + { + "pc": 13964, + "op": "PUSH1", + "gas": 425406, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80" + ] + }, + { + "pc": 13966, + "op": "PUSH1", + "gas": 425403, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0" + ] + }, + { + "pc": 13968, + "op": "DUP8", + "gas": 425400, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 13969, + "op": "SUB", + "gas": 425397, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x1", + "0x4" + ] + }, + { + "pc": 13970, + "op": "PUSH1", + "gas": 425394, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3" + ] + }, + { + "pc": 13972, + "op": "DUP8", + "gas": 425391, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1" + ] + }, + { + "pc": 13973, + "op": "SUB", + "gas": 425388, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2" + ] + }, + { + "pc": 13974, + "op": "DUP8", + "gas": 425385, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1" + ] + }, + { + "pc": 13975, + "op": "PUSH2", + "gas": 425382, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2" + ] + }, + { + "pc": 13978, + "op": "JUMP", + "gas": 425379, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x3969" + ] + }, + { + "pc": 14697, + "op": "JUMPDEST", + "gas": 425371, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2" + ] + }, + { + "pc": 14698, + "op": "PUSH1", + "gas": 425370, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2" + ] + }, + { + "pc": 14700, + "op": "DUP1", + "gas": 425367, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0" + ] + }, + { + "pc": 14701, + "op": "DUP3", + "gas": 425364, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 14702, + "op": "DUP5", + "gas": 425361, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x2" + ] + }, + { + "pc": 14703, + "op": "LT", + "gas": 425358, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x2", + "0x1" + ] + }, + { + "pc": 14704, + "op": "PUSH2", + "gas": 425355, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 14707, + "op": "JUMPI", + "gas": 425352, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1", + "0x3978" + ] + }, + { + "pc": 14712, + "op": "JUMPDEST", + "gas": 425342, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 14713, + "op": "DUP4", + "gas": 425341, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 14714, + "op": "DUP7", + "gas": 425338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 14715, + "op": "GT", + "gas": 425335, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 14716, + "op": "ISZERO", + "gas": 425332, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 14717, + "op": "DUP1", + "gas": 425329, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 14718, + "op": "ISZERO", + "gas": 425326, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 14719, + "op": "PUSH2", + "gas": 425323, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 14722, + "op": "JUMPI", + "gas": 425320, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1", + "0x0", + "0x3988" + ] + }, + { + "pc": 14723, + "op": "POP", + "gas": 425310, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 14724, + "op": "DUP5", + "gas": 425308, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 14725, + "op": "DUP5", + "gas": 425305, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x3" + ] + }, + { + "pc": 14726, + "op": "GT", + "gas": 425302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x3", + "0x1" + ] + }, + { + "pc": 14727, + "op": "ISZERO", + "gas": 425299, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 14728, + "op": "JUMPDEST", + "gas": 425296, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 14729, + "op": "PUSH2", + "gas": 425295, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 14732, + "op": "JUMPI", + "gas": 425292, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1", + "0x3991" + ] + }, + { + "pc": 14737, + "op": "JUMPDEST", + "gas": 425282, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 14738, + "op": "DUP3", + "gas": 425281, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 14739, + "op": "DUP7", + "gas": 425278, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x2" + ] + }, + { + "pc": 14740, + "op": "GT", + "gas": 425275, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x2", + "0x0" + ] + }, + { + "pc": 14741, + "op": "ISZERO", + "gas": 425272, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 14742, + "op": "DUP1", + "gas": 425269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 14743, + "op": "ISZERO", + "gas": 425266, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 14744, + "op": "PUSH2", + "gas": 425263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 14747, + "op": "JUMPI", + "gas": 425260, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1", + "0x0", + "0x39a1" + ] + }, + { + "pc": 14748, + "op": "POP", + "gas": 425250, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 14749, + "op": "DUP5", + "gas": 425248, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 14750, + "op": "DUP4", + "gas": 425245, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x3" + ] + }, + { + "pc": 14751, + "op": "GT", + "gas": 425242, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x3", + "0x2" + ] + }, + { + "pc": 14752, + "op": "ISZERO", + "gas": 425239, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 14753, + "op": "JUMPDEST", + "gas": 425236, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 14754, + "op": "PUSH2", + "gas": 425235, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 14757, + "op": "JUMPI", + "gas": 425232, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1", + "0x39aa" + ] + }, + { + "pc": 14762, + "op": "JUMPDEST", + "gas": 425222, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 14763, + "op": "PUSH1", + "gas": 425221, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 14765, + "op": "DUP7", + "gas": 425218, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x7" + ] + }, + { + "pc": 14766, + "op": "DUP7", + "gas": 425215, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x7", + "0x0" + ] + }, + { + "pc": 14767, + "op": "SUB", + "gas": 425212, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x7", + "0x0", + "0x3" + ] + }, + { + "pc": 14768, + "op": "LT", + "gas": 425209, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x7", + "0x3" + ] + }, + { + "pc": 14769, + "op": "ISZERO", + "gas": 425206, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 14770, + "op": "PUSH2", + "gas": 425203, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 14773, + "op": "JUMPI", + "gas": 425200, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x0", + "0x39cb" + ] + }, + { + "pc": 14774, + "op": "PUSH2", + "gas": 425190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 14777, + "op": "DUP8", + "gas": 425187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2" + ] + }, + { + "pc": 14778, + "op": "DUP8", + "gas": 425184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80" + ] + }, + { + "pc": 14779, + "op": "DUP8", + "gas": 425181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0" + ] + }, + { + "pc": 14780, + "op": "DUP8", + "gas": 425178, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3" + ] + }, + { + "pc": 14781, + "op": "DUP8", + "gas": 425175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1" + ] + }, + { + "pc": 14782, + "op": "PUSH2", + "gas": 425172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2" + ] + }, + { + "pc": 14785, + "op": "JUMP", + "gas": 425169, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x3b46" + ] + }, + { + "pc": 15174, + "op": "JUMPDEST", + "gas": 425161, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2" + ] + }, + { + "pc": 15175, + "op": "PUSH1", + "gas": 425160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2" + ] + }, + { + "pc": 15177, + "op": "DUP1", + "gas": 425157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0" + ] + }, + { + "pc": 15178, + "op": "PUSH1", + "gas": 425154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 15180, + "op": "DUP7", + "gas": 425151, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 15181, + "op": "DUP7", + "gas": 425148, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 15182, + "op": "PUSH1", + "gas": 425145, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x0", + "0x0", + "0x3" + ] + }, + { + "pc": 15184, + "op": "ADD", + "gas": 425142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x0", + "0x0", + "0x3", + "0x1" + ] + }, + { + "pc": 15185, + "op": "SUB", + "gas": 425139, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4" + ] + }, + { + "pc": 15186, + "op": "SWAP1", + "gas": 425136, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x0", + "0x4" + ] + }, + { + "pc": 15187, + "op": "POP", + "gas": 425133, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0" + ] + }, + { + "pc": 15188, + "op": "PUSH1", + "gas": 425131, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4" + ] + }, + { + "pc": 15190, + "op": "DUP9", + "gas": 425128, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0" + ] + }, + { + "pc": 15191, + "op": "DUP9", + "gas": 425125, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80" + ] + }, + { + "pc": 15192, + "op": "PUSH1", + "gas": 425122, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15194, + "op": "ADD", + "gas": 425119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 15195, + "op": "DUP2", + "gas": 425116, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15196, + "op": "MLOAD", + "gas": 425113, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 15197, + "op": "DUP2", + "gas": 425110, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80", + "0x0", + "0x4" + ] + }, + { + "pc": 15198, + "op": "LT", + "gas": 425107, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80", + "0x0", + "0x4", + "0x0" + ] + }, + { + "pc": 15199, + "op": "PUSH2", + "gas": 425104, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 15202, + "op": "JUMPI", + "gas": 425101, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80", + "0x0", + "0x1", + "0x3b64" + ] + }, + { + "pc": 15204, + "op": "JUMPDEST", + "gas": 425091, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15205, + "op": "PUSH1", + "gas": 425090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15207, + "op": "MUL", + "gas": 425087, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 15208, + "op": "PUSH1", + "gas": 425082, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15210, + "op": "ADD", + "gas": 425079, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 15211, + "op": "ADD", + "gas": 425076, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x80", + "0x20" + ] + }, + { + "pc": 15212, + "op": "MLOAD", + "gas": 425073, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0xa0" + ] + }, + { + "pc": 15213, + "op": "SWAP1", + "gas": 425070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15214, + "op": "POP", + "gas": 425067, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 15215, + "op": "PUSH1", + "gas": 425065, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15217, + "op": "DUP3", + "gas": 425062, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 15218, + "op": "PUSH1", + "gas": 425059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x4" + ] + }, + { + "pc": 15220, + "op": "LT", + "gas": 425056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x1" + ] + }, + { + "pc": 15221, + "op": "PUSH2", + "gas": 425053, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x1" + ] + }, + { + "pc": 15224, + "op": "JUMPI", + "gas": 425050, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x1", + "0x3b85" + ] + }, + { + "pc": 15237, + "op": "JUMPDEST", + "gas": 425040, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 15238, + "op": "DUP10", + "gas": 425039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 15239, + "op": "DUP10", + "gas": 425036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80" + ] + }, + { + "pc": 15240, + "op": "PUSH1", + "gas": 425033, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15242, + "op": "ADD", + "gas": 425030, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 15243, + "op": "DUP2", + "gas": 425027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1" + ] + }, + { + "pc": 15244, + "op": "MLOAD", + "gas": 425024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x80" + ] + }, + { + "pc": 15245, + "op": "DUP2", + "gas": 425021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x4" + ] + }, + { + "pc": 15246, + "op": "LT", + "gas": 425018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x4", + "0x1" + ] + }, + { + "pc": 15247, + "op": "PUSH2", + "gas": 425015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x1" + ] + }, + { + "pc": 15250, + "op": "JUMPI", + "gas": 425012, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x1", + "0x3b94" + ] + }, + { + "pc": 15252, + "op": "JUMPDEST", + "gas": 425002, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1" + ] + }, + { + "pc": 15253, + "op": "PUSH1", + "gas": 425001, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1" + ] + }, + { + "pc": 15255, + "op": "MUL", + "gas": 424998, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x20" + ] + }, + { + "pc": 15256, + "op": "PUSH1", + "gas": 424993, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x20" + ] + }, + { + "pc": 15258, + "op": "ADD", + "gas": 424990, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 15259, + "op": "ADD", + "gas": 424987, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x40" + ] + }, + { + "pc": 15260, + "op": "MLOAD", + "gas": 424984, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0xc0" + ] + }, + { + "pc": 15261, + "op": "JUMPDEST", + "gas": 424981, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15262, + "op": "SWAP1", + "gas": 424980, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x0", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15263, + "op": "POP", + "gas": 424977, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0" + ] + }, + { + "pc": 15264, + "op": "PUSH1", + "gas": 424975, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15266, + "op": "DUP4", + "gas": 424972, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0" + ] + }, + { + "pc": 15267, + "op": "PUSH1", + "gas": 424969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x4" + ] + }, + { + "pc": 15269, + "op": "LT", + "gas": 424966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x4", + "0x2" + ] + }, + { + "pc": 15270, + "op": "PUSH2", + "gas": 424963, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x1" + ] + }, + { + "pc": 15273, + "op": "JUMPI", + "gas": 424960, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x1", + "0x3bb6" + ] + }, + { + "pc": 15286, + "op": "JUMPDEST", + "gas": 424950, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0" + ] + }, + { + "pc": 15287, + "op": "DUP11", + "gas": 424949, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0" + ] + }, + { + "pc": 15288, + "op": "DUP11", + "gas": 424946, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80" + ] + }, + { + "pc": 15289, + "op": "PUSH1", + "gas": 424943, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15291, + "op": "ADD", + "gas": 424940, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x0", + "0x2" + ] + }, + { + "pc": 15292, + "op": "DUP2", + "gas": 424937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2" + ] + }, + { + "pc": 15293, + "op": "MLOAD", + "gas": 424934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x80" + ] + }, + { + "pc": 15294, + "op": "DUP2", + "gas": 424931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x4" + ] + }, + { + "pc": 15295, + "op": "LT", + "gas": 424928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x4", + "0x2" + ] + }, + { + "pc": 15296, + "op": "PUSH2", + "gas": 424925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x1" + ] + }, + { + "pc": 15299, + "op": "JUMPI", + "gas": 424922, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x1", + "0x3bc5" + ] + }, + { + "pc": 15301, + "op": "JUMPDEST", + "gas": 424912, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2" + ] + }, + { + "pc": 15302, + "op": "PUSH1", + "gas": 424911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2" + ] + }, + { + "pc": 15304, + "op": "MUL", + "gas": 424908, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x20" + ] + }, + { + "pc": 15305, + "op": "PUSH1", + "gas": 424903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x40" + ] + }, + { + "pc": 15307, + "op": "ADD", + "gas": 424900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x40", + "0x20" + ] + }, + { + "pc": 15308, + "op": "ADD", + "gas": 424897, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x60" + ] + }, + { + "pc": 15309, + "op": "MLOAD", + "gas": 424894, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0xe0" + ] + }, + { + "pc": 15310, + "op": "JUMPDEST", + "gas": 424891, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15311, + "op": "SWAP1", + "gas": 424890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15312, + "op": "POP", + "gas": 424887, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0" + ] + }, + { + "pc": 15313, + "op": "PUSH1", + "gas": 424885, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15315, + "op": "DUP5", + "gas": 424882, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0" + ] + }, + { + "pc": 15316, + "op": "PUSH1", + "gas": 424879, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x4" + ] + }, + { + "pc": 15318, + "op": "LT", + "gas": 424876, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x4", + "0x3" + ] + }, + { + "pc": 15319, + "op": "PUSH2", + "gas": 424873, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x1" + ] + }, + { + "pc": 15322, + "op": "JUMPI", + "gas": 424870, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x1", + "0x3be7" + ] + }, + { + "pc": 15335, + "op": "JUMPDEST", + "gas": 424860, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0" + ] + }, + { + "pc": 15336, + "op": "DUP12", + "gas": 424859, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0" + ] + }, + { + "pc": 15337, + "op": "DUP12", + "gas": 424856, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80" + ] + }, + { + "pc": 15338, + "op": "PUSH1", + "gas": 424853, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15340, + "op": "ADD", + "gas": 424850, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x0", + "0x3" + ] + }, + { + "pc": 15341, + "op": "DUP2", + "gas": 424847, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3" + ] + }, + { + "pc": 15342, + "op": "MLOAD", + "gas": 424844, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3", + "0x80" + ] + }, + { + "pc": 15343, + "op": "DUP2", + "gas": 424841, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3", + "0x4" + ] + }, + { + "pc": 15344, + "op": "LT", + "gas": 424838, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3", + "0x4", + "0x3" + ] + }, + { + "pc": 15345, + "op": "PUSH2", + "gas": 424835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3", + "0x1" + ] + }, + { + "pc": 15348, + "op": "JUMPI", + "gas": 424832, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3", + "0x1", + "0x3bf6" + ] + }, + { + "pc": 15350, + "op": "JUMPDEST", + "gas": 424822, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3" + ] + }, + { + "pc": 15351, + "op": "PUSH1", + "gas": 424821, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3" + ] + }, + { + "pc": 15353, + "op": "MUL", + "gas": 424818, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3", + "0x20" + ] + }, + { + "pc": 15354, + "op": "PUSH1", + "gas": 424813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x60" + ] + }, + { + "pc": 15356, + "op": "ADD", + "gas": 424810, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x60", + "0x20" + ] + }, + { + "pc": 15357, + "op": "ADD", + "gas": 424807, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 15358, + "op": "MLOAD", + "gas": 424804, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x100" + ] + }, + { + "pc": 15359, + "op": "JUMPDEST", + "gas": 424801, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15360, + "op": "SWAP1", + "gas": 424800, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15361, + "op": "POP", + "gas": 424797, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 15362, + "op": "PUSH1", + "gas": 424795, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15364, + "op": "DUP6", + "gas": 424792, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 15365, + "op": "PUSH1", + "gas": 424789, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x4" + ] + }, + { + "pc": 15367, + "op": "LT", + "gas": 424786, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x4", + "0x4" + ] + }, + { + "pc": 15368, + "op": "PUSH2", + "gas": 424783, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x0" + ] + }, + { + "pc": 15371, + "op": "JUMPI", + "gas": 424780, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x3c18" + ] + }, + { + "pc": 15372, + "op": "PUSH1", + "gas": 424770, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 15374, + "op": "PUSH1", + "gas": 424767, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x1" + ] + }, + { + "pc": 15376, + "op": "PUSH1", + "gas": 424764, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 15378, + "op": "SHL", + "gas": 424761, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x1", + "0x1", + "0xff" + ] + }, + { + "pc": 15379, + "op": "SUB", + "gas": 424758, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x1", + "0x8000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 15380, + "op": "PUSH2", + "gas": 424755, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15383, + "op": "JUMP", + "gas": 424752, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x3c30" + ] + }, + { + "pc": 15408, + "op": "JUMPDEST", + "gas": 424744, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15409, + "op": "SWAP1", + "gas": 424743, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15410, + "op": "POP", + "gas": 424740, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15411, + "op": "PUSH1", + "gas": 424738, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15413, + "op": "DUP7", + "gas": 424735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15414, + "op": "PUSH1", + "gas": 424732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x4" + ] + }, + { + "pc": 15416, + "op": "LT", + "gas": 424729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x4", + "0x5" + ] + }, + { + "pc": 15417, + "op": "PUSH2", + "gas": 424726, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0" + ] + }, + { + "pc": 15420, + "op": "JUMPI", + "gas": 424723, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0", + "0x3c49" + ] + }, + { + "pc": 15421, + "op": "PUSH1", + "gas": 424713, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15423, + "op": "PUSH1", + "gas": 424710, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1" + ] + }, + { + "pc": 15425, + "op": "PUSH1", + "gas": 424707, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 15427, + "op": "SHL", + "gas": 424704, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x1", + "0xff" + ] + }, + { + "pc": 15428, + "op": "SUB", + "gas": 424701, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x8000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 15429, + "op": "PUSH2", + "gas": 424698, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15432, + "op": "JUMP", + "gas": 424695, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x3c61" + ] + }, + { + "pc": 15457, + "op": "JUMPDEST", + "gas": 424687, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15458, + "op": "SWAP1", + "gas": 424686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15459, + "op": "POP", + "gas": 424683, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15460, + "op": "PUSH1", + "gas": 424681, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15462, + "op": "DUP8", + "gas": 424678, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15463, + "op": "PUSH1", + "gas": 424675, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x4" + ] + }, + { + "pc": 15465, + "op": "LT", + "gas": 424672, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x4", + "0x6" + ] + }, + { + "pc": 15466, + "op": "PUSH2", + "gas": 424669, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0" + ] + }, + { + "pc": 15469, + "op": "JUMPI", + "gas": 424666, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0", + "0x3c7a" + ] + }, + { + "pc": 15470, + "op": "PUSH1", + "gas": 424656, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15472, + "op": "PUSH1", + "gas": 424653, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1" + ] + }, + { + "pc": 15474, + "op": "PUSH1", + "gas": 424650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 15476, + "op": "SHL", + "gas": 424647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x1", + "0xff" + ] + }, + { + "pc": 15477, + "op": "SUB", + "gas": 424644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x8000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 15478, + "op": "PUSH2", + "gas": 424641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15481, + "op": "JUMP", + "gas": 424638, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x3c92" + ] + }, + { + "pc": 15506, + "op": "JUMPDEST", + "gas": 424630, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15507, + "op": "SWAP1", + "gas": 424629, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15508, + "op": "POP", + "gas": 424626, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15509, + "op": "DUP6", + "gas": 424624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15510, + "op": "DUP8", + "gas": 424621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15511, + "op": "SGT", + "gas": 424618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15512, + "op": "ISZERO", + "gas": 424615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15513, + "op": "PUSH2", + "gas": 424612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15516, + "op": "JUMPI", + "gas": 424609, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3ca0" + ] + }, + { + "pc": 15520, + "op": "JUMPDEST", + "gas": 424599, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15521, + "op": "DUP4", + "gas": 424598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15522, + "op": "DUP6", + "gas": 424595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15523, + "op": "SGT", + "gas": 424592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15524, + "op": "ISZERO", + "gas": 424589, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15525, + "op": "PUSH2", + "gas": 424586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15528, + "op": "JUMPI", + "gas": 424583, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cac" + ] + }, + { + "pc": 15532, + "op": "JUMPDEST", + "gas": 424573, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15533, + "op": "DUP2", + "gas": 424572, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15534, + "op": "DUP4", + "gas": 424569, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15535, + "op": "SGT", + "gas": 424566, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15536, + "op": "ISZERO", + "gas": 424563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15537, + "op": "PUSH2", + "gas": 424560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15540, + "op": "JUMPI", + "gas": 424557, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cb8" + ] + }, + { + "pc": 15544, + "op": "JUMPDEST", + "gas": 424547, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15545, + "op": "DUP5", + "gas": 424546, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15546, + "op": "DUP8", + "gas": 424543, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15547, + "op": "SGT", + "gas": 424540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15548, + "op": "ISZERO", + "gas": 424537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15549, + "op": "PUSH2", + "gas": 424534, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15552, + "op": "JUMPI", + "gas": 424531, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3cc4" + ] + }, + { + "pc": 15553, + "op": "SWAP4", + "gas": 424521, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15554, + "op": "SWAP6", + "gas": 424518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15555, + "op": "SWAP4", + "gas": 424515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15556, + "op": "JUMPDEST", + "gas": 424512, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15557, + "op": "DUP4", + "gas": 424511, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15558, + "op": "DUP7", + "gas": 424508, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15559, + "op": "SGT", + "gas": 424505, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15560, + "op": "ISZERO", + "gas": 424502, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15561, + "op": "PUSH2", + "gas": 424499, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15564, + "op": "JUMPI", + "gas": 424496, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3cd0" + ] + }, + { + "pc": 15565, + "op": "SWAP3", + "gas": 424486, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15566, + "op": "SWAP5", + "gas": 424483, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15567, + "op": "SWAP3", + "gas": 424480, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15568, + "op": "JUMPDEST", + "gas": 424477, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15569, + "op": "DUP1", + "gas": 424476, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15570, + "op": "DUP4", + "gas": 424473, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15571, + "op": "SGT", + "gas": 424470, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15572, + "op": "ISZERO", + "gas": 424467, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15573, + "op": "PUSH2", + "gas": 424464, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15576, + "op": "JUMPI", + "gas": 424461, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cda" + ] + }, + { + "pc": 15578, + "op": "JUMPDEST", + "gas": 424451, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15579, + "op": "DUP5", + "gas": 424450, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15580, + "op": "DUP7", + "gas": 424447, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15581, + "op": "SGT", + "gas": 424444, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15582, + "op": "ISZERO", + "gas": 424441, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15583, + "op": "PUSH2", + "gas": 424438, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15586, + "op": "JUMPI", + "gas": 424435, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3ce6" + ] + }, + { + "pc": 15587, + "op": "SWAP4", + "gas": 424425, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15588, + "op": "SWAP5", + "gas": 424422, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15589, + "op": "SWAP4", + "gas": 424419, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15590, + "op": "JUMPDEST", + "gas": 424416, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15591, + "op": "DUP1", + "gas": 424415, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15592, + "op": "DUP3", + "gas": 424412, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15593, + "op": "SGT", + "gas": 424409, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15594, + "op": "ISZERO", + "gas": 424406, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15595, + "op": "PUSH2", + "gas": 424403, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15598, + "op": "JUMPI", + "gas": 424400, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cf0" + ] + }, + { + "pc": 15600, + "op": "JUMPDEST", + "gas": 424390, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15601, + "op": "DUP3", + "gas": 424389, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15602, + "op": "DUP8", + "gas": 424386, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15603, + "op": "SGT", + "gas": 424383, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15604, + "op": "ISZERO", + "gas": 424380, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15605, + "op": "PUSH2", + "gas": 424377, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15608, + "op": "JUMPI", + "gas": 424374, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cfc" + ] + }, + { + "pc": 15612, + "op": "JUMPDEST", + "gas": 424364, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15613, + "op": "DUP2", + "gas": 424363, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15614, + "op": "DUP7", + "gas": 424360, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15615, + "op": "SGT", + "gas": 424357, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15616, + "op": "ISZERO", + "gas": 424354, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15617, + "op": "PUSH2", + "gas": 424351, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15620, + "op": "JUMPI", + "gas": 424348, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d08" + ] + }, + { + "pc": 15624, + "op": "JUMPDEST", + "gas": 424338, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15625, + "op": "DUP1", + "gas": 424337, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15626, + "op": "DUP6", + "gas": 424334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15627, + "op": "SGT", + "gas": 424331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15628, + "op": "ISZERO", + "gas": 424328, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15629, + "op": "PUSH2", + "gas": 424325, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15632, + "op": "JUMPI", + "gas": 424322, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d12" + ] + }, + { + "pc": 15634, + "op": "JUMPDEST", + "gas": 424312, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15635, + "op": "DUP3", + "gas": 424311, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15636, + "op": "DUP7", + "gas": 424308, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15637, + "op": "SGT", + "gas": 424305, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15638, + "op": "ISZERO", + "gas": 424302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15639, + "op": "PUSH2", + "gas": 424299, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15642, + "op": "JUMPI", + "gas": 424296, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d1e" + ] + }, + { + "pc": 15646, + "op": "JUMPDEST", + "gas": 424286, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15647, + "op": "DUP1", + "gas": 424285, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15648, + "op": "DUP5", + "gas": 424282, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15649, + "op": "SGT", + "gas": 424279, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15650, + "op": "ISZERO", + "gas": 424276, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15651, + "op": "PUSH2", + "gas": 424273, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15654, + "op": "JUMPI", + "gas": 424270, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d28" + ] + }, + { + "pc": 15656, + "op": "JUMPDEST", + "gas": 424260, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15657, + "op": "DUP3", + "gas": 424259, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15658, + "op": "DUP6", + "gas": 424256, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15659, + "op": "SGT", + "gas": 424253, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15660, + "op": "ISZERO", + "gas": 424250, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15661, + "op": "PUSH2", + "gas": 424247, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15664, + "op": "JUMPI", + "gas": 424244, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d34" + ] + }, + { + "pc": 15668, + "op": "JUMPDEST", + "gas": 424234, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15669, + "op": "DUP2", + "gas": 424233, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15670, + "op": "DUP5", + "gas": 424230, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15671, + "op": "SGT", + "gas": 424227, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15672, + "op": "ISZERO", + "gas": 424224, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15673, + "op": "PUSH2", + "gas": 424221, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15676, + "op": "JUMPI", + "gas": 424218, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d40" + ] + }, + { + "pc": 15680, + "op": "JUMPDEST", + "gas": 424208, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15681, + "op": "DUP3", + "gas": 424207, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15682, + "op": "DUP5", + "gas": 424204, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15683, + "op": "SGT", + "gas": 424201, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15684, + "op": "ISZERO", + "gas": 424198, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15685, + "op": "PUSH2", + "gas": 424195, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15688, + "op": "JUMPI", + "gas": 424192, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d4c" + ] + }, + { + "pc": 15692, + "op": "JUMPDEST", + "gas": 424182, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15693, + "op": "DUP14", + "gas": 424181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15694, + "op": "DUP13", + "gas": 424178, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15695, + "op": "SUB", + "gas": 424175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1" + ] + }, + { + "pc": 15696, + "op": "DUP1", + "gas": 424172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15697, + "op": "PUSH2", + "gas": 424169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1" + ] + }, + { + "pc": 15700, + "op": "JUMPI", + "gas": 424166, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1", + "0x3d5c" + ] + }, + { + "pc": 15708, + "op": "JUMPDEST", + "gas": 424156, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15709, + "op": "DUP1", + "gas": 424155, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15710, + "op": "PUSH1", + "gas": 424152, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1" + ] + }, + { + "pc": 15712, + "op": "EQ", + "gas": 424149, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1", + "0x1" + ] + }, + { + "pc": 15713, + "op": "ISZERO", + "gas": 424146, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x1" + ] + }, + { + "pc": 15714, + "op": "PUSH2", + "gas": 424143, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x0" + ] + }, + { + "pc": 15717, + "op": "JUMPI", + "gas": 424140, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x0", + "0x3d6d" + ] + }, + { + "pc": 15718, + "op": "DUP7", + "gas": 424130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15719, + "op": "SWAP11", + "gas": 424127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15720, + "op": "POP", + "gas": 424124, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x0" + ] + }, + { + "pc": 15721, + "op": "PUSH2", + "gas": 424122, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15724, + "op": "JUMP", + "gas": 424119, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3e02" + ] + }, + { + "pc": 15874, + "op": "JUMPDEST", + "gas": 424111, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15875, + "op": "DUP15", + "gas": 424110, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15876, + "op": "DUP13", + "gas": 424107, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x0" + ] + }, + { + "pc": 15877, + "op": "SUB", + "gas": 424104, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x0", + "0x2" + ] + }, + { + "pc": 15878, + "op": "DUP14", + "gas": 424101, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2" + ] + }, + { + "pc": 15879, + "op": "DUP14", + "gas": 424098, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x1" + ] + }, + { + "pc": 15880, + "op": "EQ", + "gas": 424095, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x1", + "0x2" + ] + }, + { + "pc": 15881, + "op": "ISZERO", + "gas": 424092, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x0" + ] + }, + { + "pc": 15882, + "op": "PUSH2", + "gas": 424089, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x1" + ] + }, + { + "pc": 15885, + "op": "JUMPI", + "gas": 424086, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x1", + "0x3e20" + ] + }, + { + "pc": 15904, + "op": "JUMPDEST", + "gas": 424076, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2" + ] + }, + { + "pc": 15905, + "op": "DUP1", + "gas": 424075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2" + ] + }, + { + "pc": 15906, + "op": "PUSH2", + "gas": 424072, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x2" + ] + }, + { + "pc": 15909, + "op": "JUMPI", + "gas": 424069, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x2", + "0x3e37" + ] + }, + { + "pc": 15927, + "op": "JUMPDEST", + "gas": 424059, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2" + ] + }, + { + "pc": 15928, + "op": "DUP1", + "gas": 424058, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2" + ] + }, + { + "pc": 15929, + "op": "PUSH1", + "gas": 424055, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x2" + ] + }, + { + "pc": 15931, + "op": "EQ", + "gas": 424052, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x2", + "0x1" + ] + }, + { + "pc": 15932, + "op": "ISZERO", + "gas": 424049, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x0" + ] + }, + { + "pc": 15933, + "op": "PUSH2", + "gas": 424046, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x1" + ] + }, + { + "pc": 15936, + "op": "JUMPI", + "gas": 424043, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x1", + "0x3e52" + ] + }, + { + "pc": 15954, + "op": "JUMPDEST", + "gas": 424033, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2" + ] + }, + { + "pc": 15955, + "op": "DUP1", + "gas": 424032, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2" + ] + }, + { + "pc": 15956, + "op": "PUSH1", + "gas": 424029, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x2" + ] + }, + { + "pc": 15958, + "op": "EQ", + "gas": 424026, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x2", + "0x2" + ] + }, + { + "pc": 15959, + "op": "ISZERO", + "gas": 424023, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x1" + ] + }, + { + "pc": 15960, + "op": "PUSH2", + "gas": 424020, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x0" + ] + }, + { + "pc": 15963, + "op": "JUMPI", + "gas": 424017, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2", + "0x0", + "0x3e6d" + ] + }, + { + "pc": 15964, + "op": "POP", + "gas": 424007, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x2" + ] + }, + { + "pc": 15965, + "op": "SWAP5", + "gas": 424005, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15966, + "op": "SWAP9", + "gas": 424002, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x1", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15967, + "op": "POP", + "gas": 423999, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x1", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15968, + "op": "PUSH2", + "gas": 423997, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x1", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15971, + "op": "SWAP8", + "gas": 423994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x4", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x1", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x3a3d" + ] + }, + { + "pc": 15972, + "op": "POP", + "gas": 423991, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x1", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4" + ] + }, + { + "pc": 15973, + "op": "POP", + "gas": 423989, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x1", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15974, + "op": "POP", + "gas": 423987, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x1", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15975, + "op": "POP", + "gas": 423985, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x1", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15976, + "op": "POP", + "gas": 423983, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x1", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15977, + "op": "POP", + "gas": 423981, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x1" + ] + }, + { + "pc": 15978, + "op": "POP", + "gas": 423979, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15979, + "op": "POP", + "gas": 423977, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x3a3d", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15980, + "op": "JUMP", + "gas": 423975, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x3a3d" + ] + }, + { + "pc": 14909, + "op": "JUMPDEST", + "gas": 423967, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 14910, + "op": "SWAP6", + "gas": 423966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 14911, + "op": "POP", + "gas": 423963, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x41f53671b4af058000", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x80" + ] + }, + { + "pc": 14912, + "op": "SWAP6", + "gas": 423961, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x39c2", + "0x41f53671b4af058000", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 14913, + "op": "SWAP4", + "gas": 423958, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x3", + "0x1", + "0x2", + "0x39c2" + ] + }, + { + "pc": 14914, + "op": "POP", + "gas": 423955, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x39c2", + "0x3", + "0x1", + "0x2", + "0x0" + ] + }, + { + "pc": 14915, + "op": "POP", + "gas": 423953, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x39c2", + "0x3", + "0x1", + "0x2" + ] + }, + { + "pc": 14916, + "op": "POP", + "gas": 423951, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x39c2", + "0x3", + "0x1" + ] + }, + { + "pc": 14917, + "op": "POP", + "gas": 423949, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x39c2", + "0x3" + ] + }, + { + "pc": 14918, + "op": "JUMP", + "gas": 423947, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x39c2" + ] + }, + { + "pc": 14786, + "op": "JUMPDEST", + "gas": 423939, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 14787, + "op": "SWAP2", + "gas": 423938, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 14788, + "op": "POP", + "gas": 423935, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 14789, + "op": "SWAP2", + "gas": 423933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x0", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 14790, + "op": "POP", + "gas": 423930, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 14791, + "op": "PUSH2", + "gas": 423928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 14794, + "op": "JUMP", + "gas": 423925, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x3a3d" + ] + }, + { + "pc": 14909, + "op": "JUMPDEST", + "gas": 423917, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 14910, + "op": "SWAP6", + "gas": 423916, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x80", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 14911, + "op": "POP", + "gas": 423913, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x41f53671b4af058000", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280", + "0x80" + ] + }, + { + "pc": 14912, + "op": "SWAP6", + "gas": 423911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x369b", + "0x41f53671b4af058000", + "0x0", + "0x3", + "0x1", + "0x2", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 14913, + "op": "SWAP4", + "gas": 423908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x3", + "0x1", + "0x2", + "0x369b" + ] + }, + { + "pc": 14914, + "op": "POP", + "gas": 423905, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x369b", + "0x3", + "0x1", + "0x2", + "0x0" + ] + }, + { + "pc": 14915, + "op": "POP", + "gas": 423903, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x369b", + "0x3", + "0x1", + "0x2" + ] + }, + { + "pc": 14916, + "op": "POP", + "gas": 423901, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x369b", + "0x3", + "0x1" + ] + }, + { + "pc": 14917, + "op": "POP", + "gas": 423899, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x369b", + "0x3" + ] + }, + { + "pc": 14918, + "op": "JUMP", + "gas": 423897, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x369b" + ] + }, + { + "pc": 13979, + "op": "JUMPDEST", + "gas": 423889, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 13980, + "op": "SWAP1", + "gas": 423888, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 13981, + "op": "SWAP3", + "gas": 423885, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 13982, + "op": "POP", + "gas": 423882, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 13983, + "op": "SWAP1", + "gas": 423880, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x0", + "0x41f53671b4af058000" + ] + }, + { + "pc": 13984, + "op": "POP", + "gas": 423877, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 13985, + "op": "PUSH2", + "gas": 423875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 13988, + "op": "DUP3", + "gas": 423872, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa" + ] + }, + { + "pc": 13989, + "op": "DUP3", + "gas": 423869, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 13990, + "op": "PUSH2", + "gas": 423866, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 13993, + "op": "JUMP", + "gas": 423863, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x3a47" + ] + }, + { + "pc": 14919, + "op": "JUMPDEST", + "gas": 423855, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 14920, + "op": "PUSH1", + "gas": 423854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 14922, + "op": "DUP1", + "gas": 423851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 14923, + "op": "DUP4", + "gas": 423848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0" + ] + }, + { + "pc": 14924, + "op": "SLT", + "gas": 423845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 14925, + "op": "DUP1", + "gas": 423842, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0" + ] + }, + { + "pc": 14926, + "op": "ISZERO", + "gas": 423839, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 14927, + "op": "PUSH2", + "gas": 423836, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 14930, + "op": "JUMPI", + "gas": 423833, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x1", + "0x3a58" + ] + }, + { + "pc": 14936, + "op": "JUMPDEST", + "gas": 423823, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0" + ] + }, + { + "pc": 14937, + "op": "DUP1", + "gas": 423822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0" + ] + }, + { + "pc": 14938, + "op": "PUSH2", + "gas": 423819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 14941, + "op": "JUMPI", + "gas": 423816, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x0", + "0x3a6e" + ] + }, + { + "pc": 14942, + "op": "POP", + "gas": 423806, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0" + ] + }, + { + "pc": 14943, + "op": "PUSH1", + "gas": 423804, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 14945, + "op": "DUP4", + "gas": 423801, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0" + ] + }, + { + "pc": 14946, + "op": "SGT", + "gas": 423798, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 14947, + "op": "DUP1", + "gas": 423795, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x1" + ] + }, + { + "pc": 14948, + "op": "ISZERO", + "gas": 423792, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 14949, + "op": "PUSH2", + "gas": 423789, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 14952, + "op": "JUMPI", + "gas": 423786, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x1", + "0x0", + "0x3a6e" + ] + }, + { + "pc": 14953, + "op": "POP", + "gas": 423776, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x1" + ] + }, + { + "pc": 14954, + "op": "PUSH1", + "gas": 423774, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 14956, + "op": "DUP3", + "gas": 423771, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0" + ] + }, + { + "pc": 14957, + "op": "SLT", + "gas": 423768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x41f53671b4af058000" + ] + }, + { + "pc": 14958, + "op": "JUMPDEST", + "gas": 423765, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0" + ] + }, + { + "pc": 14959, + "op": "ISZERO", + "gas": 423764, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0" + ] + }, + { + "pc": 14960, + "op": "PUSH2", + "gas": 423761, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x1" + ] + }, + { + "pc": 14963, + "op": "JUMPI", + "gas": 423758, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x1", + "0x3a8e" + ] + }, + { + "pc": 14990, + "op": "JUMPDEST", + "gas": 423748, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 14991, + "op": "PUSH1", + "gas": 423747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 14993, + "op": "PUSH1", + "gas": 423744, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0" + ] + }, + { + "pc": 14995, + "op": "DUP1", + "gas": 423741, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x2" + ] + }, + { + "pc": 14996, + "op": "DUP6", + "gas": 423738, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x2", + "0x2" + ] + }, + { + "pc": 14997, + "op": "SMOD", + "gas": 423735, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x2", + "0x2", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 14998, + "op": "DUP2", + "gas": 423730, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x2", + "0x0" + ] + }, + { + "pc": 14999, + "op": "DUP6", + "gas": 423727, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x2", + "0x0", + "0x2" + ] + }, + { + "pc": 15000, + "op": "SMOD", + "gas": 423724, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x2", + "0x0", + "0x2", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15001, + "op": "ADD", + "gas": 423719, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 15002, + "op": "SDIV", + "gas": 423716, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x2", + "0x0" + ] + }, + { + "pc": 15003, + "op": "SWAP1", + "gas": 423711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 15004, + "op": "POP", + "gas": 423708, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 15005, + "op": "PUSH2", + "gas": 423706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0" + ] + }, + { + "pc": 15008, + "op": "PUSH2", + "gas": 423703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3" + ] + }, + { + "pc": 15011, + "op": "PUSH1", + "gas": 423700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf" + ] + }, + { + "pc": 15013, + "op": "DUP7", + "gas": 423697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x2" + ] + }, + { + "pc": 15014, + "op": "SDIV", + "gas": 423694, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x2", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15015, + "op": "PUSH1", + "gas": 423689, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940" + ] + }, + { + "pc": 15017, + "op": "DUP7", + "gas": 423686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x2" + ] + }, + { + "pc": 15018, + "op": "SDIV", + "gas": 423683, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x2", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15019, + "op": "PUSH2", + "gas": 423678, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000" + ] + }, + { + "pc": 15022, + "op": "JUMP", + "gas": 423675, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x3ff6" + ] + }, + { + "pc": 16374, + "op": "JUMPDEST", + "gas": 423667, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000" + ] + }, + { + "pc": 16375, + "op": "PUSH1", + "gas": 423666, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000" + ] + }, + { + "pc": 16377, + "op": "DUP3", + "gas": 423663, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0" + ] + }, + { + "pc": 16378, + "op": "DUP3", + "gas": 423660, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x20f71f0b8d7516b940" + ] + }, + { + "pc": 16379, + "op": "ADD", + "gas": 423657, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000" + ] + }, + { + "pc": 16380, + "op": "DUP2", + "gas": 423654, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 16381, + "op": "DUP4", + "gas": 423651, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 16382, + "op": "SLT", + "gas": 423648, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x0", + "0x20fa9b38da5782c000" + ] + }, + { + "pc": 16383, + "op": "DUP1", + "gas": 423645, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 16384, + "op": "ISZERO", + "gas": 423642, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x0", + "0x0" + ] + }, + { + "pc": 16385, + "op": "SWAP1", + "gas": 423639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x0", + "0x1" + ] + }, + { + "pc": 16386, + "op": "PUSH2", + "gas": 423636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x1", + "0x0" + ] + }, + { + "pc": 16389, + "op": "JUMPI", + "gas": 423633, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x1", + "0x0", + "0x400b" + ] + }, + { + "pc": 16390, + "op": "POP", + "gas": 423623, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x1" + ] + }, + { + "pc": 16391, + "op": "DUP4", + "gas": 423621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 16392, + "op": "DUP2", + "gas": 423618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x20f71f0b8d7516b940" + ] + }, + { + "pc": 16393, + "op": "SLT", + "gas": 423615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x20f71f0b8d7516b940", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 16394, + "op": "ISZERO", + "gas": 423612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 16395, + "op": "JUMPDEST", + "gas": 423609, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x1" + ] + }, + { + "pc": 16396, + "op": "DUP1", + "gas": 423608, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x1" + ] + }, + { + "pc": 16397, + "op": "PUSH2", + "gas": 423605, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x1", + "0x1" + ] + }, + { + "pc": 16400, + "op": "JUMPI", + "gas": 423602, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x1", + "0x1", + "0x4020" + ] + }, + { + "pc": 16416, + "op": "JUMPDEST", + "gas": 423592, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x1" + ] + }, + { + "pc": 16417, + "op": "PUSH2", + "gas": 423591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x1" + ] + }, + { + "pc": 16420, + "op": "JUMPI", + "gas": 423588, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940", + "0x1", + "0x2bf3" + ] + }, + { + "pc": 11251, + "op": "JUMPDEST", + "gas": 423578, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 11252, + "op": "SWAP4", + "gas": 423577, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x3aaf", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 11253, + "op": "SWAP3", + "gas": 423574, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x20f71f0b8d7516b940", + "0x20fa9b38da5782c000", + "0x0", + "0x3aaf" + ] + }, + { + "pc": 11254, + "op": "POP", + "gas": 423571, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x3aaf", + "0x20fa9b38da5782c000", + "0x0", + "0x20f71f0b8d7516b940" + ] + }, + { + "pc": 11255, + "op": "POP", + "gas": 423569, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x3aaf", + "0x20fa9b38da5782c000", + "0x0" + ] + }, + { + "pc": 11256, + "op": "POP", + "gas": 423567, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x3aaf", + "0x20fa9b38da5782c000" + ] + }, + { + "pc": 11257, + "op": "JUMP", + "gas": 423565, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x3aaf" + ] + }, + { + "pc": 15023, + "op": "JUMPDEST", + "gas": 423557, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 15024, + "op": "DUP3", + "gas": 423556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 15025, + "op": "PUSH2", + "gas": 423553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 15028, + "op": "JUMP", + "gas": 423550, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x3ff6" + ] + }, + { + "pc": 16374, + "op": "JUMPDEST", + "gas": 423542, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 16375, + "op": "PUSH1", + "gas": 423541, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 16377, + "op": "DUP3", + "gas": 423538, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0" + ] + }, + { + "pc": 16378, + "op": "DUP3", + "gas": 423535, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 16379, + "op": "ADD", + "gas": 423532, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 16380, + "op": "DUP2", + "gas": 423529, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 16381, + "op": "DUP4", + "gas": 423526, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 16382, + "op": "SLT", + "gas": 423523, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x0", + "0x0" + ] + }, + { + "pc": 16383, + "op": "DUP1", + "gas": 423520, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 16384, + "op": "ISZERO", + "gas": 423517, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x0", + "0x0" + ] + }, + { + "pc": 16385, + "op": "SWAP1", + "gas": 423514, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x0", + "0x1" + ] + }, + { + "pc": 16386, + "op": "PUSH2", + "gas": 423511, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x1", + "0x0" + ] + }, + { + "pc": 16389, + "op": "JUMPI", + "gas": 423508, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x1", + "0x0", + "0x400b" + ] + }, + { + "pc": 16390, + "op": "POP", + "gas": 423498, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x1" + ] + }, + { + "pc": 16391, + "op": "DUP4", + "gas": 423496, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 16392, + "op": "DUP2", + "gas": 423493, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 16393, + "op": "SLT", + "gas": 423490, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x41f1ba4467cc997940", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 16394, + "op": "ISZERO", + "gas": 423487, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 16395, + "op": "JUMPDEST", + "gas": 423484, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x1" + ] + }, + { + "pc": 16396, + "op": "DUP1", + "gas": 423483, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x1" + ] + }, + { + "pc": 16397, + "op": "PUSH2", + "gas": 423480, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x1", + "0x1" + ] + }, + { + "pc": 16400, + "op": "JUMPI", + "gas": 423477, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x1", + "0x1", + "0x4020" + ] + }, + { + "pc": 16416, + "op": "JUMPDEST", + "gas": 423467, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x1" + ] + }, + { + "pc": 16417, + "op": "PUSH2", + "gas": 423466, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x1" + ] + }, + { + "pc": 16420, + "op": "JUMPI", + "gas": 423463, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x1", + "0x2bf3" + ] + }, + { + "pc": 11251, + "op": "JUMPDEST", + "gas": 423453, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 11252, + "op": "SWAP4", + "gas": 423452, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x31f3", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 11253, + "op": "SWAP3", + "gas": 423449, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x31f3" + ] + }, + { + "pc": 11254, + "op": "POP", + "gas": 423446, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x31f3", + "0x0", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 11255, + "op": "POP", + "gas": 423444, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x31f3", + "0x0", + "0x0" + ] + }, + { + "pc": 11256, + "op": "POP", + "gas": 423442, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x31f3", + "0x0" + ] + }, + { + "pc": 11257, + "op": "JUMP", + "gas": 423440, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x31f3" + ] + }, + { + "pc": 12787, + "op": "JUMPDEST", + "gas": 423432, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 12788, + "op": "SWAP5", + "gas": 423431, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x36aa", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 12789, + "op": "SWAP4", + "gas": 423428, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1ba4467cc997940", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x36aa" + ] + }, + { + "pc": 12790, + "op": "POP", + "gas": 423425, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1ba4467cc997940", + "0x36aa", + "0x41f53671b4af058000", + "0x0", + "0x0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 12791, + "op": "POP", + "gas": 423423, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1ba4467cc997940", + "0x36aa", + "0x41f53671b4af058000", + "0x0", + "0x0" + ] + }, + { + "pc": 12792, + "op": "POP", + "gas": 423421, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1ba4467cc997940", + "0x36aa", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 12793, + "op": "POP", + "gas": 423419, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1ba4467cc997940", + "0x36aa", + "0x41f53671b4af058000" + ] + }, + { + "pc": 12794, + "op": "JUMP", + "gas": 423417, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1ba4467cc997940", + "0x36aa" + ] + }, + { + "pc": 13994, + "op": "JUMPDEST", + "gas": 423409, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 13995, + "op": "SWAP5", + "gas": 423408, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 13996, + "op": "POP", + "gas": 423405, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1ba4467cc997940", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 13997, + "op": "POP", + "gas": 423403, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1ba4467cc997940", + "0x4", + "0x2", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 13998, + "op": "POP", + "gas": 423401, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1ba4467cc997940", + "0x4", + "0x2", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 13999, + "op": "POP", + "gas": 423399, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1ba4467cc997940", + "0x4", + "0x2" + ] + }, + { + "pc": 14000, + "op": "POP", + "gas": 423397, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1ba4467cc997940", + "0x4" + ] + }, + { + "pc": 14001, + "op": "PUSH2", + "gas": 423395, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 14004, + "op": "JUMP", + "gas": 423392, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1ba4467cc997940", + "0x1787" + ] + }, + { + "pc": 6023, + "op": "JUMPDEST", + "gas": 423384, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 6024, + "op": "SWAP2", + "gas": 423383, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 6025, + "op": "SWAP1", + "gas": 423380, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x80", + "0x265d" + ] + }, + { + "pc": 6026, + "op": "POP", + "gas": 423377, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x265d", + "0x80" + ] + }, + { + "pc": 6027, + "op": "JUMP", + "gas": 423375, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x265d" + ] + }, + { + "pc": 9821, + "op": "JUMPDEST", + "gas": 423367, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 9822, + "op": "PUSH4", + "gas": 423366, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 9827, + "op": "DUP6", + "gas": 423363, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0xffffffff" + ] + }, + { + "pc": 9828, + "op": "AND", + "gas": 423360, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9829, + "op": "PUSH1", + "gas": 423357, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e" + ] + }, + { + "pc": 9831, + "op": "DUP2", + "gas": 423354, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x0" + ] + }, + { + "pc": 9832, + "op": "DUP2", + "gas": 423351, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x0", + "0x305e" + ] + }, + { + "pc": 9833, + "op": "MSTORE", + "gas": 423348, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9834, + "op": "PUSH1", + "gas": 423345, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x0" + ] + }, + { + "pc": 9836, + "op": "PUSH1", + "gas": 423342, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x0", + "0x9" + ] + }, + { + "pc": 9838, + "op": "SWAP1", + "gas": 423339, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x0", + "0x9", + "0x20" + ] + }, + { + "pc": 9839, + "op": "DUP2", + "gas": 423336, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x0", + "0x20", + "0x9" + ] + }, + { + "pc": 9840, + "op": "MSTORE", + "gas": 423333, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x0", + "0x20", + "0x9", + "0x20" + ] + }, + { + "pc": 9841, + "op": "PUSH1", + "gas": 423330, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x0", + "0x20" + ] + }, + { + "pc": 9843, + "op": "SWAP2", + "gas": 423327, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x0", + "0x20", + "0x40" + ] + }, + { + "pc": 9844, + "op": "DUP3", + "gas": 423324, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x0" + ] + }, + { + "pc": 9845, + "op": "SWAP1", + "gas": 423321, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x0", + "0x40" + ] + }, + { + "pc": 9846, + "op": "KECCAK256", + "gas": 423318, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x40", + "0x0" + ] + }, + { + "pc": 9847, + "op": "DUP5", + "gas": 423276, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f" + ] + }, + { + "pc": 9848, + "op": "DUP2", + "gas": 423273, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 9849, + "op": "SSTORE", + "gas": 423270, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f", + "0x41f1ba4467cc997940", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9850, + "op": "PUSH1", + "gas": 418270, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f" + ] + }, + { + "pc": 9852, + "op": "ADD", + "gas": 418267, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f", + "0x1" + ] + }, + { + "pc": 9853, + "op": "DUP1", + "gas": 418264, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260" + ] + }, + { + "pc": 9854, + "op": "SLOAD", + "gas": 418261, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9855, + "op": "PUSH8", + "gas": 417461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e00000000689d90e400000000689d90e2" + ] + }, + { + "pc": 9864, + "op": "PUSH1", + "gas": 417458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffffffffffff" + ] + }, + { + "pc": 9866, + "op": "SHL", + "gas": 417455, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffffffffffff", + "0x40" + ] + }, + { + "pc": 9867, + "op": "NOT", + "gas": 417452, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffffffffffff0000000000000000" + ] + }, + { + "pc": 9868, + "op": "AND", + "gas": 417449, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" + ] + }, + { + "pc": 9869, + "op": "PUSH1", + "gas": 417446, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2" + ] + }, + { + "pc": 9871, + "op": "PUSH1", + "gas": 417443, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x1" + ] + }, + { + "pc": 9873, + "op": "SHL", + "gas": 417440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x1", + "0x40" + ] + }, + { + "pc": 9874, + "op": "TIMESTAMP", + "gas": 417437, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000" + ] + }, + { + "pc": 9875, + "op": "PUSH1", + "gas": 417435, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4" + ] + }, + { + "pc": 9877, + "op": "PUSH1", + "gas": 417432, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x1" + ] + }, + { + "pc": 9879, + "op": "PUSH1", + "gas": 417429, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x1", + "0x1" + ] + }, + { + "pc": 9881, + "op": "SHL", + "gas": 417426, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x1", + "0x1", + "0x40" + ] + }, + { + "pc": 9882, + "op": "SUB", + "gas": 417423, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x1", + "0x10000000000000000" + ] + }, + { + "pc": 9883, + "op": "DUP2", + "gas": 417420, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0xffffffffffffffff" + ] + }, + { + "pc": 9884, + "op": "AND", + "gas": 417417, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0xffffffffffffffff", + "0x689d90e4" + ] + }, + { + "pc": 9885, + "op": "SWAP2", + "gas": 417414, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x689d90e4" + ] + }, + { + "pc": 9886, + "op": "SWAP1", + "gas": 417411, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x689d90e4", + "0x689d90e4", + "0x10000000000000000" + ] + }, + { + "pc": 9887, + "op": "SWAP2", + "gas": 417408, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x689d90e4", + "0x10000000000000000", + "0x689d90e4" + ] + }, + { + "pc": 9888, + "op": "MUL", + "gas": 417405, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x689d90e4", + "0x10000000000000000", + "0x689d90e4" + ] + }, + { + "pc": 9889, + "op": "SWAP2", + "gas": 417400, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x689d90e4", + "0x689d90e40000000000000000" + ] + }, + { + "pc": 9890, + "op": "SWAP1", + "gas": 417397, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e40000000000000000", + "0x689d90e4", + "0x305e000000000000000000000000689d90e2" + ] + }, + { + "pc": 9891, + "op": "SWAP2", + "gas": 417394, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e40000000000000000", + "0x305e000000000000000000000000689d90e2", + "0x689d90e4" + ] + }, + { + "pc": 9892, + "op": "OR", + "gas": 417391, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e000000000000000000000000689d90e2", + "0x689d90e40000000000000000" + ] + }, + { + "pc": 9893, + "op": "PUSH4", + "gas": 417388, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2" + ] + }, + { + "pc": 9898, + "op": "PUSH1", + "gas": 417385, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffff" + ] + }, + { + "pc": 9900, + "op": "SHL", + "gas": 417382, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffff", + "0x80" + ] + }, + { + "pc": 9901, + "op": "NOT", + "gas": 417379, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffff00000000000000000000000000000000" + ] + }, + { + "pc": 9902, + "op": "AND", + "gas": 417376, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 9903, + "op": "PUSH1", + "gas": 417373, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2" + ] + }, + { + "pc": 9905, + "op": "PUSH1", + "gas": 417370, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x1" + ] + }, + { + "pc": 9907, + "op": "SHL", + "gas": 417367, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x1", + "0x80" + ] + }, + { + "pc": 9908, + "op": "DUP7", + "gas": 417364, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 9909, + "op": "MUL", + "gas": 417361, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x100000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 9910, + "op": "OR", + "gas": 417356, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x305e00000000000000000000000000000000" + ] + }, + { + "pc": 9911, + "op": "SWAP1", + "gas": 417353, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2" + ] + }, + { + "pc": 9912, + "op": "SWAP2", + "gas": 417350, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e00000000689d90e400000000689d90e2", + "0x689d90e4" + ] + }, + { + "pc": 9913, + "op": "SSTORE", + "gas": 417347, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9914, + "op": "PUSH1", + "gas": 416547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4" + ] + }, + { + "pc": 9916, + "op": "DUP1", + "gas": 416544, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7" + ] + }, + { + "pc": 9917, + "op": "SLOAD", + "gas": 416541, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9918, + "op": "PUSH8", + "gas": 415741, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e0000305e" + ] + }, + { + "pc": 9927, + "op": "NOT", + "gas": 415738, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e0000305e", + "0xffffffff00000000" + ] + }, + { + "pc": 9928, + "op": "AND", + "gas": 415735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e0000305e", + "0xffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff" + ] + }, + { + "pc": 9929, + "op": "PUSH1", + "gas": 415732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e" + ] + }, + { + "pc": 9931, + "op": "PUSH1", + "gas": 415729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x1" + ] + }, + { + "pc": 9933, + "op": "SHL", + "gas": 415726, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x1", + "0x20" + ] + }, + { + "pc": 9934, + "op": "DUP7", + "gas": 415723, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x100000000" + ] + }, + { + "pc": 9935, + "op": "MUL", + "gas": 415720, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x100000000", + "0x305e" + ] + }, + { + "pc": 9936, + "op": "OR", + "gas": 415715, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x305e00000000" + ] + }, + { + "pc": 9937, + "op": "SWAP1", + "gas": 415712, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e0000305e" + ] + }, + { + "pc": 9938, + "op": "SSTORE", + "gas": 415709, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x305e0000305e", + "0x7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 9939, + "op": "DUP3", + "gas": 414909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4" + ] + }, + { + "pc": 9940, + "op": "MLOAD", + "gas": 414906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x40" + ] + }, + { + "pc": 9941, + "op": "SWAP1", + "gas": 414903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x120" + ] + }, + { + "pc": 9942, + "op": "DUP2", + "gas": 414900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x120", + "0x689d90e4" + ] + }, + { + "pc": 9943, + "op": "MSTORE", + "gas": 414897, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x120", + "0x689d90e4", + "0x120" + ] + }, + { + "pc": 9944, + "op": "SWAP2", + "gas": 414891, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x40", + "0x20", + "0x120" + ] + }, + { + "pc": 9945, + "op": "MLOAD", + "gas": 414888, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x120", + "0x20", + "0x40" + ] + }, + { + "pc": 9946, + "op": "SWAP4", + "gas": 414885, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x120", + "0x20", + "0x120" + ] + }, + { + "pc": 9947, + "op": "SWAP5", + "gas": 414882, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x120", + "0x305e", + "0x120", + "0x20", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 9948, + "op": "POP", + "gas": 414879, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x120", + "0x305e", + "0x120", + "0x20", + "0x0" + ] + }, + { + "pc": 9949, + "op": "SWAP2", + "gas": 414877, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x120", + "0x305e", + "0x120", + "0x20" + ] + }, + { + "pc": 9950, + "op": "SWAP3", + "gas": 414874, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x120", + "0x20", + "0x120", + "0x305e" + ] + }, + { + "pc": 9951, + "op": "DUP5", + "gas": 414871, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x20", + "0x120", + "0x120" + ] + }, + { + "pc": 9952, + "op": "SWAP3", + "gas": 414868, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x20", + "0x120", + "0x120", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 9953, + "op": "PUSH32", + "gas": 414865, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x41f1ba4467cc997940", + "0x120", + "0x120", + "0x20" + ] + }, + { + "pc": 9986, + "op": "SWAP3", + "gas": 414862, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x41f1ba4467cc997940", + "0x120", + "0x120", + "0x20", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f" + ] + }, + { + "pc": 9987, + "op": "DUP3", + "gas": 414859, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x41f1ba4467cc997940", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x120", + "0x20", + "0x120" + ] + }, + { + "pc": 9988, + "op": "SWAP1", + "gas": 414856, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x41f1ba4467cc997940", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x120", + "0x20", + "0x120", + "0x120" + ] + }, + { + "pc": 9989, + "op": "SUB", + "gas": 414853, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x41f1ba4467cc997940", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x120", + "0x20", + "0x120", + "0x120" + ] + }, + { + "pc": 9990, + "op": "ADD", + "gas": 414850, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x41f1ba4467cc997940", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x120", + "0x20", + "0x0" + ] + }, + { + "pc": 9991, + "op": "SWAP1", + "gas": 414847, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x41f1ba4467cc997940", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x120", + "0x20" + ] + }, + { + "pc": 9992, + "op": "LOG3", + "gas": 414844, + "gasCost": 1756, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x305e", + "0x41f1ba4467cc997940", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x20", + "0x120" + ] + }, + { + "pc": 9993, + "op": "PUSH1", + "gas": 413088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 9995, + "op": "SWAP3", + "gas": 413085, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1ba4467cc997940", + "0x1" + ] + }, + { + "pc": 9996, + "op": "POP", + "gas": 413082, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x0", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 9997, + "op": "SWAP1", + "gas": 413080, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x0", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 9998, + "op": "POP", + "gas": 413077, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 9999, + "op": "JUMPDEST", + "gas": 413075, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 10000, + "op": "SWAP2", + "gas": 413074, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 10001, + "op": "POP", + "gas": 413071, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x41f1ba4467cc997940", + "0x1", + "0x305e" + ] + }, + { + "pc": 10002, + "op": "SWAP2", + "gas": 413069, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x41f1ba4467cc997940", + "0x1" + ] + }, + { + "pc": 10003, + "op": "JUMP", + "gas": 413066, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0x1", + "0x41f1ba4467cc997940", + "0xba4" + ] + }, + { + "pc": 2980, + "op": "JUMPDEST", + "gas": 413058, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0x1", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 2981, + "op": "SWAP2", + "gas": 413057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x0", + "0x1", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 2982, + "op": "POP", + "gas": 413054, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x41f1ba4467cc997940", + "0x1", + "0x0" + ] + }, + { + "pc": 2983, + "op": "SWAP2", + "gas": 413052, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x0", + "0x41f1ba4467cc997940", + "0x1" + ] + }, + { + "pc": 2984, + "op": "POP", + "gas": 413049, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 2985, + "op": "PUSH2", + "gas": 413047, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 2988, + "op": "DUP6", + "gas": 413044, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1" + ] + }, + { + "pc": 2989, + "op": "PUSH2", + "gas": 413041, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 2992, + "op": "JUMP", + "gas": 413038, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x2714" + ] + }, + { + "pc": 10004, + "op": "JUMPDEST", + "gas": 413030, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 10005, + "op": "PUSH4", + "gas": 413029, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 10010, + "op": "DUP2", + "gas": 413026, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 10011, + "op": "AND", + "gas": 413023, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 10012, + "op": "PUSH1", + "gas": 413020, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x305e" + ] + }, + { + "pc": 10014, + "op": "SWAP1", + "gas": 413017, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x305e", + "0x0" + ] + }, + { + "pc": 10015, + "op": "DUP2", + "gas": 413014, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x0", + "0x305e" + ] + }, + { + "pc": 10016, + "op": "MSTORE", + "gas": 413011, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 10017, + "op": "PUSH1", + "gas": 413008, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x0" + ] + }, + { + "pc": 10019, + "op": "PUSH1", + "gas": 413005, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x0", + "0xa" + ] + }, + { + "pc": 10021, + "op": "MSTORE", + "gas": 413002, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 10022, + "op": "PUSH1", + "gas": 412999, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x0" + ] + }, + { + "pc": 10024, + "op": "SWAP1", + "gas": 412996, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 10025, + "op": "KECCAK256", + "gas": 412993, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 10026, + "op": "PUSH1", + "gas": 412951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 10028, + "op": "ADD", + "gas": 412948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 10029, + "op": "SLOAD", + "gas": 412945, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 10030, + "op": "PUSH1", + "gas": 412145, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 10032, + "op": "PUSH1", + "gas": 412142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006", + "0x1" + ] + }, + { + "pc": 10034, + "op": "SHL", + "gas": 412139, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006", + "0x1", + "0x60" + ] + }, + { + "pc": 10035, + "op": "SWAP1", + "gas": 412136, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006", + "0x1000000000000000000000000" + ] + }, + { + "pc": 10036, + "op": "DIV", + "gas": 412133, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x1000000000000000000000000", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 10037, + "op": "PUSH1", + "gas": 412128, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10039, + "op": "PUSH1", + "gas": 412125, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1" + ] + }, + { + "pc": 10041, + "op": "PUSH1", + "gas": 412122, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1", + "0x1" + ] + }, + { + "pc": 10043, + "op": "SHL", + "gas": 412119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10044, + "op": "SUB", + "gas": 412116, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10045, + "op": "AND", + "gas": 412113, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10046, + "op": "PUSH2", + "gas": 412110, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10049, + "op": "PUSH2", + "gas": 412107, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745" + ] + }, + { + "pc": 10052, + "op": "JUMP", + "gas": 412104, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x405b" + ] + }, + { + "pc": 16475, + "op": "JUMPDEST", + "gas": 412096, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745" + ] + }, + { + "pc": 16476, + "op": "PUSH1", + "gas": 412095, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745" + ] + }, + { + "pc": 16478, + "op": "DUP1", + "gas": 412092, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40" + ] + }, + { + "pc": 16479, + "op": "MLOAD", + "gas": 412089, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x40" + ] + }, + { + "pc": 16480, + "op": "DUP1", + "gas": 412086, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x120" + ] + }, + { + "pc": 16481, + "op": "DUP3", + "gas": 412083, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x120", + "0x120" + ] + }, + { + "pc": 16482, + "op": "ADD", + "gas": 412080, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x120", + "0x120", + "0x40" + ] + }, + { + "pc": 16483, + "op": "SWAP1", + "gas": 412077, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x120", + "0x160" + ] + }, + { + "pc": 16484, + "op": "SWAP2", + "gas": 412074, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x160", + "0x120" + ] + }, + { + "pc": 16485, + "op": "MSTORE", + "gas": 412071, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x120", + "0x160", + "0x40" + ] + }, + { + "pc": 16486, + "op": "PUSH1", + "gas": 412068, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x120" + ] + }, + { + "pc": 16488, + "op": "DUP1", + "gas": 412065, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x120", + "0x0" + ] + }, + { + "pc": 16489, + "op": "DUP3", + "gas": 412062, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x120", + "0x0", + "0x0" + ] + }, + { + "pc": 16490, + "op": "MSTORE", + "gas": 412059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x120", + "0x0", + "0x0", + "0x120" + ] + }, + { + "pc": 16491, + "op": "PUSH1", + "gas": 412056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x120", + "0x0" + ] + }, + { + "pc": 16493, + "op": "DUP3", + "gas": 412053, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x120", + "0x0", + "0x20" + ] + }, + { + "pc": 16494, + "op": "ADD", + "gas": 412050, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x120", + "0x0", + "0x20", + "0x120" + ] + }, + { + "pc": 16495, + "op": "MSTORE", + "gas": 412047, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x120", + "0x0", + "0x140" + ] + }, + { + "pc": 16496, + "op": "SWAP1", + "gas": 412041, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x120" + ] + }, + { + "pc": 16497, + "op": "JUMP", + "gas": 412038, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x120", + "0x2745" + ] + }, + { + "pc": 10053, + "op": "JUMPDEST", + "gas": 412030, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x120" + ] + }, + { + "pc": 10054, + "op": "POP", + "gas": 412029, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x120" + ] + }, + { + "pc": 10055, + "op": "PUSH1", + "gas": 412027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10057, + "op": "DUP1", + "gas": 412024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40" + ] + }, + { + "pc": 10058, + "op": "MLOAD", + "gas": 412021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x40" + ] + }, + { + "pc": 10059, + "op": "DUP1", + "gas": 412018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x160" + ] + }, + { + "pc": 10060, + "op": "DUP3", + "gas": 412015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x160", + "0x160" + ] + }, + { + "pc": 10061, + "op": "ADD", + "gas": 412012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x160", + "0x160", + "0x40" + ] + }, + { + "pc": 10062, + "op": "SWAP1", + "gas": 412009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x160", + "0x1a0" + ] + }, + { + "pc": 10063, + "op": "SWAP2", + "gas": 412006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x1a0", + "0x160" + ] + }, + { + "pc": 10064, + "op": "MSTORE", + "gas": 412003, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1a0", + "0x40" + ] + }, + { + "pc": 10065, + "op": "PUSH1", + "gas": 412000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160" + ] + }, + { + "pc": 10067, + "op": "SLOAD", + "gas": 411997, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xd" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce56c49fc6c00000000000000000003c953abda52d4000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 10068, + "op": "PUSH1", + "gas": 411197, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000" + ] + }, + { + "pc": 10070, + "op": "PUSH1", + "gas": 411194, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x1" + ] + }, + { + "pc": 10072, + "op": "PUSH1", + "gas": 411191, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x1", + "0x1" + ] + }, + { + "pc": 10074, + "op": "SHL", + "gas": 411188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10075, + "op": "SUB", + "gas": 411185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10076, + "op": "DUP1", + "gas": 411182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10077, + "op": "DUP3", + "gas": 411179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10078, + "op": "AND", + "gas": 411176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000" + ] + }, + { + "pc": 10079, + "op": "DUP1", + "gas": 411173, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0xffffffffffffffffffffffffffffffff", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10080, + "op": "DUP5", + "gas": 411170, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0xffffffffffffffffffffffffffffffff", + "0x3c953abda52d4000", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10081, + "op": "MSTORE", + "gas": 411167, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0xffffffffffffffffffffffffffffffff", + "0x3c953abda52d4000", + "0x3c953abda52d4000", + "0x160" + ] + }, + { + "pc": 10082, + "op": "PUSH1", + "gas": 411161, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0xffffffffffffffffffffffffffffffff", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10084, + "op": "PUSH1", + "gas": 411158, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0xffffffffffffffffffffffffffffffff", + "0x3c953abda52d4000", + "0x1" + ] + }, + { + "pc": 10086, + "op": "SHL", + "gas": 411155, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0xffffffffffffffffffffffffffffffff", + "0x3c953abda52d4000", + "0x1", + "0x80" + ] + }, + { + "pc": 10087, + "op": "SWAP1", + "gas": 411152, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0xffffffffffffffffffffffffffffffff", + "0x3c953abda52d4000", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10088, + "op": "SWAP3", + "gas": 411149, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0xffffffffffffffffffffffffffffffff", + "0x100000000000000000000000000000000", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10089, + "op": "DIV", + "gas": 411146, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c953abda52d4000", + "0xffffffffffffffffffffffffffffffff", + "0x100000000000000000000000000000000", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000" + ] + }, + { + "pc": 10090, + "op": "AND", + "gas": 411141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c953abda52d4000", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 10091, + "op": "PUSH1", + "gas": 411138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c953abda52d4000", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 10093, + "op": "DUP4", + "gas": 411135, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c953abda52d4000", + "0x8ce56c49fc6c000", + "0x20" + ] + }, + { + "pc": 10094, + "op": "ADD", + "gas": 411132, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c953abda52d4000", + "0x8ce56c49fc6c000", + "0x20", + "0x160" + ] + }, + { + "pc": 10095, + "op": "MSTORE", + "gas": 411129, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c953abda52d4000", + "0x8ce56c49fc6c000", + "0x180" + ] + }, + { + "pc": 10096, + "op": "PUSH2", + "gas": 411123, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10099, + "op": "SWAP1", + "gas": 411120, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c953abda52d4000", + "0x277f" + ] + }, + { + "pc": 10100, + "op": "DUP4", + "gas": 411117, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000" + ] + }, + { + "pc": 10101, + "op": "PUSH4", + "gas": 411114, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000" + ] + }, + { + "pc": 10106, + "op": "PUSH2", + "gas": 411111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0xffffffff" + ] + }, + { + "pc": 10109, + "op": "AND", + "gas": 411108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0xffffffff", + "0x2e8a" + ] + }, + { + "pc": 10110, + "op": "JUMP", + "gas": 411105, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x2e8a" + ] + }, + { + "pc": 11914, + "op": "JUMPDEST", + "gas": 411097, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000" + ] + }, + { + "pc": 11915, + "op": "PUSH1", + "gas": 411096, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000" + ] + }, + { + "pc": 11917, + "op": "DUP3", + "gas": 411093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 11918, + "op": "PUSH1", + "gas": 411090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x3c953abda52d4000" + ] + }, + { + "pc": 11920, + "op": "PUSH1", + "gas": 411087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x3c953abda52d4000", + "0x1" + ] + }, + { + "pc": 11922, + "op": "PUSH1", + "gas": 411084, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x3c953abda52d4000", + "0x1", + "0x1" + ] + }, + { + "pc": 11924, + "op": "SHL", + "gas": 411081, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x3c953abda52d4000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 11925, + "op": "SUB", + "gas": 411078, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x3c953abda52d4000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 11926, + "op": "AND", + "gas": 411075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x3c953abda52d4000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 11927, + "op": "DUP3", + "gas": 411072, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x3c953abda52d4000" + ] + }, + { + "pc": 11928, + "op": "PUSH1", + "gas": 411069, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x3c953abda52d4000", + "0x9184e72a000" + ] + }, + { + "pc": 11930, + "op": "PUSH1", + "gas": 411066, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x1" + ] + }, + { + "pc": 11932, + "op": "PUSH1", + "gas": 411063, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x1", + "0x1" + ] + }, + { + "pc": 11934, + "op": "SHL", + "gas": 411060, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 11935, + "op": "SUB", + "gas": 411057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 11936, + "op": "AND", + "gas": 411054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x3c953abda52d4000", + "0x9184e72a000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 11937, + "op": "GT", + "gas": 411051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x3c953abda52d4000", + "0x9184e72a000" + ] + }, + { + "pc": 11938, + "op": "ISZERO", + "gas": 411048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x0" + ] + }, + { + "pc": 11939, + "op": "PUSH2", + "gas": 411045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x1" + ] + }, + { + "pc": 11942, + "op": "JUMPI", + "gas": 411042, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0", + "0x1", + "0x2ef3" + ] + }, + { + "pc": 12019, + "op": "JUMPDEST", + "gas": 411032, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 12020, + "op": "POP", + "gas": 411031, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 12021, + "op": "SWAP1", + "gas": 411029, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c953abda52d4000", + "0x9184e72a000" + ] + }, + { + "pc": 12022, + "op": "SUB", + "gas": 411026, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x9184e72a000", + "0x3c953abda52d4000" + ] + }, + { + "pc": 12023, + "op": "SWAP1", + "gas": 411023, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x277f", + "0x3c9531a556baa000" + ] + }, + { + "pc": 12024, + "op": "JUMP", + "gas": 411020, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c9531a556baa000", + "0x277f" + ] + }, + { + "pc": 10111, + "op": "JUMPDEST", + "gas": 411012, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10112, + "op": "PUSH1", + "gas": 411011, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10114, + "op": "PUSH1", + "gas": 411008, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c9531a556baa000", + "0x1" + ] + }, + { + "pc": 10116, + "op": "PUSH1", + "gas": 411005, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c9531a556baa000", + "0x1", + "0x1" + ] + }, + { + "pc": 10118, + "op": "SHL", + "gas": 411002, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c9531a556baa000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10119, + "op": "SUB", + "gas": 410999, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c9531a556baa000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10120, + "op": "SWAP1", + "gas": 410996, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c9531a556baa000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10121, + "op": "DUP2", + "gas": 410993, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10122, + "op": "AND", + "gas": 410990, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x3c9531a556baa000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10123, + "op": "DUP3", + "gas": 410987, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10124, + "op": "MSTORE", + "gas": 410984, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x3c9531a556baa000", + "0x160" + ] + }, + { + "pc": 10125, + "op": "PUSH1", + "gas": 410981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10127, + "op": "DUP3", + "gas": 410978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x20" + ] + }, + { + "pc": 10128, + "op": "ADD", + "gas": 410975, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x160" + ] + }, + { + "pc": 10129, + "op": "MLOAD", + "gas": 410972, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x180" + ] + }, + { + "pc": 10130, + "op": "PUSH2", + "gas": 410969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 10133, + "op": "SWAP2", + "gas": 410966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000", + "0x27a2" + ] + }, + { + "pc": 10134, + "op": "AND", + "gas": 410963, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10135, + "op": "DUP4", + "gas": 410960, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 10136, + "op": "PUSH4", + "gas": 410957, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000" + ] + }, + { + "pc": 10141, + "op": "PUSH2", + "gas": 410954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0xffffffff" + ] + }, + { + "pc": 10144, + "op": "AND", + "gas": 410951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0xffffffff", + "0x36ce" + ] + }, + { + "pc": 10145, + "op": "JUMP", + "gas": 410948, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x36ce" + ] + }, + { + "pc": 14030, + "op": "JUMPDEST", + "gas": 410940, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000" + ] + }, + { + "pc": 14031, + "op": "PUSH1", + "gas": 410939, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000" + ] + }, + { + "pc": 14033, + "op": "DUP3", + "gas": 410936, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 14034, + "op": "DUP3", + "gas": 410933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 14035, + "op": "ADD", + "gas": 410930, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000", + "0x9184e72a000" + ] + }, + { + "pc": 14036, + "op": "PUSH1", + "gas": 410927, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 14038, + "op": "PUSH1", + "gas": 410924, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0x1" + ] + }, + { + "pc": 14040, + "op": "PUSH1", + "gas": 410921, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0x1", + "0x1" + ] + }, + { + "pc": 14042, + "op": "SHL", + "gas": 410918, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 14043, + "op": "SUB", + "gas": 410915, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 14044, + "op": "DUP1", + "gas": 410912, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14045, + "op": "DUP6", + "gas": 410909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14046, + "op": "AND", + "gas": 410906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 14047, + "op": "SWAP1", + "gas": 410903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 14048, + "op": "DUP3", + "gas": 410900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0x8ce56c49fc6c000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14049, + "op": "AND", + "gas": 410897, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0x8ce56c49fc6c000", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 14050, + "op": "LT", + "gas": 410894, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0x8ce56c49fc6c000", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 14051, + "op": "ISZERO", + "gas": 410891, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0x0" + ] + }, + { + "pc": 14052, + "op": "PUSH2", + "gas": 410888, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0x1" + ] + }, + { + "pc": 14055, + "op": "JUMPI", + "gas": 410885, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0x1", + "0x2bf3" + ] + }, + { + "pc": 11251, + "op": "JUMPDEST", + "gas": 410875, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 11252, + "op": "SWAP4", + "gas": 410874, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27a2", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 11253, + "op": "SWAP3", + "gas": 410871, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce5fdcee396000", + "0x8ce56c49fc6c000", + "0x9184e72a000", + "0x0", + "0x27a2" + ] + }, + { + "pc": 11254, + "op": "POP", + "gas": 410868, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce5fdcee396000", + "0x27a2", + "0x9184e72a000", + "0x0", + "0x8ce56c49fc6c000" + ] + }, + { + "pc": 11255, + "op": "POP", + "gas": 410866, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce5fdcee396000", + "0x27a2", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 11256, + "op": "POP", + "gas": 410864, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce5fdcee396000", + "0x27a2", + "0x9184e72a000" + ] + }, + { + "pc": 11257, + "op": "JUMP", + "gas": 410862, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce5fdcee396000", + "0x27a2" + ] + }, + { + "pc": 10146, + "op": "JUMPDEST", + "gas": 410854, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 10147, + "op": "PUSH1", + "gas": 410853, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 10149, + "op": "PUSH1", + "gas": 410850, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce5fdcee396000", + "0x1" + ] + }, + { + "pc": 10151, + "op": "PUSH1", + "gas": 410847, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce5fdcee396000", + "0x1", + "0x1" + ] + }, + { + "pc": 10153, + "op": "SHL", + "gas": 410844, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce5fdcee396000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10154, + "op": "SUB", + "gas": 410841, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce5fdcee396000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10155, + "op": "SWAP1", + "gas": 410838, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x8ce5fdcee396000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10156, + "op": "DUP2", + "gas": 410835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 10157, + "op": "AND", + "gas": 410832, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10158, + "op": "PUSH1", + "gas": 410829, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 10160, + "op": "DUP1", + "gas": 410826, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20" + ] + }, + { + "pc": 10161, + "op": "DUP5", + "gas": 410823, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20", + "0x20" + ] + }, + { + "pc": 10162, + "op": "ADD", + "gas": 410820, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20", + "0x20", + "0x160" + ] + }, + { + "pc": 10163, + "op": "DUP3", + "gas": 410817, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20", + "0x180" + ] + }, + { + "pc": 10164, + "op": "SWAP1", + "gas": 410814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20", + "0x180", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 10165, + "op": "MSTORE", + "gas": 410811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20", + "0x8ce5fdcee396000", + "0x180" + ] + }, + { + "pc": 10166, + "op": "DUP4", + "gas": 410808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20" + ] + }, + { + "pc": 10167, + "op": "MLOAD", + "gas": 410805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20", + "0x160" + ] + }, + { + "pc": 10168, + "op": "PUSH1", + "gas": 410802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10170, + "op": "DUP1", + "gas": 410799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20", + "0x3c9531a556baa000", + "0xd" + ] + }, + { + "pc": 10171, + "op": "SLOAD", + "gas": 410796, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20", + "0x3c9531a556baa000", + "0xd", + "0xd" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce56c49fc6c00000000000000000003c953abda52d4000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 10172, + "op": "PUSH1", + "gas": 409996, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20", + "0x3c9531a556baa000", + "0xd", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000" + ] + }, + { + "pc": 10174, + "op": "PUSH1", + "gas": 409993, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20", + "0x3c9531a556baa000", + "0xd", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x1" + ] + }, + { + "pc": 10176, + "op": "SHL", + "gas": 409990, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20", + "0x3c9531a556baa000", + "0xd", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x1", + "0x80" + ] + }, + { + "pc": 10177, + "op": "SWAP1", + "gas": 409987, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20", + "0x3c9531a556baa000", + "0xd", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10178, + "op": "SWAP5", + "gas": 409984, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x20", + "0x3c9531a556baa000", + "0xd", + "0x100000000000000000000000000000000", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000" + ] + }, + { + "pc": 10179, + "op": "MUL", + "gas": 409981, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x20", + "0x3c9531a556baa000", + "0xd", + "0x100000000000000000000000000000000", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 10180, + "op": "SWAP2", + "gas": 409976, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x20", + "0x3c9531a556baa000", + "0xd", + "0x8ce5fdcee39600000000000000000000000000000000000" + ] + }, + { + "pc": 10181, + "op": "DUP6", + "gas": 409973, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0xd", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10182, + "op": "AND", + "gas": 409970, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0xd", + "0x3c9531a556baa000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10183, + "op": "PUSH1", + "gas": 409967, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0xd", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10185, + "op": "PUSH1", + "gas": 409964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0xd", + "0x3c9531a556baa000", + "0x1" + ] + }, + { + "pc": 10187, + "op": "PUSH1", + "gas": 409961, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0xd", + "0x3c9531a556baa000", + "0x1", + "0x1" + ] + }, + { + "pc": 10189, + "op": "SHL", + "gas": 409958, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0xd", + "0x3c9531a556baa000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10190, + "op": "SUB", + "gas": 409955, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0xd", + "0x3c9531a556baa000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10191, + "op": "NOT", + "gas": 409952, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0xd", + "0x3c9531a556baa000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10192, + "op": "SWAP1", + "gas": 409949, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0xd", + "0x3c9531a556baa000", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" + ] + }, + { + "pc": 10193, + "op": "SWAP5", + "gas": 409946, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0xd", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10194, + "op": "AND", + "gas": 409943, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x3c9531a556baa000", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0xd", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", + "0x8ce56c49fc6c00000000000000000003c953abda52d4000" + ] + }, + { + "pc": 10195, + "op": "SWAP4", + "gas": 409940, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x3c9531a556baa000", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0xd", + "0x8ce56c49fc6c00000000000000000000000000000000000" + ] + }, + { + "pc": 10196, + "op": "SWAP1", + "gas": 409937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0xd", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10197, + "op": "SWAP4", + "gas": 409934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x8ce56c49fc6c00000000000000000000000000000000000", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0x3c9531a556baa000", + "0xd" + ] + }, + { + "pc": 10198, + "op": "OR", + "gas": 409931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0x3c9531a556baa000", + "0x8ce56c49fc6c00000000000000000000000000000000000" + ] + }, + { + "pc": 10199, + "op": "DUP5", + "gas": 409928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0x8ce56c49fc6c00000000000000000003c9531a556baa000" + ] + }, + { + "pc": 10200, + "op": "AND", + "gas": 409925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0x8ce56c49fc6c00000000000000000003c9531a556baa000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10201, + "op": "OR", + "gas": 409922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10202, + "op": "SWAP1", + "gas": 409919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce5fdcee39600000000000000000003c9531a556baa000" + ] + }, + { + "pc": 10203, + "op": "SWAP2", + "gas": 409916, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x20" + ] + }, + { + "pc": 10204, + "op": "SSTORE", + "gas": 409913, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0xd" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce5fdcee39600000000000000000003c9531a556baa000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 10205, + "op": "CALLER", + "gas": 404913, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x20" + ] + }, + { + "pc": 10206, + "op": "PUSH1", + "gas": 404911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 10208, + "op": "SWAP1", + "gas": 404908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x0" + ] + }, + { + "pc": 10209, + "op": "DUP2", + "gas": 404905, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 10210, + "op": "MSTORE", + "gas": 404902, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x0" + ] + }, + { + "pc": 10211, + "op": "PUSH1", + "gas": 404899, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0" + ] + }, + { + "pc": 10213, + "op": "SWAP1", + "gas": 404896, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0", + "0x8" + ] + }, + { + "pc": 10214, + "op": "SWAP2", + "gas": 404893, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x8", + "0x0" + ] + }, + { + "pc": 10215, + "op": "MSTORE", + "gas": 404890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 10216, + "op": "PUSH1", + "gas": 404887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 10218, + "op": "SWAP1", + "gas": 404884, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 10219, + "op": "KECCAK256", + "gas": 404881, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x40", + "0x0" + ] + }, + { + "pc": 10220, + "op": "SLOAD", + "gas": 404839, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce5fdcee39600000000000000000003c9531a556baa000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 10221, + "op": "PUSH2", + "gas": 404039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x305b0000305effffffff000006f00000000000000000017856c6150ea000" + ] + }, + { + "pc": 10224, + "op": "SWAP2", + "gas": 404036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x305b0000305effffffff000006f00000000000000000017856c6150ea000", + "0x27fd" + ] + }, + { + "pc": 10225, + "op": "AND", + "gas": 404033, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x305b0000305effffffff000006f00000000000000000017856c6150ea000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10226, + "op": "DUP4", + "gas": 404030, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000" + ] + }, + { + "pc": 10227, + "op": "PUSH4", + "gas": 404027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000" + ] + }, + { + "pc": 10232, + "op": "PUSH2", + "gas": 404024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0xffffffff" + ] + }, + { + "pc": 10235, + "op": "AND", + "gas": 404021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0xffffffff", + "0x36ce" + ] + }, + { + "pc": 10236, + "op": "JUMP", + "gas": 404018, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x36ce" + ] + }, + { + "pc": 14030, + "op": "JUMPDEST", + "gas": 404010, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000" + ] + }, + { + "pc": 14031, + "op": "PUSH1", + "gas": 404009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000" + ] + }, + { + "pc": 14033, + "op": "DUP3", + "gas": 404006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 14034, + "op": "DUP3", + "gas": 404003, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x17856c6150ea000" + ] + }, + { + "pc": 14035, + "op": "ADD", + "gas": 404000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x17856c6150ea000", + "0x9184e72a000" + ] + }, + { + "pc": 14036, + "op": "PUSH1", + "gas": 403997, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000" + ] + }, + { + "pc": 14038, + "op": "PUSH1", + "gas": 403994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000", + "0x1" + ] + }, + { + "pc": 14040, + "op": "PUSH1", + "gas": 403991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000", + "0x1", + "0x1" + ] + }, + { + "pc": 14042, + "op": "SHL", + "gas": 403988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 14043, + "op": "SUB", + "gas": 403985, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 14044, + "op": "DUP1", + "gas": 403982, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14045, + "op": "DUP6", + "gas": 403979, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14046, + "op": "AND", + "gas": 403976, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff", + "0x17856c6150ea000" + ] + }, + { + "pc": 14047, + "op": "SWAP1", + "gas": 403973, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000", + "0xffffffffffffffffffffffffffffffff", + "0x17856c6150ea000" + ] + }, + { + "pc": 14048, + "op": "DUP3", + "gas": 403970, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000", + "0x17856c6150ea000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14049, + "op": "AND", + "gas": 403967, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000", + "0x17856c6150ea000", + "0xffffffffffffffffffffffffffffffff", + "0x1785fde63814000" + ] + }, + { + "pc": 14050, + "op": "LT", + "gas": 403964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000", + "0x17856c6150ea000", + "0x1785fde63814000" + ] + }, + { + "pc": 14051, + "op": "ISZERO", + "gas": 403961, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000", + "0x0" + ] + }, + { + "pc": 14052, + "op": "PUSH2", + "gas": 403958, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000", + "0x1" + ] + }, + { + "pc": 14055, + "op": "JUMPI", + "gas": 403955, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000", + "0x1", + "0x2bf3" + ] + }, + { + "pc": 11251, + "op": "JUMPDEST", + "gas": 403945, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000" + ] + }, + { + "pc": 11252, + "op": "SWAP4", + "gas": 403944, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x27fd", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x1785fde63814000" + ] + }, + { + "pc": 11253, + "op": "SWAP3", + "gas": 403941, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x17856c6150ea000", + "0x9184e72a000", + "0x0", + "0x27fd" + ] + }, + { + "pc": 11254, + "op": "POP", + "gas": 403938, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x27fd", + "0x9184e72a000", + "0x0", + "0x17856c6150ea000" + ] + }, + { + "pc": 11255, + "op": "POP", + "gas": 403936, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x27fd", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 11256, + "op": "POP", + "gas": 403934, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x27fd", + "0x9184e72a000" + ] + }, + { + "pc": 11257, + "op": "JUMP", + "gas": 403932, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x27fd" + ] + }, + { + "pc": 10237, + "op": "JUMPDEST", + "gas": 403924, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000" + ] + }, + { + "pc": 10238, + "op": "CALLER", + "gas": 403923, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000" + ] + }, + { + "pc": 10239, + "op": "PUSH1", + "gas": 403921, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 10241, + "op": "SWAP1", + "gas": 403918, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x0" + ] + }, + { + "pc": 10242, + "op": "DUP2", + "gas": 403915, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317" + ] + }, + { + "pc": 10243, + "op": "MSTORE", + "gas": 403912, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40b66a878b4ed273d8dec50baf8c94180a68a317", + "0x0" + ] + }, + { + "pc": 10244, + "op": "PUSH1", + "gas": 403909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0" + ] + }, + { + "pc": 10246, + "op": "PUSH1", + "gas": 403906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x8" + ] + }, + { + "pc": 10248, + "op": "MSTORE", + "gas": 403903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 10249, + "op": "PUSH1", + "gas": 403900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0" + ] + }, + { + "pc": 10251, + "op": "DUP1", + "gas": 403897, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40" + ] + }, + { + "pc": 10252, + "op": "DUP3", + "gas": 403894, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x40" + ] + }, + { + "pc": 10253, + "op": "KECCAK256", + "gas": 403891, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x40", + "0x0" + ] + }, + { + "pc": 10254, + "op": "DUP1", + "gas": 403849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6" + ] + }, + { + "pc": 10255, + "op": "SLOAD", + "gas": 403846, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce5fdcee39600000000000000000003c9531a556baa000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f00000000000000000017856c6150ea000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 10256, + "op": "PUSH1", + "gas": 403046, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f00000000000000000017856c6150ea000" + ] + }, + { + "pc": 10258, + "op": "PUSH1", + "gas": 403043, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f00000000000000000017856c6150ea000", + "0x1" + ] + }, + { + "pc": 10260, + "op": "PUSH1", + "gas": 403040, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f00000000000000000017856c6150ea000", + "0x1", + "0x1" + ] + }, + { + "pc": 10262, + "op": "SHL", + "gas": 403037, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f00000000000000000017856c6150ea000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10263, + "op": "SUB", + "gas": 403034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f00000000000000000017856c6150ea000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10264, + "op": "NOT", + "gas": 403031, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f00000000000000000017856c6150ea000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10265, + "op": "AND", + "gas": 403028, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f00000000000000000017856c6150ea000", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" + ] + }, + { + "pc": 10266, + "op": "PUSH1", + "gas": 403025, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f000000000000000000000000000000000" + ] + }, + { + "pc": 10268, + "op": "PUSH1", + "gas": 403022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f000000000000000000000000000000000", + "0x1" + ] + }, + { + "pc": 10270, + "op": "PUSH1", + "gas": 403019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f000000000000000000000000000000000", + "0x1", + "0x1" + ] + }, + { + "pc": 10272, + "op": "SHL", + "gas": 403016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f000000000000000000000000000000000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10273, + "op": "SUB", + "gas": 403013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f000000000000000000000000000000000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10274, + "op": "SWAP5", + "gas": 403010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1785fde63814000", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10275, + "op": "DUP6", + "gas": 403007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f000000000000000000000000000000000", + "0x1785fde63814000" + ] + }, + { + "pc": 10276, + "op": "AND", + "gas": 403004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f000000000000000000000000000000000", + "0x1785fde63814000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10277, + "op": "OR", + "gas": 403001, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f000000000000000000000000000000000", + "0x1785fde63814000" + ] + }, + { + "pc": 10278, + "op": "SWAP1", + "gas": 402998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6", + "0x305b0000305effffffff000006f0000000000000000001785fde63814000" + ] + }, + { + "pc": 10279, + "op": "SSTORE", + "gas": 402995, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x305b0000305effffffff000006f0000000000000000001785fde63814000", + "0x1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce5fdcee39600000000000000000003c9531a556baa000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f0000000000000000001785fde63814000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 10280, + "op": "DUP4", + "gas": 402195, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 10281, + "op": "MLOAD", + "gas": 402192, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x160" + ] + }, + { + "pc": 10282, + "op": "SWAP1", + "gas": 402189, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10283, + "op": "MLOAD", + "gas": 402186, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x3c9531a556baa000", + "0x40" + ] + }, + { + "pc": 10284, + "op": "SWAP3", + "gas": 402183, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x3c9531a556baa000", + "0x1a0" + ] + }, + { + "pc": 10285, + "op": "AND", + "gas": 402180, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1a0", + "0x0", + "0x3c9531a556baa000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10286, + "op": "SWAP2", + "gas": 402177, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x1a0", + "0x0", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10287, + "op": "PUSH32", + "gas": 402174, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c9531a556baa000", + "0x0", + "0x1a0" + ] + }, + { + "pc": 10320, + "op": "SWAP2", + "gas": 402171, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c9531a556baa000", + "0x0", + "0x1a0", + "0xfe25c73e3b9089fac37d55c4c7efcba6f04af04cebd2fc4d6d7dbb07e1e5234f" + ] + }, + { + "pc": 10321, + "op": "SWAP1", + "gas": 402168, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c9531a556baa000", + "0xfe25c73e3b9089fac37d55c4c7efcba6f04af04cebd2fc4d6d7dbb07e1e5234f", + "0x1a0", + "0x0" + ] + }, + { + "pc": 10322, + "op": "LOG2", + "gas": 402165, + "gasCost": 1125, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160", + "0x3c9531a556baa000", + "0xfe25c73e3b9089fac37d55c4c7efcba6f04af04cebd2fc4d6d7dbb07e1e5234f", + "0x0", + "0x1a0" + ] + }, + { + "pc": 10323, + "op": "POP", + "gas": 401040, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x160" + ] + }, + { + "pc": 10324, + "op": "POP", + "gas": 401038, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10325, + "op": "POP", + "gas": 401036, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 10326, + "op": "JUMP", + "gas": 401034, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbb1" + ] + }, + { + "pc": 2993, + "op": "JUMPDEST", + "gas": 401026, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 2994, + "op": "PUSH2", + "gas": 401025, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 2997, + "op": "DUP6", + "gas": 401022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba" + ] + }, + { + "pc": 2998, + "op": "PUSH2", + "gas": 401019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e" + ] + }, + { + "pc": 3001, + "op": "JUMP", + "gas": 401016, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0x2857" + ] + }, + { + "pc": 10327, + "op": "JUMPDEST", + "gas": 401008, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e" + ] + }, + { + "pc": 10328, + "op": "PUSH4", + "gas": 401007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e" + ] + }, + { + "pc": 10333, + "op": "DUP1", + "gas": 401004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 10334, + "op": "DUP3", + "gas": 401001, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 10335, + "op": "AND", + "gas": 400998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 10336, + "op": "PUSH1", + "gas": 400995, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 10338, + "op": "SWAP1", + "gas": 400992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x305e", + "0x0" + ] + }, + { + "pc": 10339, + "op": "DUP2", + "gas": 400989, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0x305e" + ] + }, + { + "pc": 10340, + "op": "MSTORE", + "gas": 400986, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 10341, + "op": "PUSH1", + "gas": 400983, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 10343, + "op": "PUSH1", + "gas": 400980, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0xa" + ] + }, + { + "pc": 10345, + "op": "MSTORE", + "gas": 400977, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 10346, + "op": "PUSH1", + "gas": 400974, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 10348, + "op": "SWAP1", + "gas": 400971, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 10349, + "op": "KECCAK256", + "gas": 400968, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x40", + "0x0" + ] + }, + { + "pc": 10350, + "op": "PUSH1", + "gas": 400926, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 10352, + "op": "DUP2", + "gas": 400923, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 10353, + "op": "ADD", + "gas": 400920, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 10354, + "op": "SLOAD", + "gas": 400917, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce5fdcee39600000000000000000003c9531a556baa000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f0000000000000000001785fde63814000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 10355, + "op": "SWAP1", + "gas": 400117, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 10356, + "op": "SLOAD", + "gas": 400114, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x9184e72a0000000003c0000000300000006", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce5fdcee39600000000000000000003c9531a556baa000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f0000000000000000001785fde63814000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 10357, + "op": "SWAP2", + "gas": 399314, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0xffffffff", + "0x9184e72a0000000003c0000000300000006", + "0x4" + ] + }, + { + "pc": 10358, + "op": "AND", + "gas": 399311, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0x4", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff" + ] + }, + { + "pc": 10359, + "op": "GT", + "gas": 399308, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0x4", + "0x6" + ] + }, + { + "pc": 10360, + "op": "ISZERO", + "gas": 399305, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0x1" + ] + }, + { + "pc": 10361, + "op": "PUSH2", + "gas": 399302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0x0" + ] + }, + { + "pc": 10364, + "op": "JUMPI", + "gas": 399299, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0x0", + "0x2881" + ] + }, + { + "pc": 10365, + "op": "PUSH2", + "gas": 399289, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e" + ] + }, + { + "pc": 10368, + "op": "JUMP", + "gas": 399286, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e", + "0x24e0" + ] + }, + { + "pc": 9440, + "op": "JUMPDEST", + "gas": 399278, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e" + ] + }, + { + "pc": 9441, + "op": "POP", + "gas": 399277, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba", + "0x305e" + ] + }, + { + "pc": 9442, + "op": "JUMP", + "gas": 399275, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbba" + ] + }, + { + "pc": 3002, + "op": "JUMPDEST", + "gas": 399267, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 3003, + "op": "DUP2", + "gas": 399266, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 3004, + "op": "ISZERO", + "gas": 399263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0x1" + ] + }, + { + "pc": 3005, + "op": "PUSH2", + "gas": 399260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 3008, + "op": "JUMPI", + "gas": 399257, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0x0", + "0xbca" + ] + }, + { + "pc": 3009, + "op": "PUSH2", + "gas": 399247, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 3012, + "op": "DUP6", + "gas": 399244, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca" + ] + }, + { + "pc": 3013, + "op": "DUP3", + "gas": 399241, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e" + ] + }, + { + "pc": 3014, + "op": "PUSH2", + "gas": 399238, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 3017, + "op": "JUMP", + "gas": 399235, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940", + "0x28b6" + ] + }, + { + "pc": 10422, + "op": "JUMPDEST", + "gas": 399227, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 10423, + "op": "PUSH1", + "gas": 399226, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 10425, + "op": "SLOAD", + "gas": 399223, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940", + "0x3" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce5fdcee39600000000000000000003c9531a556baa000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda6": "0000305b0000305effffffff000006f0000000000000000001785fde63814000", + "1254461cd4c73da04a67a31bf3b8973cf4724361c0a83301bf4a31e32edacda7": "000000000000000000000000000000000000000000000041f53671b4af058000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1ba4467cc997940", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000" + } + }, + { + "pc": 10426, + "op": "PUSH1", + "gas": 398423, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 10428, + "op": "PUSH1", + "gas": 398420, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940", + "0x0", + "0x1" + ] + }, + { + "pc": 10430, + "op": "PUSH1", + "gas": 398417, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 10432, + "op": "SHL", + "gas": 398414, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940", + "0x0", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 10433, + "op": "SUB", + "gas": 398411, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940", + "0x0", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 10434, + "op": "AND", + "gas": 398408, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10435, + "op": "DUP1", + "gas": 398405, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 10436, + "op": "PUSH2", + "gas": 398402, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940", + "0x0", + "0x0" + ] + }, + { + "pc": 10439, + "op": "JUMPI", + "gas": 398399, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940", + "0x0", + "0x0", + "0x28cd" + ] + }, + { + "pc": 10440, + "op": "POP", + "gas": 398389, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940", + "0x0" + ] + }, + { + "pc": 10441, + "op": "PUSH2", + "gas": 398387, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 10444, + "op": "JUMP", + "gas": 398384, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940", + "0x9fb" + ] + }, + { + "pc": 2555, + "op": "JUMPDEST", + "gas": 398376, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 2556, + "op": "POP", + "gas": 398375, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 2557, + "op": "POP", + "gas": 398373, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca", + "0x305e" + ] + }, + { + "pc": 2558, + "op": "JUMP", + "gas": 398371, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940", + "0xbca" + ] + }, + { + "pc": 3018, + "op": "JUMPDEST", + "gas": 398363, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 3019, + "op": "POP", + "gas": 398362, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1", + "0x41f1ba4467cc997940" + ] + }, + { + "pc": 3020, + "op": "POP", + "gas": 398360, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60", + "0x1" + ] + }, + { + "pc": 3021, + "op": "POP", + "gas": 398358, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000", + "0x60" + ] + }, + { + "pc": 3022, + "op": "POP", + "gas": 398356, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f53671b4af058000" + ] + }, + { + "pc": 3023, + "op": "POP", + "gas": 398354, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e" + ] + }, + { + "pc": 3024, + "op": "JUMP", + "gas": 398352, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e" + ] + }, + { + "pc": 638, + "op": "JUMPDEST", + "gas": 398344, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 639, + "op": "STOP", + "gas": 398343, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + } + ] + } + }, + { + "result": { + "gas": 102017, + "failed": false, + "returnValue": "", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 477768, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 477765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 477762, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 477750, + "gasCost": 2, + "depth": 1, + "stack": [] + }, + { + "pc": 6, + "op": "DUP1", + "gas": 477748, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 477745, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 477742, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 477739, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 477729, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 477728, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 477726, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 477723, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 477721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x44" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 477718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 477715, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x253" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 477705, + "gasCost": 3, + "depth": 1, + "stack": [] + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 477702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 477699, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 477696, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed00000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 477693, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 477690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 38, + "op": "GT", + "gas": 477687, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x70dea79a" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 477684, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 477681, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x146" + ] + }, + { + "pc": 326, + "op": "JUMPDEST", + "gas": 477671, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 327, + "op": "DUP1", + "gas": 477670, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 328, + "op": "PUSH4", + "gas": 477667, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 333, + "op": "GT", + "gas": 477664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x40884c52" + ] + }, + { + "pc": 334, + "op": "PUSH2", + "gas": 477661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 337, + "op": "JUMPI", + "gas": 477658, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x1d4" + ] + }, + { + "pc": 468, + "op": "JUMPDEST", + "gas": 477648, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 469, + "op": "DUP1", + "gas": 477647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 470, + "op": "PUSH4", + "gas": 477644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 475, + "op": "GT", + "gas": 477641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x357ebb02" + ] + }, + { + "pc": 476, + "op": "PUSH2", + "gas": 477638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 479, + "op": "JUMPI", + "gas": 477635, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x21b" + ] + }, + { + "pc": 539, + "op": "JUMPDEST", + "gas": 477625, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 540, + "op": "DUP1", + "gas": 477624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 541, + "op": "PUSH4", + "gas": 477621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 546, + "op": "EQ", + "gas": 477618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x1327d3d8" + ] + }, + { + "pc": 547, + "op": "PUSH2", + "gas": 477615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x0" + ] + }, + { + "pc": 550, + "op": "JUMPI", + "gas": 477612, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x0", + "0x258" + ] + }, + { + "pc": 551, + "op": "DUP1", + "gas": 477602, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 552, + "op": "PUSH4", + "gas": 477599, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 557, + "op": "EQ", + "gas": 477596, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x202ee0ed", + "0x202ee0ed" + ] + }, + { + "pc": 558, + "op": "PUSH2", + "gas": 477593, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1" + ] + }, + { + "pc": 561, + "op": "JUMPI", + "gas": 477590, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x1", + "0x280" + ] + }, + { + "pc": 640, + "op": "JUMPDEST", + "gas": 477580, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 641, + "op": "PUSH2", + "gas": 477579, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 644, + "op": "PUSH1", + "gas": 477576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e" + ] + }, + { + "pc": 646, + "op": "DUP1", + "gas": 477573, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4" + ] + }, + { + "pc": 647, + "op": "CALLDATASIZE", + "gas": 477570, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x4" + ] + }, + { + "pc": 648, + "op": "SUB", + "gas": 477568, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x4", + "0x44" + ] + }, + { + "pc": 649, + "op": "PUSH1", + "gas": 477565, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40" + ] + }, + { + "pc": 651, + "op": "DUP2", + "gas": 477562, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x40" + ] + }, + { + "pc": 652, + "op": "LT", + "gas": 477559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x40", + "0x40" + ] + }, + { + "pc": 653, + "op": "ISZERO", + "gas": 477556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x0" + ] + }, + { + "pc": 654, + "op": "PUSH2", + "gas": 477553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x1" + ] + }, + { + "pc": 657, + "op": "JUMPI", + "gas": 477550, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40", + "0x1", + "0x296" + ] + }, + { + "pc": 662, + "op": "JUMPDEST", + "gas": 477540, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40" + ] + }, + { + "pc": 663, + "op": "POP", + "gas": 477539, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x40" + ] + }, + { + "pc": 664, + "op": "DUP1", + "gas": 477537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4" + ] + }, + { + "pc": 665, + "op": "CALLDATALOAD", + "gas": 477534, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x4" + ] + }, + { + "pc": 666, + "op": "SWAP1", + "gas": 477531, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x4", + "0x305e" + ] + }, + { + "pc": 667, + "op": "PUSH1", + "gas": 477528, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x4" + ] + }, + { + "pc": 669, + "op": "ADD", + "gas": 477525, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x4", + "0x20" + ] + }, + { + "pc": 670, + "op": "CALLDATALOAD", + "gas": 477522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x24" + ] + }, + { + "pc": 671, + "op": "PUSH2", + "gas": 477519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 674, + "op": "JUMP", + "gas": 477516, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x9ff" + ] + }, + { + "pc": 2559, + "op": "JUMPDEST", + "gas": 477508, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 2560, + "op": "PUSH1", + "gas": 477507, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 2562, + "op": "PUSH2", + "gas": 477504, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60" + ] + }, + { + "pc": 2565, + "op": "CALLER", + "gas": 477501, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b" + ] + }, + { + "pc": 2566, + "op": "DUP5", + "gas": 477499, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 2567, + "op": "PUSH2", + "gas": 477496, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e" + ] + }, + { + "pc": 2570, + "op": "JUMP", + "gas": 477493, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x21ac" + ] + }, + { + "pc": 8620, + "op": "JUMPDEST", + "gas": 477485, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e" + ] + }, + { + "pc": 8621, + "op": "PUSH1", + "gas": 477484, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e" + ] + }, + { + "pc": 8623, + "op": "PUSH1", + "gas": 477481, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x1" + ] + }, + { + "pc": 8625, + "op": "PUSH1", + "gas": 477478, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 8627, + "op": "SHL", + "gas": 477475, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 8628, + "op": "SUB", + "gas": 477472, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8629, + "op": "DUP3", + "gas": 477469, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 8630, + "op": "AND", + "gas": 477466, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 8631, + "op": "PUSH1", + "gas": 477463, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 8633, + "op": "SWAP1", + "gas": 477460, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x0" + ] + }, + { + "pc": 8634, + "op": "DUP2", + "gas": 477457, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 8635, + "op": "MSTORE", + "gas": 477454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x0" + ] + }, + { + "pc": 8636, + "op": "PUSH1", + "gas": 477451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x0" + ] + }, + { + "pc": 8638, + "op": "PUSH1", + "gas": 477448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x0", + "0x8" + ] + }, + { + "pc": 8640, + "op": "MSTORE", + "gas": 477445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 8641, + "op": "PUSH1", + "gas": 477442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x0" + ] + }, + { + "pc": 8643, + "op": "SWAP1", + "gas": 477439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 8644, + "op": "KECCAK256", + "gas": 477436, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 8645, + "op": "SLOAD", + "gas": 477394, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443" + ], + "storage": { + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305dffffffff00000001000000000000000001b793c78a0f2000" + } + }, + { + "pc": 8646, + "op": "PUSH1", + "gas": 476594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000" + ] + }, + { + "pc": 8648, + "op": "SLOAD", + "gas": 476591, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0x7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305dffffffff00000001000000000000000001b793c78a0f2000" + } + }, + { + "pc": 8649, + "op": "PUSH1", + "gas": 475791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0x305e0000305e" + ] + }, + { + "pc": 8651, + "op": "SWAP2", + "gas": 475788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0x305e0000305e", + "0x60" + ] + }, + { + "pc": 8652, + "op": "PUSH4", + "gas": 475785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x305e0000305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000" + ] + }, + { + "pc": 8657, + "op": "PUSH1", + "gas": 475782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x305e0000305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff" + ] + }, + { + "pc": 8659, + "op": "PUSH1", + "gas": 475779, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x305e0000305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0x1" + ] + }, + { + "pc": 8661, + "op": "SHL", + "gas": 475776, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x305e0000305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0x1", + "0x80" + ] + }, + { + "pc": 8662, + "op": "SWAP1", + "gas": 475773, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x305e0000305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 8663, + "op": "SWAP2", + "gas": 475770, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x305e0000305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0x100000000000000000000000000000000", + "0xffffffff" + ] + }, + { + "pc": 8664, + "op": "DIV", + "gas": 475767, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x305e0000305e", + "0xffffffff", + "0x100000000000000000000000000000000", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000" + ] + }, + { + "pc": 8665, + "op": "DUP2", + "gas": 475762, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x305e0000305e", + "0xffffffff", + "0x30500000305dffffffff00000001" + ] + }, + { + "pc": 8666, + "op": "AND", + "gas": 475759, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x305e0000305e", + "0xffffffff", + "0x30500000305dffffffff00000001", + "0xffffffff" + ] + }, + { + "pc": 8667, + "op": "SWAP2", + "gas": 475756, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x305e0000305e", + "0xffffffff", + "0x1" + ] + }, + { + "pc": 8668, + "op": "AND", + "gas": 475753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0xffffffff", + "0x305e0000305e" + ] + }, + { + "pc": 8669, + "op": "DUP2", + "gas": 475750, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e" + ] + }, + { + "pc": 8670, + "op": "PUSH2", + "gas": 475747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1" + ] + }, + { + "pc": 8673, + "op": "JUMPI", + "gas": 475744, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x2215" + ] + }, + { + "pc": 8725, + "op": "JUMPDEST", + "gas": 475734, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e" + ] + }, + { + "pc": 8726, + "op": "DUP4", + "gas": 475733, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e" + ] + }, + { + "pc": 8727, + "op": "PUSH4", + "gas": 475730, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e" + ] + }, + { + "pc": 8732, + "op": "AND", + "gas": 475727, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 8733, + "op": "DUP3", + "gas": 475724, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e" + ] + }, + { + "pc": 8734, + "op": "PUSH4", + "gas": 475721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0x1" + ] + }, + { + "pc": 8739, + "op": "AND", + "gas": 475718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0x1", + "0xffffffff" + ] + }, + { + "pc": 8740, + "op": "GT", + "gas": 475715, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0x1" + ] + }, + { + "pc": 8741, + "op": "ISZERO", + "gas": 475712, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0" + ] + }, + { + "pc": 8742, + "op": "PUSH2", + "gas": 475709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1" + ] + }, + { + "pc": 8745, + "op": "JUMPI", + "gas": 475706, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x2261" + ] + }, + { + "pc": 8801, + "op": "JUMPDEST", + "gas": 475696, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e" + ] + }, + { + "pc": 8802, + "op": "PUSH1", + "gas": 475695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e" + ] + }, + { + "pc": 8804, + "op": "PUSH1", + "gas": 475692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1" + ] + }, + { + "pc": 8806, + "op": "PUSH1", + "gas": 475689, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 8808, + "op": "SHL", + "gas": 475686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 8809, + "op": "SUB", + "gas": 475683, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8810, + "op": "DUP6", + "gas": 475680, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 8811, + "op": "AND", + "gas": 475677, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 8812, + "op": "PUSH1", + "gas": 475674, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 8814, + "op": "SWAP1", + "gas": 475671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x0" + ] + }, + { + "pc": 8815, + "op": "DUP2", + "gas": 475668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 8816, + "op": "MSTORE", + "gas": 475665, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x0" + ] + }, + { + "pc": 8817, + "op": "PUSH1", + "gas": 475662, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0" + ] + }, + { + "pc": 8819, + "op": "PUSH1", + "gas": 475659, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x8" + ] + }, + { + "pc": 8821, + "op": "MSTORE", + "gas": 475656, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 8822, + "op": "PUSH1", + "gas": 475653, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0" + ] + }, + { + "pc": 8824, + "op": "SWAP1", + "gas": 475650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 8825, + "op": "KECCAK256", + "gas": 475647, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 8826, + "op": "SLOAD", + "gas": 475605, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305dffffffff00000001000000000000000001b793c78a0f2000" + } + }, + { + "pc": 8827, + "op": "PUSH4", + "gas": 474805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000" + ] + }, + { + "pc": 8832, + "op": "DUP1", + "gas": 474802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff" + ] + }, + { + "pc": 8833, + "op": "DUP7", + "gas": 474799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 8834, + "op": "AND", + "gas": 474796, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8835, + "op": "PUSH1", + "gas": 474793, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8837, + "op": "PUSH1", + "gas": 474790, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0x305e", + "0x1" + ] + }, + { + "pc": 8839, + "op": "SHL", + "gas": 474787, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0x305e", + "0x1", + "0xa0" + ] + }, + { + "pc": 8840, + "op": "SWAP1", + "gas": 474784, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0x305e", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8841, + "op": "SWAP3", + "gas": 474781, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0x10000000000000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 8842, + "op": "DIV", + "gas": 474778, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0xffffffff", + "0x10000000000000000000000000000000000000000", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000" + ] + }, + { + "pc": 8843, + "op": "AND", + "gas": 474773, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0xffffffff", + "0x30500000305dffffffff" + ] + }, + { + "pc": 8844, + "op": "LT", + "gas": 474770, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 8845, + "op": "ISZERO", + "gas": 474767, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0" + ] + }, + { + "pc": 8846, + "op": "PUSH2", + "gas": 474764, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1" + ] + }, + { + "pc": 8849, + "op": "JUMPI", + "gas": 474761, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x22d0" + ] + }, + { + "pc": 8912, + "op": "JUMPDEST", + "gas": 474751, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e" + ] + }, + { + "pc": 8913, + "op": "PUSH1", + "gas": 474750, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e" + ] + }, + { + "pc": 8915, + "op": "PUSH1", + "gas": 474747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1" + ] + }, + { + "pc": 8917, + "op": "PUSH1", + "gas": 474744, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 8919, + "op": "SHL", + "gas": 474741, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 8920, + "op": "SUB", + "gas": 474738, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 8921, + "op": "DUP6", + "gas": 474735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 8922, + "op": "AND", + "gas": 474732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 8923, + "op": "PUSH1", + "gas": 474729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 8925, + "op": "SWAP1", + "gas": 474726, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x0" + ] + }, + { + "pc": 8926, + "op": "DUP2", + "gas": 474723, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 8927, + "op": "MSTORE", + "gas": 474720, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x0" + ] + }, + { + "pc": 8928, + "op": "PUSH1", + "gas": 474717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0" + ] + }, + { + "pc": 8930, + "op": "PUSH1", + "gas": 474714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x8" + ] + }, + { + "pc": 8932, + "op": "MSTORE", + "gas": 474711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 8933, + "op": "PUSH1", + "gas": 474708, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0" + ] + }, + { + "pc": 8935, + "op": "SWAP1", + "gas": 474705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 8936, + "op": "KECCAK256", + "gas": 474702, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 8937, + "op": "SLOAD", + "gas": 474660, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305dffffffff00000001000000000000000001b793c78a0f2000" + } + }, + { + "pc": 8938, + "op": "PUSH4", + "gas": 473860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000" + ] + }, + { + "pc": 8943, + "op": "DUP1", + "gas": 473857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff" + ] + }, + { + "pc": 8944, + "op": "DUP7", + "gas": 473854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 8945, + "op": "AND", + "gas": 473851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8946, + "op": "PUSH1", + "gas": 473848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 8948, + "op": "PUSH1", + "gas": 473845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0x305e", + "0x1" + ] + }, + { + "pc": 8950, + "op": "SHL", + "gas": 473842, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0x305e", + "0x1", + "0xc0" + ] + }, + { + "pc": 8951, + "op": "SWAP1", + "gas": 473839, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0x305e", + "0x1000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 8952, + "op": "SWAP3", + "gas": 473836, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0x1000000000000000000000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 8953, + "op": "DIV", + "gas": 473833, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0xffffffff", + "0x1000000000000000000000000000000000000000000000000", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000" + ] + }, + { + "pc": 8954, + "op": "AND", + "gas": 473828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0xffffffff", + "0x30500000305d" + ] + }, + { + "pc": 8955, + "op": "LT", + "gas": 473825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0x305d" + ] + }, + { + "pc": 8956, + "op": "PUSH2", + "gas": 473822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1" + ] + }, + { + "pc": 8959, + "op": "JUMPI", + "gas": 473819, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x233e" + ] + }, + { + "pc": 9022, + "op": "JUMPDEST", + "gas": 473809, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e" + ] + }, + { + "pc": 9023, + "op": "DUP1", + "gas": 473808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e" + ] + }, + { + "pc": 9024, + "op": "PUSH4", + "gas": 473805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9029, + "op": "AND", + "gas": 473802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9030, + "op": "DUP5", + "gas": 473799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9031, + "op": "PUSH4", + "gas": 473796, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9036, + "op": "AND", + "gas": 473793, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9037, + "op": "EQ", + "gas": 473790, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9038, + "op": "ISZERO", + "gas": 473787, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1" + ] + }, + { + "pc": 9039, + "op": "DUP1", + "gas": 473784, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0" + ] + }, + { + "pc": 9040, + "op": "ISZERO", + "gas": 473781, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9041, + "op": "PUSH2", + "gas": 473778, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x1" + ] + }, + { + "pc": 9044, + "op": "JUMPI", + "gas": 473775, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x1", + "0x237a" + ] + }, + { + "pc": 9082, + "op": "JUMPDEST", + "gas": 473765, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0" + ] + }, + { + "pc": 9083, + "op": "DUP1", + "gas": 473764, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0" + ] + }, + { + "pc": 9084, + "op": "ISZERO", + "gas": 473761, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9085, + "op": "PUSH2", + "gas": 473758, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x1" + ] + }, + { + "pc": 9088, + "op": "JUMPI", + "gas": 473755, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0", + "0x1", + "0x238d" + ] + }, + { + "pc": 9101, + "op": "JUMPDEST", + "gas": 473745, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0" + ] + }, + { + "pc": 9102, + "op": "ISZERO", + "gas": 473744, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0" + ] + }, + { + "pc": 9103, + "op": "PUSH2", + "gas": 473741, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1" + ] + }, + { + "pc": 9106, + "op": "JUMPI", + "gas": 473738, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x23d1" + ] + }, + { + "pc": 9169, + "op": "JUMPDEST", + "gas": 473728, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e" + ] + }, + { + "pc": 9170, + "op": "DUP4", + "gas": 473727, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e" + ] + }, + { + "pc": 9171, + "op": "PUSH4", + "gas": 473724, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9176, + "op": "AND", + "gas": 473721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9177, + "op": "PUSH1", + "gas": 473718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9179, + "op": "EQ", + "gas": 473715, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x305e", + "0x1" + ] + }, + { + "pc": 9180, + "op": "ISZERO", + "gas": 473712, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0" + ] + }, + { + "pc": 9181, + "op": "DUP1", + "gas": 473709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1" + ] + }, + { + "pc": 9182, + "op": "ISZERO", + "gas": 473706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x1" + ] + }, + { + "pc": 9183, + "op": "PUSH2", + "gas": 473703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 9186, + "op": "JUMPI", + "gas": 473700, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x0", + "0x2402" + ] + }, + { + "pc": 9187, + "op": "POP", + "gas": 473690, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1" + ] + }, + { + "pc": 9188, + "op": "PUSH2", + "gas": 473688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e" + ] + }, + { + "pc": 9191, + "op": "PUSH2", + "gas": 473685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400" + ] + }, + { + "pc": 9194, + "op": "PUSH4", + "gas": 473682, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb" + ] + }, + { + "pc": 9199, + "op": "DUP1", + "gas": 473679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff" + ] + }, + { + "pc": 9200, + "op": "DUP8", + "gas": 473676, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 9201, + "op": "AND", + "gas": 473673, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9202, + "op": "SWAP1", + "gas": 473670, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9203, + "op": "PUSH1", + "gas": 473667, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9205, + "op": "SWAP1", + "gas": 473664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0xffffffff", + "0x1" + ] + }, + { + "pc": 9206, + "op": "PUSH2", + "gas": 473661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0xffffffff" + ] + }, + { + "pc": 9209, + "op": "AND", + "gas": 473658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0xffffffff", + "0x3384" + ] + }, + { + "pc": 9210, + "op": "JUMP", + "gas": 473655, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x3384" + ] + }, + { + "pc": 13188, + "op": "JUMPDEST", + "gas": 473647, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1" + ] + }, + { + "pc": 13189, + "op": "PUSH1", + "gas": 473646, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1" + ] + }, + { + "pc": 13191, + "op": "DUP3", + "gas": 473643, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 13192, + "op": "PUSH4", + "gas": 473640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 13197, + "op": "AND", + "gas": 473637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13198, + "op": "DUP3", + "gas": 473634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 13199, + "op": "PUSH4", + "gas": 473631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1" + ] + }, + { + "pc": 13204, + "op": "AND", + "gas": 473628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1", + "0xffffffff" + ] + }, + { + "pc": 13205, + "op": "GT", + "gas": 473625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1" + ] + }, + { + "pc": 13206, + "op": "ISZERO", + "gas": 473622, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 13207, + "op": "PUSH2", + "gas": 473619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 13210, + "op": "JUMPI", + "gas": 473616, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0", + "0x1", + "0x2ef3" + ] + }, + { + "pc": 12019, + "op": "JUMPDEST", + "gas": 473606, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 12020, + "op": "POP", + "gas": 473605, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 12021, + "op": "SWAP1", + "gas": 473603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305e", + "0x1" + ] + }, + { + "pc": 12022, + "op": "SUB", + "gas": 473600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x1", + "0x305e" + ] + }, + { + "pc": 12023, + "op": "SWAP1", + "gas": 473597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x23fb", + "0x305d" + ] + }, + { + "pc": 12024, + "op": "JUMP", + "gas": 473594, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x23fb" + ] + }, + { + "pc": 9211, + "op": "JUMPDEST", + "gas": 473586, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 9212, + "op": "PUSH2", + "gas": 473585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 9215, + "op": "JUMP", + "gas": 473582, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x33e7" + ] + }, + { + "pc": 13287, + "op": "JUMPDEST", + "gas": 473574, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 13288, + "op": "PUSH4", + "gas": 473573, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d" + ] + }, + { + "pc": 13293, + "op": "DUP2", + "gas": 473570, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0xffffffff" + ] + }, + { + "pc": 13294, + "op": "AND", + "gas": 473567, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0xffffffff", + "0x305d" + ] + }, + { + "pc": 13295, + "op": "PUSH1", + "gas": 473564, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x305d" + ] + }, + { + "pc": 13297, + "op": "SWAP1", + "gas": 473561, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x305d", + "0x0" + ] + }, + { + "pc": 13298, + "op": "DUP2", + "gas": 473558, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d" + ] + }, + { + "pc": 13299, + "op": "MSTORE", + "gas": 473555, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d", + "0x0" + ] + }, + { + "pc": 13300, + "op": "PUSH1", + "gas": 473552, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0" + ] + }, + { + "pc": 13302, + "op": "PUSH1", + "gas": 473549, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x9" + ] + }, + { + "pc": 13304, + "op": "MSTORE", + "gas": 473546, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x9", + "0x20" + ] + }, + { + "pc": 13305, + "op": "PUSH1", + "gas": 473543, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0" + ] + }, + { + "pc": 13307, + "op": "DUP2", + "gas": 473540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x40" + ] + }, + { + "pc": 13308, + "op": "KECCAK256", + "gas": 473537, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x40", + "0x0" + ] + }, + { + "pc": 13309, + "op": "PUSH1", + "gas": 473495, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae3" + ] + }, + { + "pc": 13311, + "op": "ADD", + "gas": 473492, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae3", + "0x1" + ] + }, + { + "pc": 13312, + "op": "SLOAD", + "gas": 473489, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305dffffffff00000001000000000000000001b793c78a0f2000" + } + }, + { + "pc": 13313, + "op": "PUSH1", + "gas": 472689, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b" + ] + }, + { + "pc": 13315, + "op": "PUSH1", + "gas": 472686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b", + "0x1" + ] + }, + { + "pc": 13317, + "op": "SHL", + "gas": 472683, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b", + "0x1", + "0x40" + ] + }, + { + "pc": 13318, + "op": "SWAP1", + "gas": 472680, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f00000000689d901b", + "0x10000000000000000" + ] + }, + { + "pc": 13319, + "op": "DIV", + "gas": 472677, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x10000000000000000", + "0x305d00000000689d901f00000000689d901b" + ] + }, + { + "pc": 13320, + "op": "PUSH1", + "gas": 472672, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f" + ] + }, + { + "pc": 13322, + "op": "PUSH1", + "gas": 472669, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1" + ] + }, + { + "pc": 13324, + "op": "PUSH1", + "gas": 472666, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1", + "0x1" + ] + }, + { + "pc": 13326, + "op": "SHL", + "gas": 472663, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1", + "0x1", + "0x40" + ] + }, + { + "pc": 13327, + "op": "SUB", + "gas": 472660, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0x1", + "0x10000000000000000" + ] + }, + { + "pc": 13328, + "op": "AND", + "gas": 472657, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x305d00000000689d901f", + "0xffffffffffffffff" + ] + }, + { + "pc": 13329, + "op": "ISZERO", + "gas": 472654, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x689d901f" + ] + }, + { + "pc": 13330, + "op": "ISZERO", + "gas": 472651, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x0" + ] + }, + { + "pc": 13331, + "op": "DUP1", + "gas": 472648, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1" + ] + }, + { + "pc": 13332, + "op": "PUSH2", + "gas": 472645, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 13335, + "op": "JUMPI", + "gas": 472642, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1", + "0x1", + "0x2449" + ] + }, + { + "pc": 9289, + "op": "JUMPDEST", + "gas": 472632, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1" + ] + }, + { + "pc": 9290, + "op": "SWAP3", + "gas": 472631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x2400", + "0x305d", + "0x0", + "0x1" + ] + }, + { + "pc": 9291, + "op": "SWAP2", + "gas": 472628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x305d", + "0x0", + "0x2400" + ] + }, + { + "pc": 9292, + "op": "POP", + "gas": 472625, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x2400", + "0x0", + "0x305d" + ] + }, + { + "pc": 9293, + "op": "POP", + "gas": 472623, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x2400", + "0x0" + ] + }, + { + "pc": 9294, + "op": "JUMP", + "gas": 472621, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x2400" + ] + }, + { + "pc": 9216, + "op": "JUMPDEST", + "gas": 472613, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1" + ] + }, + { + "pc": 9217, + "op": "ISZERO", + "gas": 472612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1" + ] + }, + { + "pc": 9218, + "op": "JUMPDEST", + "gas": 472609, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0" + ] + }, + { + "pc": 9219, + "op": "ISZERO", + "gas": 472608, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x0" + ] + }, + { + "pc": 9220, + "op": "PUSH2", + "gas": 472605, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1" + ] + }, + { + "pc": 9223, + "op": "JUMPI", + "gas": 472602, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e", + "0x1", + "0x2446" + ] + }, + { + "pc": 9286, + "op": "JUMPDEST", + "gas": 472592, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e" + ] + }, + { + "pc": 9287, + "op": "POP", + "gas": 472591, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1", + "0x305e" + ] + }, + { + "pc": 9288, + "op": "POP", + "gas": 472589, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60", + "0x1" + ] + }, + { + "pc": 9289, + "op": "JUMPDEST", + "gas": 472587, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60" + ] + }, + { + "pc": 9290, + "op": "SWAP3", + "gas": 472586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xa0b", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x60" + ] + }, + { + "pc": 9291, + "op": "SWAP2", + "gas": 472583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x60", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0xa0b" + ] + }, + { + "pc": 9292, + "op": "POP", + "gas": 472580, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x60", + "0xa0b", + "0x305e", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 9293, + "op": "POP", + "gas": 472578, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x60", + "0xa0b", + "0x305e" + ] + }, + { + "pc": 9294, + "op": "JUMP", + "gas": 472576, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x60", + "0xa0b" + ] + }, + { + "pc": 2571, + "op": "JUMPDEST", + "gas": 472568, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x60" + ] + }, + { + "pc": 2572, + "op": "SWAP1", + "gas": 472567, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x60" + ] + }, + { + "pc": 2573, + "op": "POP", + "gas": 472564, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x60" + ] + }, + { + "pc": 2574, + "op": "PUSH32", + "gas": 472562, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60" + ] + }, + { + "pc": 2607, + "op": "DUP3", + "gas": 472559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0" + ] + }, + { + "pc": 2608, + "op": "SLT", + "gas": 472556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 2609, + "op": "ISZERO", + "gas": 472553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0" + ] + }, + { + "pc": 2610, + "op": "PUSH2", + "gas": 472550, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1" + ] + }, + { + "pc": 2613, + "op": "JUMPI", + "gas": 472547, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0xa82" + ] + }, + { + "pc": 2690, + "op": "JUMPDEST", + "gas": 472537, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60" + ] + }, + { + "pc": 2691, + "op": "PUSH32", + "gas": 472536, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60" + ] + }, + { + "pc": 2724, + "op": "DUP3", + "gas": 472533, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x845951614014849ffffff" + ] + }, + { + "pc": 2725, + "op": "SGT", + "gas": 472530, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x845951614014849ffffff", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 2726, + "op": "ISZERO", + "gas": 472527, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0" + ] + }, + { + "pc": 2727, + "op": "PUSH2", + "gas": 472524, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1" + ] + }, + { + "pc": 2730, + "op": "JUMPI", + "gas": 472521, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0xaf7" + ] + }, + { + "pc": 2807, + "op": "JUMPDEST", + "gas": 472511, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60" + ] + }, + { + "pc": 2808, + "op": "DUP1", + "gas": 472510, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60" + ] + }, + { + "pc": 2809, + "op": "MLOAD", + "gas": 472507, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x60" + ] + }, + { + "pc": 2810, + "op": "DUP2", + "gas": 472501, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0" + ] + }, + { + "pc": 2811, + "op": "SWAP1", + "gas": 472498, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x60" + ] + }, + { + "pc": 2812, + "op": "ISZERO", + "gas": 472495, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x60", + "0x0" + ] + }, + { + "pc": 2813, + "op": "PUSH2", + "gas": 472492, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x60", + "0x1" + ] + }, + { + "pc": 2816, + "op": "JUMPI", + "gas": 472489, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x60", + "0x1", + "0xb84" + ] + }, + { + "pc": 2948, + "op": "JUMPDEST", + "gas": 472479, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x60" + ] + }, + { + "pc": 2949, + "op": "POP", + "gas": 472478, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x60" + ] + }, + { + "pc": 2950, + "op": "PUSH2", + "gas": 472476, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60" + ] + }, + { + "pc": 2953, + "op": "DUP4", + "gas": 472473, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e" + ] + }, + { + "pc": 2954, + "op": "PUSH2", + "gas": 472470, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 2957, + "op": "JUMP", + "gas": 472467, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x244f" + ] + }, + { + "pc": 9295, + "op": "JUMPDEST", + "gas": 472459, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9296, + "op": "PUSH2", + "gas": 472458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9299, + "op": "DUP2", + "gas": 472455, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458" + ] + }, + { + "pc": 9300, + "op": "PUSH2", + "gas": 472452, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e" + ] + }, + { + "pc": 9303, + "op": "JUMP", + "gas": 472449, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x3421" + ] + }, + { + "pc": 13345, + "op": "JUMPDEST", + "gas": 472441, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e" + ] + }, + { + "pc": 13346, + "op": "PUSH1", + "gas": 472440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e" + ] + }, + { + "pc": 13348, + "op": "SLOAD", + "gas": 472437, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305dffffffff00000001000000000000000001b793c78a0f2000" + } + }, + { + "pc": 13349, + "op": "PUSH1", + "gas": 471637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x305e0000305e" + ] + }, + { + "pc": 13351, + "op": "SWAP1", + "gas": 471634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x305e0000305e", + "0x0" + ] + }, + { + "pc": 13352, + "op": "PUSH2", + "gas": 471631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305e0000305e" + ] + }, + { + "pc": 13355, + "op": "SWAP1", + "gas": 471628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305e0000305e", + "0x343d" + ] + }, + { + "pc": 13356, + "op": "PUSH4", + "gas": 471625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e0000305e" + ] + }, + { + "pc": 13361, + "op": "SWAP1", + "gas": 471622, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e0000305e", + "0xffffffff" + ] + }, + { + "pc": 13362, + "op": "DUP2", + "gas": 471619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0xffffffff", + "0x305e0000305e" + ] + }, + { + "pc": 13363, + "op": "AND", + "gas": 471616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0xffffffff", + "0x305e0000305e", + "0xffffffff" + ] + }, + { + "pc": 13364, + "op": "SWAP1", + "gas": 471613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 13365, + "op": "PUSH1", + "gas": 471610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13367, + "op": "SWAP1", + "gas": 471607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0xffffffff", + "0x1" + ] + }, + { + "pc": 13368, + "op": "PUSH2", + "gas": 471604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0xffffffff" + ] + }, + { + "pc": 13371, + "op": "AND", + "gas": 471601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0xffffffff", + "0x31fb" + ] + }, + { + "pc": 13372, + "op": "JUMP", + "gas": 471598, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x31fb" + ] + }, + { + "pc": 12795, + "op": "JUMPDEST", + "gas": 471590, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1" + ] + }, + { + "pc": 12796, + "op": "PUSH1", + "gas": 471589, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1" + ] + }, + { + "pc": 12798, + "op": "DUP3", + "gas": 471586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0" + ] + }, + { + "pc": 12799, + "op": "DUP3", + "gas": 471583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 12800, + "op": "ADD", + "gas": 471580, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305e", + "0x1" + ] + }, + { + "pc": 12801, + "op": "PUSH4", + "gas": 471577, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f" + ] + }, + { + "pc": 12806, + "op": "DUP1", + "gas": 471574, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff" + ] + }, + { + "pc": 12807, + "op": "DUP6", + "gas": 471571, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 12808, + "op": "AND", + "gas": 471568, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 12809, + "op": "SWAP1", + "gas": 471565, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 12810, + "op": "DUP3", + "gas": 471562, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 12811, + "op": "AND", + "gas": 471559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x305e", + "0xffffffff", + "0x305f" + ] + }, + { + "pc": 12812, + "op": "LT", + "gas": 471556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x305e", + "0x305f" + ] + }, + { + "pc": 12813, + "op": "ISZERO", + "gas": 471553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x0" + ] + }, + { + "pc": 12814, + "op": "PUSH2", + "gas": 471550, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x1" + ] + }, + { + "pc": 12817, + "op": "JUMPI", + "gas": 471547, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f", + "0x1", + "0x2bf3" + ] + }, + { + "pc": 11251, + "op": "JUMPDEST", + "gas": 471537, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f" + ] + }, + { + "pc": 11252, + "op": "SWAP4", + "gas": 471536, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x343d", + "0x305e", + "0x1", + "0x0", + "0x305f" + ] + }, + { + "pc": 11253, + "op": "SWAP3", + "gas": 471533, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e", + "0x1", + "0x0", + "0x343d" + ] + }, + { + "pc": 11254, + "op": "POP", + "gas": 471530, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d", + "0x1", + "0x0", + "0x305e" + ] + }, + { + "pc": 11255, + "op": "POP", + "gas": 471528, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d", + "0x1", + "0x0" + ] + }, + { + "pc": 11256, + "op": "POP", + "gas": 471526, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d", + "0x1" + ] + }, + { + "pc": 11257, + "op": "JUMP", + "gas": 471524, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x343d" + ] + }, + { + "pc": 13373, + "op": "JUMPDEST", + "gas": 471516, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f" + ] + }, + { + "pc": 13374, + "op": "PUSH4", + "gas": 471515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f" + ] + }, + { + "pc": 13379, + "op": "AND", + "gas": 471512, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0xffffffff" + ] + }, + { + "pc": 13380, + "op": "DUP3", + "gas": 471509, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f" + ] + }, + { + "pc": 13381, + "op": "PUSH4", + "gas": 471506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e" + ] + }, + { + "pc": 13386, + "op": "AND", + "gas": 471503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13387, + "op": "EQ", + "gas": 471500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x305f", + "0x305e" + ] + }, + { + "pc": 13388, + "op": "SWAP1", + "gas": 471497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 13389, + "op": "POP", + "gas": 471494, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 13390, + "op": "SWAP2", + "gas": 471492, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x2458", + "0x305e", + "0x0" + ] + }, + { + "pc": 13391, + "op": "SWAP1", + "gas": 471489, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x305e", + "0x2458" + ] + }, + { + "pc": 13392, + "op": "POP", + "gas": 471486, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x2458", + "0x305e" + ] + }, + { + "pc": 13393, + "op": "JUMP", + "gas": 471484, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x2458" + ] + }, + { + "pc": 9304, + "op": "JUMPDEST", + "gas": 471476, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9305, + "op": "PUSH2", + "gas": 471475, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9308, + "op": "JUMPI", + "gas": 471472, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x0", + "0x2461" + ] + }, + { + "pc": 9309, + "op": "PUSH2", + "gas": 471462, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9312, + "op": "JUMP", + "gas": 471459, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e", + "0x24e0" + ] + }, + { + "pc": 9440, + "op": "JUMPDEST", + "gas": 471451, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9441, + "op": "POP", + "gas": 471450, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e", + "0x305e" + ] + }, + { + "pc": 9442, + "op": "JUMP", + "gas": 471448, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb8e" + ] + }, + { + "pc": 2958, + "op": "JUMPDEST", + "gas": 471440, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60" + ] + }, + { + "pc": 2959, + "op": "PUSH2", + "gas": 471439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60" + ] + }, + { + "pc": 2962, + "op": "DUP3", + "gas": 471436, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98" + ] + }, + { + "pc": 2963, + "op": "DUP5", + "gas": 471433, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 2964, + "op": "PUSH2", + "gas": 471430, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e" + ] + }, + { + "pc": 2967, + "op": "JUMP", + "gas": 471427, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24e3" + ] + }, + { + "pc": 9443, + "op": "JUMPDEST", + "gas": 471419, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e" + ] + }, + { + "pc": 9444, + "op": "PUSH2", + "gas": 471418, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e" + ] + }, + { + "pc": 9447, + "op": "DUP2", + "gas": 471415, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec" + ] + }, + { + "pc": 9448, + "op": "PUSH2", + "gas": 471412, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0x305e" + ] + }, + { + "pc": 9451, + "op": "JUMP", + "gas": 471409, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0x305e", + "0x3605" + ] + }, + { + "pc": 13829, + "op": "JUMPDEST", + "gas": 471401, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0x305e" + ] + }, + { + "pc": 13830, + "op": "PUSH4", + "gas": 471400, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0x305e" + ] + }, + { + "pc": 13835, + "op": "SWAP1", + "gas": 471397, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13836, + "op": "DUP2", + "gas": 471394, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 13837, + "op": "AND", + "gas": 471391, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 13838, + "op": "PUSH1", + "gas": 471388, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 13840, + "op": "SWAP1", + "gas": 471385, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x305e", + "0x0" + ] + }, + { + "pc": 13841, + "op": "DUP2", + "gas": 471382, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0x305e" + ] + }, + { + "pc": 13842, + "op": "MSTORE", + "gas": 471379, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 13843, + "op": "PUSH1", + "gas": 471376, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 13845, + "op": "PUSH1", + "gas": 471373, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0xa" + ] + }, + { + "pc": 13847, + "op": "MSTORE", + "gas": 471370, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 13848, + "op": "PUSH1", + "gas": 471367, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 13850, + "op": "SWAP1", + "gas": 471364, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 13851, + "op": "KECCAK256", + "gas": 471361, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x40", + "0x0" + ] + }, + { + "pc": 13852, + "op": "PUSH1", + "gas": 471319, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 13854, + "op": "ADD", + "gas": 471316, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 13855, + "op": "SLOAD", + "gas": 471313, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305dffffffff00000001000000000000000001b793c78a0f2000" + } + }, + { + "pc": 13856, + "op": "AND", + "gas": 470513, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0xffffffff", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 13857, + "op": "ISZERO", + "gas": 470510, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0x6" + ] + }, + { + "pc": 13858, + "op": "ISZERO", + "gas": 470507, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0x0" + ] + }, + { + "pc": 13859, + "op": "SWAP1", + "gas": 470504, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x24ec", + "0x1" + ] + }, + { + "pc": 13860, + "op": "JUMP", + "gas": 470501, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x1", + "0x24ec" + ] + }, + { + "pc": 9452, + "op": "JUMPDEST", + "gas": 470493, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9453, + "op": "PUSH2", + "gas": 470492, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x1" + ] + }, + { + "pc": 9456, + "op": "JUMPI", + "gas": 470489, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x1", + "0x253d" + ] + }, + { + "pc": 9533, + "op": "JUMPDEST", + "gas": 470479, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e" + ] + }, + { + "pc": 9534, + "op": "PUSH4", + "gas": 470478, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e" + ] + }, + { + "pc": 9539, + "op": "DUP2", + "gas": 470475, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9540, + "op": "AND", + "gas": 470472, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9541, + "op": "PUSH1", + "gas": 470469, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e" + ] + }, + { + "pc": 9543, + "op": "DUP2", + "gas": 470466, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9544, + "op": "DUP2", + "gas": 470463, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x305e" + ] + }, + { + "pc": 9545, + "op": "MSTORE", + "gas": 470460, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9546, + "op": "PUSH1", + "gas": 470457, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0" + ] + }, + { + "pc": 9548, + "op": "PUSH1", + "gas": 470454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0xa" + ] + }, + { + "pc": 9550, + "op": "SWAP1", + "gas": 470451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 9551, + "op": "DUP2", + "gas": 470448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0xa" + ] + }, + { + "pc": 9552, + "op": "MSTORE", + "gas": 470445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0xa", + "0x20" + ] + }, + { + "pc": 9553, + "op": "PUSH1", + "gas": 470442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20" + ] + }, + { + "pc": 9555, + "op": "DUP1", + "gas": 470439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40" + ] + }, + { + "pc": 9556, + "op": "DUP4", + "gas": 470436, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x40" + ] + }, + { + "pc": 9557, + "op": "KECCAK256", + "gas": 470433, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x40", + "0x0" + ] + }, + { + "pc": 9558, + "op": "DUP1", + "gas": 470391, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9559, + "op": "SLOAD", + "gas": 470388, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000004", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305dffffffff00000001000000000000000001b793c78a0f2000" + } + }, + { + "pc": 9560, + "op": "PUSH1", + "gas": 469588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4" + ] + }, + { + "pc": 9562, + "op": "DUP1", + "gas": 469585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x1" + ] + }, + { + "pc": 9563, + "op": "DUP3", + "gas": 469582, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x1", + "0x1" + ] + }, + { + "pc": 9564, + "op": "ADD", + "gas": 469579, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x1", + "0x1", + "0x4" + ] + }, + { + "pc": 9565, + "op": "DUP4", + "gas": 469576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x1", + "0x5" + ] + }, + { + "pc": 9566, + "op": "SSTORE", + "gas": 469573, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x1", + "0x5", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305dffffffff00000001000000000000000001b793c78a0f2000" + } + }, + { + "pc": 9567, + "op": "SWAP2", + "gas": 464573, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x4", + "0x1" + ] + }, + { + "pc": 9568, + "op": "DUP6", + "gas": 464570, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x4", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9569, + "op": "MSTORE", + "gas": 464567, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x4", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x0" + ] + }, + { + "pc": 9570, + "op": "DUP4", + "gas": 464564, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x4" + ] + }, + { + "pc": 9571, + "op": "DUP6", + "gas": 464561, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x4", + "0x20" + ] + }, + { + "pc": 9572, + "op": "KECCAK256", + "gas": 464558, + "gasCost": 36, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x4", + "0x20", + "0x0" + ] + }, + { + "pc": 9573, + "op": "ADD", + "gas": 464522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x4", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f" + ] + }, + { + "pc": 9574, + "op": "DUP8", + "gas": 464519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53" + ] + }, + { + "pc": 9575, + "op": "SWAP1", + "gas": 464516, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 9576, + "op": "SSTORE", + "gas": 464513, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x41f1a875c8f2438ca0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305dffffffff00000001000000000000000001b793c78a0f2000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9577, + "op": "CALLER", + "gas": 444513, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1" + ] + }, + { + "pc": 9578, + "op": "DUP1", + "gas": 444511, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 9579, + "op": "DUP6", + "gas": 444508, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 9580, + "op": "MSTORE", + "gas": 444505, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x0" + ] + }, + { + "pc": 9581, + "op": "PUSH1", + "gas": 444502, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 9583, + "op": "SWAP1", + "gas": 444499, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x8" + ] + }, + { + "pc": 9584, + "op": "SWAP4", + "gas": 444496, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x20", + "0x40", + "0x1", + "0x8", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 9585, + "op": "MSTORE", + "gas": 444493, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0x8", + "0x20" + ] + }, + { + "pc": 9586, + "op": "DUP2", + "gas": 444490, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1" + ] + }, + { + "pc": 9587, + "op": "DUP5", + "gas": 444487, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0x40" + ] + }, + { + "pc": 9588, + "op": "KECCAK256", + "gas": 444484, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0x40", + "0x0" + ] + }, + { + "pc": 9589, + "op": "DUP1", + "gas": 444442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443" + ] + }, + { + "pc": 9590, + "op": "SLOAD", + "gas": 444439, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305dffffffff00000001000000000000000001b793c78a0f2000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9591, + "op": "PUSH4", + "gas": 443639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000" + ] + }, + { + "pc": 9596, + "op": "PUSH1", + "gas": 443636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff" + ] + }, + { + "pc": 9598, + "op": "SHL", + "gas": 443633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff", + "0xc0" + ] + }, + { + "pc": 9599, + "op": "NOT", + "gas": 443630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 9600, + "op": "AND", + "gas": 443627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305dffffffff00000001000000000000000001b793c78a0f2000", + "0xffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 9601, + "op": "PUSH1", + "gas": 443624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x305000000000ffffffff00000001000000000000000001b793c78a0f2000" + ] + }, + { + "pc": 9603, + "op": "PUSH1", + "gas": 443621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x305000000000ffffffff00000001000000000000000001b793c78a0f2000", + "0x1" + ] + }, + { + "pc": 9605, + "op": "SHL", + "gas": 443618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x305000000000ffffffff00000001000000000000000001b793c78a0f2000", + "0x1", + "0xc0" + ] + }, + { + "pc": 9606, + "op": "DUP8", + "gas": 443615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x305000000000ffffffff00000001000000000000000001b793c78a0f2000", + "0x1000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 9607, + "op": "MUL", + "gas": 443612, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x305000000000ffffffff00000001000000000000000001b793c78a0f2000", + "0x1000000000000000000000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 9608, + "op": "OR", + "gas": 443607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x305000000000ffffffff00000001000000000000000001b793c78a0f2000", + "0x305e000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 9609, + "op": "DUP2", + "gas": 443604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff00000001000000000000000001b793c78a0f2000" + ] + }, + { + "pc": 9610, + "op": "SSTORE", + "gas": 443601, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff00000001000000000000000001b793c78a0f2000", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9611, + "op": "ADD", + "gas": 438601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x1", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443" + ] + }, + { + "pc": 9612, + "op": "DUP7", + "gas": 438598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444" + ] + }, + { + "pc": 9613, + "op": "SWAP1", + "gas": 438595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 9614, + "op": "SSTORE", + "gas": 438592, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40", + "0x41f1a875c8f2438ca0", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9615, + "op": "MLOAD", + "gas": 433592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x40" + ] + }, + { + "pc": 9616, + "op": "SWAP1", + "gas": 433589, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x80" + ] + }, + { + "pc": 9617, + "op": "SWAP3", + "gas": 433586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x305e", + "0x0", + "0x80", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 9618, + "op": "SWAP2", + "gas": 433583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x0", + "0x80", + "0x305e" + ] + }, + { + "pc": 9619, + "op": "DUP6", + "gas": 433580, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x80", + "0x0" + ] + }, + { + "pc": 9620, + "op": "SWAP2", + "gas": 433577, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x80", + "0x0", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 9621, + "op": "PUSH32", + "gas": 433574, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x0", + "0x80" + ] + }, + { + "pc": 9654, + "op": "SWAP2", + "gas": 433571, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x0", + "0x80", + "0x92e98423f8adac6e64d0608e519fd1cefb861498385c6dee70d58fc926ddc68c" + ] + }, + { + "pc": 9655, + "op": "SWAP1", + "gas": 433568, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x92e98423f8adac6e64d0608e519fd1cefb861498385c6dee70d58fc926ddc68c", + "0x80", + "0x0" + ] + }, + { + "pc": 9656, + "op": "LOG4", + "gas": 433565, + "gasCost": 1875, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x92e98423f8adac6e64d0608e519fd1cefb861498385c6dee70d58fc926ddc68c", + "0x0", + "0x80" + ] + }, + { + "pc": 9657, + "op": "POP", + "gas": 431690, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0", + "0x305e" + ] + }, + { + "pc": 9658, + "op": "POP", + "gas": 431688, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 9659, + "op": "JUMP", + "gas": 431686, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0xb98" + ] + }, + { + "pc": 2968, + "op": "JUMPDEST", + "gas": 431678, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60" + ] + }, + { + "pc": 2969, + "op": "PUSH1", + "gas": 431677, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60" + ] + }, + { + "pc": 2971, + "op": "DUP1", + "gas": 431674, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0" + ] + }, + { + "pc": 2972, + "op": "PUSH2", + "gas": 431671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0" + ] + }, + { + "pc": 2975, + "op": "DUP6", + "gas": 431668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4" + ] + }, + { + "pc": 2976, + "op": "PUSH2", + "gas": 431665, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e" + ] + }, + { + "pc": 2979, + "op": "JUMP", + "gas": 431662, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x25bc" + ] + }, + { + "pc": 9660, + "op": "JUMPDEST", + "gas": 431654, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e" + ] + }, + { + "pc": 9661, + "op": "PUSH4", + "gas": 431653, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e" + ] + }, + { + "pc": 9666, + "op": "DUP1", + "gas": 431650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 9667, + "op": "DUP3", + "gas": 431647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 9668, + "op": "AND", + "gas": 431644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9669, + "op": "PUSH1", + "gas": 431641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9671, + "op": "SWAP1", + "gas": 431638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x305e", + "0x0" + ] + }, + { + "pc": 9672, + "op": "DUP2", + "gas": 431635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x305e" + ] + }, + { + "pc": 9673, + "op": "MSTORE", + "gas": 431632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9674, + "op": "PUSH1", + "gas": 431629, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 9676, + "op": "PUSH1", + "gas": 431626, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0xa" + ] + }, + { + "pc": 9678, + "op": "MSTORE", + "gas": 431623, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 9679, + "op": "PUSH1", + "gas": 431620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 9681, + "op": "DUP2", + "gas": 431617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 9682, + "op": "KECCAK256", + "gas": 431614, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x40", + "0x0" + ] + }, + { + "pc": 9683, + "op": "PUSH1", + "gas": 431572, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9685, + "op": "DUP2", + "gas": 431569, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 9686, + "op": "ADD", + "gas": 431566, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9687, + "op": "SLOAD", + "gas": 431563, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9688, + "op": "SWAP1", + "gas": 430763, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 9689, + "op": "SLOAD", + "gas": 430760, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9690, + "op": "SWAP2", + "gas": 429960, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0x5" + ] + }, + { + "pc": 9691, + "op": "SWAP3", + "gas": 429957, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0xffffffff", + "0x5", + "0x9184e72a0000000003c0000000300000006", + "0x0" + ] + }, + { + "pc": 9692, + "op": "DUP4", + "gas": 429954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x5", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff" + ] + }, + { + "pc": 9693, + "op": "SWAP3", + "gas": 429951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x5", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 9694, + "op": "PUSH1", + "gas": 429948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x5" + ] + }, + { + "pc": 9696, + "op": "PUSH1", + "gas": 429945, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x5", + "0x1" + ] + }, + { + "pc": 9698, + "op": "SHL", + "gas": 429942, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x5", + "0x1", + "0x20" + ] + }, + { + "pc": 9699, + "op": "SWAP1", + "gas": 429939, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x5", + "0x100000000" + ] + }, + { + "pc": 9700, + "op": "SWAP3", + "gas": 429936, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff", + "0x100000000", + "0x5" + ] + }, + { + "pc": 9701, + "op": "DIV", + "gas": 429933, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x5", + "0xffffffff", + "0x100000000", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 9702, + "op": "AND", + "gas": 429928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x5", + "0xffffffff", + "0x9184e72a0000000003c00000003" + ] + }, + { + "pc": 9703, + "op": "GT", + "gas": 429925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x5", + "0x3" + ] + }, + { + "pc": 9704, + "op": "ISZERO", + "gas": 429922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 9705, + "op": "PUSH2", + "gas": 429919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 9708, + "op": "JUMPI", + "gas": 429916, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x1", + "0x25f7" + ] + }, + { + "pc": 9719, + "op": "JUMPDEST", + "gas": 429906, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9720, + "op": "PUSH4", + "gas": 429905, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0" + ] + }, + { + "pc": 9725, + "op": "DUP4", + "gas": 429902, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0xffffffff" + ] + }, + { + "pc": 9726, + "op": "AND", + "gas": 429899, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9727, + "op": "PUSH1", + "gas": 429896, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x305e" + ] + }, + { + "pc": 9729, + "op": "SWAP1", + "gas": 429893, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9730, + "op": "DUP2", + "gas": 429890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x305e" + ] + }, + { + "pc": 9731, + "op": "MSTORE", + "gas": 429887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9732, + "op": "PUSH1", + "gas": 429884, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 9734, + "op": "PUSH1", + "gas": 429881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0xa" + ] + }, + { + "pc": 9736, + "op": "SWAP1", + "gas": 429878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 9737, + "op": "DUP2", + "gas": 429875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0xa" + ] + }, + { + "pc": 9738, + "op": "MSTORE", + "gas": 429872, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0xa", + "0x20" + ] + }, + { + "pc": 9739, + "op": "PUSH1", + "gas": 429869, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 9741, + "op": "DUP1", + "gas": 429866, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40" + ] + }, + { + "pc": 9742, + "op": "DUP4", + "gas": 429863, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x40" + ] + }, + { + "pc": 9743, + "op": "KECCAK256", + "gas": 429860, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x40", + "0x0" + ] + }, + { + "pc": 9744, + "op": "DUP1", + "gas": 429818, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9745, + "op": "SLOAD", + "gas": 429815, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9746, + "op": "DUP3", + "gas": 429015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5" + ] + }, + { + "pc": 9747, + "op": "MLOAD", + "gas": 429012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x40" + ] + }, + { + "pc": 9748, + "op": "DUP2", + "gas": 429009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x80" + ] + }, + { + "pc": 9749, + "op": "DUP6", + "gas": 429006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x80", + "0x5" + ] + }, + { + "pc": 9750, + "op": "MUL", + "gas": 429003, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x80", + "0x5", + "0x20" + ] + }, + { + "pc": 9751, + "op": "DUP2", + "gas": 428998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x80", + "0xa0" + ] + }, + { + "pc": 9752, + "op": "ADD", + "gas": 428995, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x80", + "0xa0", + "0x80" + ] + }, + { + "pc": 9753, + "op": "DUP6", + "gas": 428992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x80", + "0x120" + ] + }, + { + "pc": 9754, + "op": "ADD", + "gas": 428989, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x80", + "0x120", + "0x20" + ] + }, + { + "pc": 9755, + "op": "SWAP1", + "gas": 428986, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x80", + "0x140" + ] + }, + { + "pc": 9756, + "op": "SWAP4", + "gas": 428983, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x40", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0x80" + ] + }, + { + "pc": 9757, + "op": "MSTORE", + "gas": 428980, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0x40" + ] + }, + { + "pc": 9758, + "op": "DUP1", + "gas": 428977, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5" + ] + }, + { + "pc": 9759, + "op": "DUP4", + "gas": 428974, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x5" + ] + }, + { + "pc": 9760, + "op": "MSTORE", + "gas": 428971, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x5", + "0x80" + ] + }, + { + "pc": 9761, + "op": "PUSH2", + "gas": 428965, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5" + ] + }, + { + "pc": 9764, + "op": "SWAP4", + "gas": 428962, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x265d" + ] + }, + { + "pc": 9765, + "op": "DUP4", + "gas": 428959, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x20" + ] + }, + { + "pc": 9766, + "op": "ADD", + "gas": 428956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x20", + "0x80" + ] + }, + { + "pc": 9767, + "op": "DUP3", + "gas": 428953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0xa0" + ] + }, + { + "pc": 9768, + "op": "DUP3", + "gas": 428950, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9769, + "op": "DUP1", + "gas": 428947, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5" + ] + }, + { + "pc": 9770, + "op": "ISZERO", + "gas": 428944, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x5" + ] + }, + { + "pc": 9771, + "op": "PUSH2", + "gas": 428941, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x0" + ] + }, + { + "pc": 9774, + "op": "JUMPI", + "gas": 428938, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x0", + "0x2653" + ] + }, + { + "pc": 9775, + "op": "PUSH1", + "gas": 428928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5" + ] + }, + { + "pc": 9777, + "op": "MUL", + "gas": 428925, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x20" + ] + }, + { + "pc": 9778, + "op": "DUP3", + "gas": 428920, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0xa0" + ] + }, + { + "pc": 9779, + "op": "ADD", + "gas": 428917, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0xa0", + "0xa0" + ] + }, + { + "pc": 9780, + "op": "SWAP2", + "gas": 428914, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x140" + ] + }, + { + "pc": 9781, + "op": "SWAP1", + "gas": 428911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0xa0" + ] + }, + { + "pc": 9782, + "op": "PUSH1", + "gas": 428908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9784, + "op": "MSTORE", + "gas": 428905, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xa0", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x0" + ] + }, + { + "pc": 9785, + "op": "PUSH1", + "gas": 428902, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xa0" + ] + }, + { + "pc": 9787, + "op": "PUSH1", + "gas": 428899, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xa0", + "0x20" + ] + }, + { + "pc": 9789, + "op": "KECCAK256", + "gas": 428896, + "gasCost": 36, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xa0", + "0x20", + "0x0" + ] + }, + { + "pc": 9790, + "op": "SWAP1", + "gas": 428860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xa0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f" + ] + }, + { + "pc": 9791, + "op": "JUMPDEST", + "gas": 428857, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0" + ] + }, + { + "pc": 9792, + "op": "DUP2", + "gas": 428856, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0" + ] + }, + { + "pc": 9793, + "op": "SLOAD", + "gas": 428853, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9794, + "op": "DUP2", + "gas": 428053, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 9795, + "op": "MSTORE", + "gas": 428050, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0", + "0x41ee3e171aea2d7280", + "0xa0" + ] + }, + { + "pc": 9796, + "op": "PUSH1", + "gas": 428044, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0" + ] + }, + { + "pc": 9798, + "op": "ADD", + "gas": 428041, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xa0", + "0x20" + ] + }, + { + "pc": 9799, + "op": "SWAP1", + "gas": 428038, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0xc0" + ] + }, + { + "pc": 9800, + "op": "PUSH1", + "gas": 428035, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xc0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f" + ] + }, + { + "pc": 9802, + "op": "ADD", + "gas": 428032, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xc0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f", + "0x1" + ] + }, + { + "pc": 9803, + "op": "SWAP1", + "gas": 428029, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xc0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50" + ] + }, + { + "pc": 9804, + "op": "DUP1", + "gas": 428026, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0" + ] + }, + { + "pc": 9805, + "op": "DUP4", + "gas": 428023, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0xc0" + ] + }, + { + "pc": 9806, + "op": "GT", + "gas": 428020, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0xc0", + "0x140" + ] + }, + { + "pc": 9807, + "op": "PUSH2", + "gas": 428017, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x1" + ] + }, + { + "pc": 9810, + "op": "JUMPI", + "gas": 428014, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x1", + "0x263f" + ] + }, + { + "pc": 9791, + "op": "JUMPDEST", + "gas": 428004, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0" + ] + }, + { + "pc": 9792, + "op": "DUP2", + "gas": 428003, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0" + ] + }, + { + "pc": 9793, + "op": "SLOAD", + "gas": 428000, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9794, + "op": "DUP2", + "gas": 427200, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 9795, + "op": "MSTORE", + "gas": 427197, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x41f5599db40e4c4000", + "0xc0" + ] + }, + { + "pc": 9796, + "op": "PUSH1", + "gas": 427191, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0" + ] + }, + { + "pc": 9798, + "op": "ADD", + "gas": 427188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xc0", + "0x20" + ] + }, + { + "pc": 9799, + "op": "SWAP1", + "gas": 427185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0xe0" + ] + }, + { + "pc": 9800, + "op": "PUSH1", + "gas": 427182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50" + ] + }, + { + "pc": 9802, + "op": "ADD", + "gas": 427179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50", + "0x1" + ] + }, + { + "pc": 9803, + "op": "SWAP1", + "gas": 427176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51" + ] + }, + { + "pc": 9804, + "op": "DUP1", + "gas": 427173, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0" + ] + }, + { + "pc": 9805, + "op": "DUP4", + "gas": 427170, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0xe0" + ] + }, + { + "pc": 9806, + "op": "GT", + "gas": 427167, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0xe0", + "0x140" + ] + }, + { + "pc": 9807, + "op": "PUSH2", + "gas": 427164, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x1" + ] + }, + { + "pc": 9810, + "op": "JUMPI", + "gas": 427161, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x1", + "0x263f" + ] + }, + { + "pc": 9791, + "op": "JUMPDEST", + "gas": 427151, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0" + ] + }, + { + "pc": 9792, + "op": "DUP2", + "gas": 427150, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0" + ] + }, + { + "pc": 9793, + "op": "SLOAD", + "gas": 427147, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9794, + "op": "DUP2", + "gas": 426347, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x41edd68838a5610000" + ] + }, + { + "pc": 9795, + "op": "MSTORE", + "gas": 426344, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x41edd68838a5610000", + "0xe0" + ] + }, + { + "pc": 9796, + "op": "PUSH1", + "gas": 426338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0" + ] + }, + { + "pc": 9798, + "op": "ADD", + "gas": 426335, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0xe0", + "0x20" + ] + }, + { + "pc": 9799, + "op": "SWAP1", + "gas": 426332, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0x100" + ] + }, + { + "pc": 9800, + "op": "PUSH1", + "gas": 426329, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51" + ] + }, + { + "pc": 9802, + "op": "ADD", + "gas": 426326, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51", + "0x1" + ] + }, + { + "pc": 9803, + "op": "SWAP1", + "gas": 426323, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52" + ] + }, + { + "pc": 9804, + "op": "DUP1", + "gas": 426320, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100" + ] + }, + { + "pc": 9805, + "op": "DUP4", + "gas": 426317, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x100" + ] + }, + { + "pc": 9806, + "op": "GT", + "gas": 426314, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x100", + "0x140" + ] + }, + { + "pc": 9807, + "op": "PUSH2", + "gas": 426311, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x1" + ] + }, + { + "pc": 9810, + "op": "JUMPI", + "gas": 426308, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x1", + "0x263f" + ] + }, + { + "pc": 9791, + "op": "JUMPDEST", + "gas": 426298, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100" + ] + }, + { + "pc": 9792, + "op": "DUP2", + "gas": 426297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100" + ] + }, + { + "pc": 9793, + "op": "SLOAD", + "gas": 426294, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9794, + "op": "DUP2", + "gas": 425494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x41f53671b4af058000" + ] + }, + { + "pc": 9795, + "op": "MSTORE", + "gas": 425491, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x41f53671b4af058000", + "0x100" + ] + }, + { + "pc": 9796, + "op": "PUSH1", + "gas": 425485, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100" + ] + }, + { + "pc": 9798, + "op": "ADD", + "gas": 425482, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x100", + "0x20" + ] + }, + { + "pc": 9799, + "op": "SWAP1", + "gas": 425479, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x120" + ] + }, + { + "pc": 9800, + "op": "PUSH1", + "gas": 425476, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52" + ] + }, + { + "pc": 9802, + "op": "ADD", + "gas": 425473, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52", + "0x1" + ] + }, + { + "pc": 9803, + "op": "SWAP1", + "gas": 425470, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53" + ] + }, + { + "pc": 9804, + "op": "DUP1", + "gas": 425467, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120" + ] + }, + { + "pc": 9805, + "op": "DUP4", + "gas": 425464, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120", + "0x120" + ] + }, + { + "pc": 9806, + "op": "GT", + "gas": 425461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120", + "0x120", + "0x140" + ] + }, + { + "pc": 9807, + "op": "PUSH2", + "gas": 425458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120", + "0x1" + ] + }, + { + "pc": 9810, + "op": "JUMPI", + "gas": 425455, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120", + "0x1", + "0x263f" + ] + }, + { + "pc": 9791, + "op": "JUMPDEST", + "gas": 425445, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120" + ] + }, + { + "pc": 9792, + "op": "DUP2", + "gas": 425444, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120" + ] + }, + { + "pc": 9793, + "op": "SLOAD", + "gas": 425441, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9794, + "op": "DUP2", + "gas": 424641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 9795, + "op": "MSTORE", + "gas": 424638, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120", + "0x41f1a875c8f2438ca0", + "0x120" + ] + }, + { + "pc": 9796, + "op": "PUSH1", + "gas": 424632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120" + ] + }, + { + "pc": 9798, + "op": "ADD", + "gas": 424629, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x120", + "0x20" + ] + }, + { + "pc": 9799, + "op": "SWAP1", + "gas": 424626, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x140" + ] + }, + { + "pc": 9800, + "op": "PUSH1", + "gas": 424623, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53" + ] + }, + { + "pc": 9802, + "op": "ADD", + "gas": 424620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53", + "0x1" + ] + }, + { + "pc": 9803, + "op": "SWAP1", + "gas": 424617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c54" + ] + }, + { + "pc": 9804, + "op": "DUP1", + "gas": 424614, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c54", + "0x140" + ] + }, + { + "pc": 9805, + "op": "DUP4", + "gas": 424611, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c54", + "0x140", + "0x140" + ] + }, + { + "pc": 9806, + "op": "GT", + "gas": 424608, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c54", + "0x140", + "0x140", + "0x140" + ] + }, + { + "pc": 9807, + "op": "PUSH2", + "gas": 424605, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c54", + "0x140", + "0x0" + ] + }, + { + "pc": 9810, + "op": "JUMPI", + "gas": 424602, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c54", + "0x140", + "0x0", + "0x263f" + ] + }, + { + "pc": 9811, + "op": "JUMPDEST", + "gas": 424592, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c54", + "0x140" + ] + }, + { + "pc": 9812, + "op": "POP", + "gas": 424591, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c54", + "0x140" + ] + }, + { + "pc": 9813, + "op": "POP", + "gas": 424589, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140", + "0xe970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c54" + ] + }, + { + "pc": 9814, + "op": "POP", + "gas": 424587, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5", + "0x140" + ] + }, + { + "pc": 9815, + "op": "POP", + "gas": 424585, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x5" + ] + }, + { + "pc": 9816, + "op": "POP", + "gas": 424583, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 9817, + "op": "PUSH2", + "gas": 424581, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80" + ] + }, + { + "pc": 9820, + "op": "JUMP", + "gas": 424578, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x3625" + ] + }, + { + "pc": 13861, + "op": "JUMPDEST", + "gas": 424570, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80" + ] + }, + { + "pc": 13862, + "op": "PUSH1", + "gas": 424569, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80" + ] + }, + { + "pc": 13864, + "op": "DUP2", + "gas": 424566, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0" + ] + }, + { + "pc": 13865, + "op": "MLOAD", + "gas": 424563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 13866, + "op": "PUSH1", + "gas": 424560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5" + ] + }, + { + "pc": 13868, + "op": "LT", + "gas": 424557, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x0" + ] + }, + { + "pc": 13869, + "op": "PUSH2", + "gas": 424554, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 13872, + "op": "JUMPI", + "gas": 424551, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x1", + "0x3676" + ] + }, + { + "pc": 13942, + "op": "JUMPDEST", + "gas": 424541, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0" + ] + }, + { + "pc": 13943, + "op": "DUP2", + "gas": 424540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0" + ] + }, + { + "pc": 13944, + "op": "MLOAD", + "gas": 424537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 13945, + "op": "PUSH1", + "gas": 424534, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5" + ] + }, + { + "pc": 13947, + "op": "DUP2", + "gas": 424531, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2" + ] + }, + { + "pc": 13948, + "op": "DIV", + "gas": 424528, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x5" + ] + }, + { + "pc": 13949, + "op": "PUSH1", + "gas": 424523, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2" + ] + }, + { + "pc": 13951, + "op": "DUP3", + "gas": 424520, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x1" + ] + }, + { + "pc": 13952, + "op": "AND", + "gas": 424517, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x1", + "0x5" + ] + }, + { + "pc": 13953, + "op": "PUSH2", + "gas": 424514, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x1" + ] + }, + { + "pc": 13956, + "op": "JUMPI", + "gas": 424511, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x1", + "0x36b5" + ] + }, + { + "pc": 14005, + "op": "JUMPDEST", + "gas": 424501, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2" + ] + }, + { + "pc": 14006, + "op": "PUSH2", + "gas": 424500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2" + ] + }, + { + "pc": 14009, + "op": "DUP5", + "gas": 424497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5" + ] + }, + { + "pc": 14010, + "op": "PUSH1", + "gas": 424494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80" + ] + }, + { + "pc": 14012, + "op": "PUSH1", + "gas": 424491, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0" + ] + }, + { + "pc": 14014, + "op": "DUP6", + "gas": 424488, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 14015, + "op": "SUB", + "gas": 424485, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x1", + "0x5" + ] + }, + { + "pc": 14016, + "op": "DUP5", + "gas": 424482, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4" + ] + }, + { + "pc": 14017, + "op": "PUSH2", + "gas": 424479, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2" + ] + }, + { + "pc": 14020, + "op": "JUMP", + "gas": 424476, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x3ab5" + ] + }, + { + "pc": 15029, + "op": "JUMPDEST", + "gas": 424468, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2" + ] + }, + { + "pc": 15030, + "op": "PUSH1", + "gas": 424467, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2" + ] + }, + { + "pc": 15032, + "op": "DUP2", + "gas": 424464, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0" + ] + }, + { + "pc": 15033, + "op": "DUP5", + "gas": 424461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x2" + ] + }, + { + "pc": 15034, + "op": "GT", + "gas": 424458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x2", + "0x0" + ] + }, + { + "pc": 15035, + "op": "ISZERO", + "gas": 424455, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 15036, + "op": "PUSH2", + "gas": 424452, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x1" + ] + }, + { + "pc": 15039, + "op": "JUMPI", + "gas": 424449, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x1", + "0x3ac4" + ] + }, + { + "pc": 15044, + "op": "JUMPDEST", + "gas": 424439, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0" + ] + }, + { + "pc": 15045, + "op": "DUP3", + "gas": 424438, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0" + ] + }, + { + "pc": 15046, + "op": "DUP3", + "gas": 424435, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x4" + ] + }, + { + "pc": 15047, + "op": "GT", + "gas": 424432, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x4", + "0x2" + ] + }, + { + "pc": 15048, + "op": "ISZERO", + "gas": 424429, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 15049, + "op": "PUSH2", + "gas": 424426, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x1" + ] + }, + { + "pc": 15052, + "op": "JUMPI", + "gas": 424423, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x1", + "0x3ad1" + ] + }, + { + "pc": 15057, + "op": "JUMPDEST", + "gas": 424413, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0" + ] + }, + { + "pc": 15058, + "op": "DUP3", + "gas": 424412, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0" + ] + }, + { + "pc": 15059, + "op": "DUP5", + "gas": 424409, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x4" + ] + }, + { + "pc": 15060, + "op": "LT", + "gas": 424406, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x4", + "0x0" + ] + }, + { + "pc": 15061, + "op": "ISZERO", + "gas": 424403, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x1" + ] + }, + { + "pc": 15062, + "op": "PUSH2", + "gas": 424400, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 15065, + "op": "JUMPI", + "gas": 424397, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3b28" + ] + }, + { + "pc": 15066, + "op": "PUSH1", + "gas": 424387, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0" + ] + }, + { + "pc": 15068, + "op": "DUP5", + "gas": 424384, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x7" + ] + }, + { + "pc": 15069, + "op": "DUP5", + "gas": 424381, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x7", + "0x0" + ] + }, + { + "pc": 15070, + "op": "SUB", + "gas": 424378, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x7", + "0x0", + "0x4" + ] + }, + { + "pc": 15071, + "op": "LT", + "gas": 424375, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x7", + "0x4" + ] + }, + { + "pc": 15072, + "op": "ISZERO", + "gas": 424372, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x1" + ] + }, + { + "pc": 15073, + "op": "PUSH2", + "gas": 424369, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 15076, + "op": "JUMPI", + "gas": 424366, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3afd" + ] + }, + { + "pc": 15077, + "op": "PUSH1", + "gas": 424356, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0" + ] + }, + { + "pc": 15079, + "op": "PUSH2", + "gas": 424353, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 15082, + "op": "DUP7", + "gas": 424350, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3" + ] + }, + { + "pc": 15083, + "op": "DUP7", + "gas": 424347, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80" + ] + }, + { + "pc": 15084, + "op": "DUP7", + "gas": 424344, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0" + ] + }, + { + "pc": 15085, + "op": "DUP7", + "gas": 424341, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4" + ] + }, + { + "pc": 15086, + "op": "DUP8", + "gas": 424338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2" + ] + }, + { + "pc": 15087, + "op": "PUSH2", + "gas": 424335, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2" + ] + }, + { + "pc": 15090, + "op": "JUMP", + "gas": 424332, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x3b46" + ] + }, + { + "pc": 15174, + "op": "JUMPDEST", + "gas": 424324, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2" + ] + }, + { + "pc": 15175, + "op": "PUSH1", + "gas": 424323, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2" + ] + }, + { + "pc": 15177, + "op": "DUP1", + "gas": 424320, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0" + ] + }, + { + "pc": 15178, + "op": "PUSH1", + "gas": 424317, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 15180, + "op": "DUP7", + "gas": 424314, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 15181, + "op": "DUP7", + "gas": 424311, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 15182, + "op": "PUSH1", + "gas": 424308, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4" + ] + }, + { + "pc": 15184, + "op": "ADD", + "gas": 424305, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4", + "0x1" + ] + }, + { + "pc": 15185, + "op": "SUB", + "gas": 424302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x0", + "0x0", + "0x5" + ] + }, + { + "pc": 15186, + "op": "SWAP1", + "gas": 424299, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x0", + "0x5" + ] + }, + { + "pc": 15187, + "op": "POP", + "gas": 424296, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0" + ] + }, + { + "pc": 15188, + "op": "PUSH1", + "gas": 424294, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5" + ] + }, + { + "pc": 15190, + "op": "DUP9", + "gas": 424291, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0" + ] + }, + { + "pc": 15191, + "op": "DUP9", + "gas": 424288, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80" + ] + }, + { + "pc": 15192, + "op": "PUSH1", + "gas": 424285, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15194, + "op": "ADD", + "gas": 424282, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 15195, + "op": "DUP2", + "gas": 424279, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15196, + "op": "MLOAD", + "gas": 424276, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 15197, + "op": "DUP2", + "gas": 424273, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80", + "0x0", + "0x5" + ] + }, + { + "pc": 15198, + "op": "LT", + "gas": 424270, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80", + "0x0", + "0x5", + "0x0" + ] + }, + { + "pc": 15199, + "op": "PUSH2", + "gas": 424267, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 15202, + "op": "JUMPI", + "gas": 424264, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80", + "0x0", + "0x1", + "0x3b64" + ] + }, + { + "pc": 15204, + "op": "JUMPDEST", + "gas": 424254, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15205, + "op": "PUSH1", + "gas": 424253, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15207, + "op": "MUL", + "gas": 424250, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 15208, + "op": "PUSH1", + "gas": 424245, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15210, + "op": "ADD", + "gas": 424242, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 15211, + "op": "ADD", + "gas": 424239, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x80", + "0x20" + ] + }, + { + "pc": 15212, + "op": "MLOAD", + "gas": 424236, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0xa0" + ] + }, + { + "pc": 15213, + "op": "SWAP1", + "gas": 424233, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15214, + "op": "POP", + "gas": 424230, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 15215, + "op": "PUSH1", + "gas": 424228, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15217, + "op": "DUP3", + "gas": 424225, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 15218, + "op": "PUSH1", + "gas": 424222, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x5" + ] + }, + { + "pc": 15220, + "op": "LT", + "gas": 424219, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x5", + "0x1" + ] + }, + { + "pc": 15221, + "op": "PUSH2", + "gas": 424216, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x1" + ] + }, + { + "pc": 15224, + "op": "JUMPI", + "gas": 424213, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x1", + "0x3b85" + ] + }, + { + "pc": 15237, + "op": "JUMPDEST", + "gas": 424203, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 15238, + "op": "DUP10", + "gas": 424202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0" + ] + }, + { + "pc": 15239, + "op": "DUP10", + "gas": 424199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80" + ] + }, + { + "pc": 15240, + "op": "PUSH1", + "gas": 424196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15242, + "op": "ADD", + "gas": 424193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 15243, + "op": "DUP2", + "gas": 424190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1" + ] + }, + { + "pc": 15244, + "op": "MLOAD", + "gas": 424187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x80" + ] + }, + { + "pc": 15245, + "op": "DUP2", + "gas": 424184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x5" + ] + }, + { + "pc": 15246, + "op": "LT", + "gas": 424181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x5", + "0x1" + ] + }, + { + "pc": 15247, + "op": "PUSH2", + "gas": 424178, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x1" + ] + }, + { + "pc": 15250, + "op": "JUMPI", + "gas": 424175, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x1", + "0x3b94" + ] + }, + { + "pc": 15252, + "op": "JUMPDEST", + "gas": 424165, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1" + ] + }, + { + "pc": 15253, + "op": "PUSH1", + "gas": 424164, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1" + ] + }, + { + "pc": 15255, + "op": "MUL", + "gas": 424161, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x1", + "0x20" + ] + }, + { + "pc": 15256, + "op": "PUSH1", + "gas": 424156, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x20" + ] + }, + { + "pc": 15258, + "op": "ADD", + "gas": 424153, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 15259, + "op": "ADD", + "gas": 424150, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x80", + "0x40" + ] + }, + { + "pc": 15260, + "op": "MLOAD", + "gas": 424147, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0xc0" + ] + }, + { + "pc": 15261, + "op": "JUMPDEST", + "gas": 424144, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15262, + "op": "SWAP1", + "gas": 424143, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x0", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15263, + "op": "POP", + "gas": 424140, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0" + ] + }, + { + "pc": 15264, + "op": "PUSH1", + "gas": 424138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15266, + "op": "DUP4", + "gas": 424135, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0" + ] + }, + { + "pc": 15267, + "op": "PUSH1", + "gas": 424132, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x5" + ] + }, + { + "pc": 15269, + "op": "LT", + "gas": 424129, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x5", + "0x2" + ] + }, + { + "pc": 15270, + "op": "PUSH2", + "gas": 424126, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x1" + ] + }, + { + "pc": 15273, + "op": "JUMPI", + "gas": 424123, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x1", + "0x3bb6" + ] + }, + { + "pc": 15286, + "op": "JUMPDEST", + "gas": 424113, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0" + ] + }, + { + "pc": 15287, + "op": "DUP11", + "gas": 424112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0" + ] + }, + { + "pc": 15288, + "op": "DUP11", + "gas": 424109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80" + ] + }, + { + "pc": 15289, + "op": "PUSH1", + "gas": 424106, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15291, + "op": "ADD", + "gas": 424103, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x0", + "0x2" + ] + }, + { + "pc": 15292, + "op": "DUP2", + "gas": 424100, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2" + ] + }, + { + "pc": 15293, + "op": "MLOAD", + "gas": 424097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x80" + ] + }, + { + "pc": 15294, + "op": "DUP2", + "gas": 424094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x5" + ] + }, + { + "pc": 15295, + "op": "LT", + "gas": 424091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x5", + "0x2" + ] + }, + { + "pc": 15296, + "op": "PUSH2", + "gas": 424088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x1" + ] + }, + { + "pc": 15299, + "op": "JUMPI", + "gas": 424085, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x1", + "0x3bc5" + ] + }, + { + "pc": 15301, + "op": "JUMPDEST", + "gas": 424075, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2" + ] + }, + { + "pc": 15302, + "op": "PUSH1", + "gas": 424074, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2" + ] + }, + { + "pc": 15304, + "op": "MUL", + "gas": 424071, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x2", + "0x20" + ] + }, + { + "pc": 15305, + "op": "PUSH1", + "gas": 424066, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x40" + ] + }, + { + "pc": 15307, + "op": "ADD", + "gas": 424063, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x40", + "0x20" + ] + }, + { + "pc": 15308, + "op": "ADD", + "gas": 424060, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x80", + "0x60" + ] + }, + { + "pc": 15309, + "op": "MLOAD", + "gas": 424057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0xe0" + ] + }, + { + "pc": 15310, + "op": "JUMPDEST", + "gas": 424054, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15311, + "op": "SWAP1", + "gas": 424053, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x0", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15312, + "op": "POP", + "gas": 424050, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0" + ] + }, + { + "pc": 15313, + "op": "PUSH1", + "gas": 424048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15315, + "op": "DUP5", + "gas": 424045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0" + ] + }, + { + "pc": 15316, + "op": "PUSH1", + "gas": 424042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x5" + ] + }, + { + "pc": 15318, + "op": "LT", + "gas": 424039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x5", + "0x3" + ] + }, + { + "pc": 15319, + "op": "PUSH2", + "gas": 424036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x1" + ] + }, + { + "pc": 15322, + "op": "JUMPI", + "gas": 424033, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x1", + "0x3be7" + ] + }, + { + "pc": 15335, + "op": "JUMPDEST", + "gas": 424023, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0" + ] + }, + { + "pc": 15336, + "op": "DUP12", + "gas": 424022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0" + ] + }, + { + "pc": 15337, + "op": "DUP12", + "gas": 424019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80" + ] + }, + { + "pc": 15338, + "op": "PUSH1", + "gas": 424016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15340, + "op": "ADD", + "gas": 424013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x0", + "0x3" + ] + }, + { + "pc": 15341, + "op": "DUP2", + "gas": 424010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3" + ] + }, + { + "pc": 15342, + "op": "MLOAD", + "gas": 424007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3", + "0x80" + ] + }, + { + "pc": 15343, + "op": "DUP2", + "gas": 424004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3", + "0x5" + ] + }, + { + "pc": 15344, + "op": "LT", + "gas": 424001, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3", + "0x5", + "0x3" + ] + }, + { + "pc": 15345, + "op": "PUSH2", + "gas": 423998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3", + "0x1" + ] + }, + { + "pc": 15348, + "op": "JUMPI", + "gas": 423995, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3", + "0x1", + "0x3bf6" + ] + }, + { + "pc": 15350, + "op": "JUMPDEST", + "gas": 423985, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3" + ] + }, + { + "pc": 15351, + "op": "PUSH1", + "gas": 423984, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3" + ] + }, + { + "pc": 15353, + "op": "MUL", + "gas": 423981, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x3", + "0x20" + ] + }, + { + "pc": 15354, + "op": "PUSH1", + "gas": 423976, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x60" + ] + }, + { + "pc": 15356, + "op": "ADD", + "gas": 423973, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x60", + "0x20" + ] + }, + { + "pc": 15357, + "op": "ADD", + "gas": 423970, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 15358, + "op": "MLOAD", + "gas": 423967, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x100" + ] + }, + { + "pc": 15359, + "op": "JUMPDEST", + "gas": 423964, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15360, + "op": "SWAP1", + "gas": 423963, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x0", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15361, + "op": "POP", + "gas": 423960, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 15362, + "op": "PUSH1", + "gas": 423958, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15364, + "op": "DUP6", + "gas": 423955, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 15365, + "op": "PUSH1", + "gas": 423952, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x5" + ] + }, + { + "pc": 15367, + "op": "LT", + "gas": 423949, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x5", + "0x4" + ] + }, + { + "pc": 15368, + "op": "PUSH2", + "gas": 423946, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x1" + ] + }, + { + "pc": 15371, + "op": "JUMPI", + "gas": 423943, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x1", + "0x3c18" + ] + }, + { + "pc": 15384, + "op": "JUMPDEST", + "gas": 423933, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 15385, + "op": "DUP13", + "gas": 423932, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0" + ] + }, + { + "pc": 15386, + "op": "DUP13", + "gas": 423929, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80" + ] + }, + { + "pc": 15387, + "op": "PUSH1", + "gas": 423926, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 15389, + "op": "ADD", + "gas": 423923, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0x0", + "0x4" + ] + }, + { + "pc": 15390, + "op": "DUP2", + "gas": 423920, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0x4" + ] + }, + { + "pc": 15391, + "op": "MLOAD", + "gas": 423917, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0x4", + "0x80" + ] + }, + { + "pc": 15392, + "op": "DUP2", + "gas": 423914, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0x4", + "0x5" + ] + }, + { + "pc": 15393, + "op": "LT", + "gas": 423911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0x4", + "0x5", + "0x4" + ] + }, + { + "pc": 15394, + "op": "PUSH2", + "gas": 423908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0x4", + "0x1" + ] + }, + { + "pc": 15397, + "op": "JUMPI", + "gas": 423905, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0x4", + "0x1", + "0x3c27" + ] + }, + { + "pc": 15399, + "op": "JUMPDEST", + "gas": 423895, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0x4" + ] + }, + { + "pc": 15400, + "op": "PUSH1", + "gas": 423894, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0x4" + ] + }, + { + "pc": 15402, + "op": "MUL", + "gas": 423891, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0x4", + "0x20" + ] + }, + { + "pc": 15403, + "op": "PUSH1", + "gas": 423886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 15405, + "op": "ADD", + "gas": 423883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0x80", + "0x20" + ] + }, + { + "pc": 15406, + "op": "ADD", + "gas": 423880, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x80", + "0xa0" + ] + }, + { + "pc": 15407, + "op": "MLOAD", + "gas": 423877, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x120" + ] + }, + { + "pc": 15408, + "op": "JUMPDEST", + "gas": 423874, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15409, + "op": "SWAP1", + "gas": 423873, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x0", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15410, + "op": "POP", + "gas": 423870, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0" + ] + }, + { + "pc": 15411, + "op": "PUSH1", + "gas": 423868, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15413, + "op": "DUP7", + "gas": 423865, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0" + ] + }, + { + "pc": 15414, + "op": "PUSH1", + "gas": 423862, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5" + ] + }, + { + "pc": 15416, + "op": "LT", + "gas": 423859, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x5" + ] + }, + { + "pc": 15417, + "op": "PUSH2", + "gas": 423856, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0", + "0x0" + ] + }, + { + "pc": 15420, + "op": "JUMPI", + "gas": 423853, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0", + "0x0", + "0x3c49" + ] + }, + { + "pc": 15421, + "op": "PUSH1", + "gas": 423843, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0" + ] + }, + { + "pc": 15423, + "op": "PUSH1", + "gas": 423840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0", + "0x1" + ] + }, + { + "pc": 15425, + "op": "PUSH1", + "gas": 423837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 15427, + "op": "SHL", + "gas": 423834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0", + "0x1", + "0x1", + "0xff" + ] + }, + { + "pc": 15428, + "op": "SUB", + "gas": 423831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0", + "0x1", + "0x8000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 15429, + "op": "PUSH2", + "gas": 423828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15432, + "op": "JUMP", + "gas": 423825, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x3c61" + ] + }, + { + "pc": 15457, + "op": "JUMPDEST", + "gas": 423817, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15458, + "op": "SWAP1", + "gas": 423816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15459, + "op": "POP", + "gas": 423813, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15460, + "op": "PUSH1", + "gas": 423811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15462, + "op": "DUP8", + "gas": 423808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15463, + "op": "PUSH1", + "gas": 423805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x5" + ] + }, + { + "pc": 15465, + "op": "LT", + "gas": 423802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x5", + "0x6" + ] + }, + { + "pc": 15466, + "op": "PUSH2", + "gas": 423799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0" + ] + }, + { + "pc": 15469, + "op": "JUMPI", + "gas": 423796, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0", + "0x3c7a" + ] + }, + { + "pc": 15470, + "op": "PUSH1", + "gas": 423786, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15472, + "op": "PUSH1", + "gas": 423783, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1" + ] + }, + { + "pc": 15474, + "op": "PUSH1", + "gas": 423780, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 15476, + "op": "SHL", + "gas": 423777, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x1", + "0xff" + ] + }, + { + "pc": 15477, + "op": "SUB", + "gas": 423774, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x1", + "0x8000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 15478, + "op": "PUSH2", + "gas": 423771, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15481, + "op": "JUMP", + "gas": 423768, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x3c92" + ] + }, + { + "pc": 15506, + "op": "JUMPDEST", + "gas": 423760, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15507, + "op": "SWAP1", + "gas": 423759, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15508, + "op": "POP", + "gas": 423756, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15509, + "op": "DUP6", + "gas": 423754, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15510, + "op": "DUP8", + "gas": 423751, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15511, + "op": "SGT", + "gas": 423748, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15512, + "op": "ISZERO", + "gas": 423745, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15513, + "op": "PUSH2", + "gas": 423742, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15516, + "op": "JUMPI", + "gas": 423739, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3ca0" + ] + }, + { + "pc": 15520, + "op": "JUMPDEST", + "gas": 423729, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15521, + "op": "DUP4", + "gas": 423728, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15522, + "op": "DUP6", + "gas": 423725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15523, + "op": "SGT", + "gas": 423722, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15524, + "op": "ISZERO", + "gas": 423719, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15525, + "op": "PUSH2", + "gas": 423716, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15528, + "op": "JUMPI", + "gas": 423713, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cac" + ] + }, + { + "pc": 15532, + "op": "JUMPDEST", + "gas": 423703, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15533, + "op": "DUP2", + "gas": 423702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15534, + "op": "DUP4", + "gas": 423699, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15535, + "op": "SGT", + "gas": 423696, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15536, + "op": "ISZERO", + "gas": 423693, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15537, + "op": "PUSH2", + "gas": 423690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15540, + "op": "JUMPI", + "gas": 423687, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cb8" + ] + }, + { + "pc": 15544, + "op": "JUMPDEST", + "gas": 423677, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15545, + "op": "DUP5", + "gas": 423676, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15546, + "op": "DUP8", + "gas": 423673, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15547, + "op": "SGT", + "gas": 423670, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15548, + "op": "ISZERO", + "gas": 423667, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15549, + "op": "PUSH2", + "gas": 423664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15552, + "op": "JUMPI", + "gas": 423661, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3cc4" + ] + }, + { + "pc": 15553, + "op": "SWAP4", + "gas": 423651, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15554, + "op": "SWAP6", + "gas": 423648, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15555, + "op": "SWAP4", + "gas": 423645, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15556, + "op": "JUMPDEST", + "gas": 423642, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15557, + "op": "DUP4", + "gas": 423641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15558, + "op": "DUP7", + "gas": 423638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15559, + "op": "SGT", + "gas": 423635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15560, + "op": "ISZERO", + "gas": 423632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15561, + "op": "PUSH2", + "gas": 423629, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15564, + "op": "JUMPI", + "gas": 423626, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3cd0" + ] + }, + { + "pc": 15565, + "op": "SWAP3", + "gas": 423616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15566, + "op": "SWAP5", + "gas": 423613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f5599db40e4c4000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15567, + "op": "SWAP3", + "gas": 423610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15568, + "op": "JUMPDEST", + "gas": 423607, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15569, + "op": "DUP1", + "gas": 423606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15570, + "op": "DUP4", + "gas": 423603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15571, + "op": "SGT", + "gas": 423600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15572, + "op": "ISZERO", + "gas": 423597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15573, + "op": "PUSH2", + "gas": 423594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15576, + "op": "JUMPI", + "gas": 423591, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cda" + ] + }, + { + "pc": 15578, + "op": "JUMPDEST", + "gas": 423581, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15579, + "op": "DUP5", + "gas": 423580, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15580, + "op": "DUP7", + "gas": 423577, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15581, + "op": "SGT", + "gas": 423574, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15582, + "op": "ISZERO", + "gas": 423571, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15583, + "op": "PUSH2", + "gas": 423568, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15586, + "op": "JUMPI", + "gas": 423565, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3ce6" + ] + }, + { + "pc": 15587, + "op": "SWAP4", + "gas": 423555, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x41ee3e171aea2d7280", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15588, + "op": "SWAP5", + "gas": 423552, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15589, + "op": "SWAP4", + "gas": 423549, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15590, + "op": "JUMPDEST", + "gas": 423546, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15591, + "op": "DUP1", + "gas": 423545, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15592, + "op": "DUP3", + "gas": 423542, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15593, + "op": "SGT", + "gas": 423539, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15594, + "op": "ISZERO", + "gas": 423536, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15595, + "op": "PUSH2", + "gas": 423533, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15598, + "op": "JUMPI", + "gas": 423530, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cf0" + ] + }, + { + "pc": 15600, + "op": "JUMPDEST", + "gas": 423520, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15601, + "op": "DUP3", + "gas": 423519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15602, + "op": "DUP8", + "gas": 423516, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15603, + "op": "SGT", + "gas": 423513, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f1a875c8f2438ca0", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15604, + "op": "ISZERO", + "gas": 423510, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15605, + "op": "PUSH2", + "gas": 423507, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15608, + "op": "JUMPI", + "gas": 423504, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3cfc" + ] + }, + { + "pc": 15612, + "op": "JUMPDEST", + "gas": 423494, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15613, + "op": "DUP2", + "gas": 423493, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15614, + "op": "DUP7", + "gas": 423490, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15615, + "op": "SGT", + "gas": 423487, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15616, + "op": "ISZERO", + "gas": 423484, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15617, + "op": "PUSH2", + "gas": 423481, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15620, + "op": "JUMPI", + "gas": 423478, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d08" + ] + }, + { + "pc": 15624, + "op": "JUMPDEST", + "gas": 423468, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15625, + "op": "DUP1", + "gas": 423467, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15626, + "op": "DUP6", + "gas": 423464, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15627, + "op": "SGT", + "gas": 423461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15628, + "op": "ISZERO", + "gas": 423458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15629, + "op": "PUSH2", + "gas": 423455, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15632, + "op": "JUMPI", + "gas": 423452, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d12" + ] + }, + { + "pc": 15634, + "op": "JUMPDEST", + "gas": 423442, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15635, + "op": "DUP3", + "gas": 423441, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15636, + "op": "DUP7", + "gas": 423438, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15637, + "op": "SGT", + "gas": 423435, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f1a875c8f2438ca0", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15638, + "op": "ISZERO", + "gas": 423432, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15639, + "op": "PUSH2", + "gas": 423429, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15642, + "op": "JUMPI", + "gas": 423426, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d1e" + ] + }, + { + "pc": 15646, + "op": "JUMPDEST", + "gas": 423416, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15647, + "op": "DUP1", + "gas": 423415, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15648, + "op": "DUP5", + "gas": 423412, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15649, + "op": "SGT", + "gas": 423409, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15650, + "op": "ISZERO", + "gas": 423406, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15651, + "op": "PUSH2", + "gas": 423403, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15654, + "op": "JUMPI", + "gas": 423400, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d28" + ] + }, + { + "pc": 15656, + "op": "JUMPDEST", + "gas": 423390, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15657, + "op": "DUP3", + "gas": 423389, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15658, + "op": "DUP6", + "gas": 423386, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15659, + "op": "SGT", + "gas": 423383, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15660, + "op": "ISZERO", + "gas": 423380, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15661, + "op": "PUSH2", + "gas": 423377, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15664, + "op": "JUMPI", + "gas": 423374, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3d34" + ] + }, + { + "pc": 15665, + "op": "SWAP2", + "gas": 423364, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x41f1a875c8f2438ca0", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15666, + "op": "SWAP4", + "gas": 423361, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15667, + "op": "SWAP2", + "gas": 423358, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15668, + "op": "JUMPDEST", + "gas": 423355, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15669, + "op": "DUP2", + "gas": 423354, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15670, + "op": "DUP5", + "gas": 423351, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15671, + "op": "SGT", + "gas": 423348, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15672, + "op": "ISZERO", + "gas": 423345, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15673, + "op": "PUSH2", + "gas": 423342, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15676, + "op": "JUMPI", + "gas": 423339, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1", + "0x3d40" + ] + }, + { + "pc": 15680, + "op": "JUMPDEST", + "gas": 423329, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15681, + "op": "DUP3", + "gas": 423328, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15682, + "op": "DUP5", + "gas": 423325, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15683, + "op": "SGT", + "gas": 423322, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15684, + "op": "ISZERO", + "gas": 423319, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 15685, + "op": "PUSH2", + "gas": 423316, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15688, + "op": "JUMPI", + "gas": 423313, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x3d4c" + ] + }, + { + "pc": 15689, + "op": "SWAP2", + "gas": 423303, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15690, + "op": "SWAP3", + "gas": 423300, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15691, + "op": "SWAP2", + "gas": 423297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15692, + "op": "JUMPDEST", + "gas": 423294, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15693, + "op": "DUP14", + "gas": 423293, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15694, + "op": "DUP13", + "gas": 423290, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 15695, + "op": "SUB", + "gas": 423287, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x2" + ] + }, + { + "pc": 15696, + "op": "DUP1", + "gas": 423284, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2" + ] + }, + { + "pc": 15697, + "op": "PUSH2", + "gas": 423281, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x2" + ] + }, + { + "pc": 15700, + "op": "JUMPI", + "gas": 423278, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x2", + "0x3d5c" + ] + }, + { + "pc": 15708, + "op": "JUMPDEST", + "gas": 423268, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2" + ] + }, + { + "pc": 15709, + "op": "DUP1", + "gas": 423267, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2" + ] + }, + { + "pc": 15710, + "op": "PUSH1", + "gas": 423264, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x2" + ] + }, + { + "pc": 15712, + "op": "EQ", + "gas": 423261, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x2", + "0x1" + ] + }, + { + "pc": 15713, + "op": "ISZERO", + "gas": 423258, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x0" + ] + }, + { + "pc": 15714, + "op": "PUSH2", + "gas": 423255, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x1" + ] + }, + { + "pc": 15717, + "op": "JUMPI", + "gas": 423252, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x1", + "0x3d6d" + ] + }, + { + "pc": 15725, + "op": "JUMPDEST", + "gas": 423242, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2" + ] + }, + { + "pc": 15726, + "op": "DUP1", + "gas": 423241, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2" + ] + }, + { + "pc": 15727, + "op": "PUSH1", + "gas": 423238, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x2" + ] + }, + { + "pc": 15729, + "op": "EQ", + "gas": 423235, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x2", + "0x2" + ] + }, + { + "pc": 15730, + "op": "ISZERO", + "gas": 423232, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x1" + ] + }, + { + "pc": 15731, + "op": "PUSH2", + "gas": 423229, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x0" + ] + }, + { + "pc": 15734, + "op": "JUMPI", + "gas": 423226, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x0", + "0x3d7e" + ] + }, + { + "pc": 15735, + "op": "DUP6", + "gas": 423216, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2" + ] + }, + { + "pc": 15736, + "op": "SWAP11", + "gas": 423213, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15737, + "op": "POP", + "gas": 423210, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x0" + ] + }, + { + "pc": 15738, + "op": "PUSH2", + "gas": 423208, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2" + ] + }, + { + "pc": 15741, + "op": "JUMP", + "gas": 423205, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x3e02" + ] + }, + { + "pc": 15874, + "op": "JUMPDEST", + "gas": 423197, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2" + ] + }, + { + "pc": 15875, + "op": "DUP15", + "gas": 423196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2" + ] + }, + { + "pc": 15876, + "op": "DUP13", + "gas": 423193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x0" + ] + }, + { + "pc": 15877, + "op": "SUB", + "gas": 423190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x0", + "0x2" + ] + }, + { + "pc": 15878, + "op": "DUP14", + "gas": 423187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x2" + ] + }, + { + "pc": 15879, + "op": "DUP14", + "gas": 423184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x2", + "0x2" + ] + }, + { + "pc": 15880, + "op": "EQ", + "gas": 423181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x2", + "0x2", + "0x2" + ] + }, + { + "pc": 15881, + "op": "ISZERO", + "gas": 423178, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x2", + "0x1" + ] + }, + { + "pc": 15882, + "op": "PUSH2", + "gas": 423175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x2", + "0x0" + ] + }, + { + "pc": 15885, + "op": "JUMPI", + "gas": 423172, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x2", + "0x0", + "0x3e20" + ] + }, + { + "pc": 15886, + "op": "POP", + "gas": 423162, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x2" + ] + }, + { + "pc": 15887, + "op": "DUP11", + "gas": 423160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2" + ] + }, + { + "pc": 15888, + "op": "SWAP10", + "gas": 423157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15889, + "op": "POP", + "gas": 423154, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x0" + ] + }, + { + "pc": 15890, + "op": "PUSH2", + "gas": 423152, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2" + ] + }, + { + "pc": 15893, + "op": "SWAP9", + "gas": 423149, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x5", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x3a3d" + ] + }, + { + "pc": 15894, + "op": "POP", + "gas": 423146, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2", + "0x5" + ] + }, + { + "pc": 15895, + "op": "POP", + "gas": 423144, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2" + ] + }, + { + "pc": 15896, + "op": "POP", + "gas": 423142, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15897, + "op": "POP", + "gas": 423140, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 15898, + "op": "POP", + "gas": 423138, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000", + "0x41f5599db40e4c4000" + ] + }, + { + "pc": 15899, + "op": "POP", + "gas": 423136, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0", + "0x41f53671b4af058000" + ] + }, + { + "pc": 15900, + "op": "POP", + "gas": 423134, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15901, + "op": "POP", + "gas": 423132, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3a3d", + "0x41edd68838a5610000", + "0x41ee3e171aea2d7280" + ] + }, + { + "pc": 15902, + "op": "POP", + "gas": 423130, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3a3d", + "0x41edd68838a5610000" + ] + }, + { + "pc": 15903, + "op": "JUMP", + "gas": 423128, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3a3d" + ] + }, + { + "pc": 14909, + "op": "JUMPDEST", + "gas": 423120, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 14910, + "op": "SWAP6", + "gas": 423119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x80", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 14911, + "op": "POP", + "gas": 423116, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x41f1a875c8f2438ca0", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0", + "0x80" + ] + }, + { + "pc": 14912, + "op": "SWAP6", + "gas": 423114, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x3af3", + "0x41f1a875c8f2438ca0", + "0x0", + "0x4", + "0x2", + "0x2", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 14913, + "op": "SWAP4", + "gas": 423111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x0", + "0x4", + "0x2", + "0x2", + "0x3af3" + ] + }, + { + "pc": 14914, + "op": "POP", + "gas": 423108, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3af3", + "0x4", + "0x2", + "0x2", + "0x0" + ] + }, + { + "pc": 14915, + "op": "POP", + "gas": 423106, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3af3", + "0x4", + "0x2", + "0x2" + ] + }, + { + "pc": 14916, + "op": "POP", + "gas": 423104, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3af3", + "0x4", + "0x2" + ] + }, + { + "pc": 14917, + "op": "POP", + "gas": 423102, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3af3", + "0x4" + ] + }, + { + "pc": 14918, + "op": "JUMP", + "gas": 423100, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0", + "0x3af3" + ] + }, + { + "pc": 15091, + "op": "JUMPDEST", + "gas": 423092, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15092, + "op": "POP", + "gas": 423091, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15093, + "op": "SWAP2", + "gas": 423089, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 15094, + "op": "POP", + "gas": 423086, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x0" + ] + }, + { + "pc": 15095, + "op": "PUSH2", + "gas": 423084, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0" + ] + }, + { + "pc": 15098, + "op": "SWAP1", + "gas": 423081, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41f1a875c8f2438ca0", + "0x0", + "0x31f3" + ] + }, + { + "pc": 15099, + "op": "POP", + "gas": 423078, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41f1a875c8f2438ca0", + "0x31f3", + "0x0" + ] + }, + { + "pc": 15100, + "op": "JUMP", + "gas": 423076, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41f1a875c8f2438ca0", + "0x31f3" + ] + }, + { + "pc": 12787, + "op": "JUMPDEST", + "gas": 423068, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 12788, + "op": "SWAP5", + "gas": 423067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x36c5", + "0x80", + "0x0", + "0x4", + "0x2", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 12789, + "op": "SWAP4", + "gas": 423064, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x41f1a875c8f2438ca0", + "0x80", + "0x0", + "0x4", + "0x2", + "0x36c5" + ] + }, + { + "pc": 12790, + "op": "POP", + "gas": 423061, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x41f1a875c8f2438ca0", + "0x36c5", + "0x0", + "0x4", + "0x2", + "0x80" + ] + }, + { + "pc": 12791, + "op": "POP", + "gas": 423059, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x41f1a875c8f2438ca0", + "0x36c5", + "0x0", + "0x4", + "0x2" + ] + }, + { + "pc": 12792, + "op": "POP", + "gas": 423057, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x41f1a875c8f2438ca0", + "0x36c5", + "0x0", + "0x4" + ] + }, + { + "pc": 12793, + "op": "POP", + "gas": 423055, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x41f1a875c8f2438ca0", + "0x36c5", + "0x0" + ] + }, + { + "pc": 12794, + "op": "JUMP", + "gas": 423053, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x41f1a875c8f2438ca0", + "0x36c5" + ] + }, + { + "pc": 14021, + "op": "JUMPDEST", + "gas": 423045, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 14022, + "op": "SWAP3", + "gas": 423044, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x0", + "0x5", + "0x2", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 14023, + "op": "POP", + "gas": 423041, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1a875c8f2438ca0", + "0x5", + "0x2", + "0x0" + ] + }, + { + "pc": 14024, + "op": "POP", + "gas": 423039, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1a875c8f2438ca0", + "0x5", + "0x2" + ] + }, + { + "pc": 14025, + "op": "POP", + "gas": 423037, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1a875c8f2438ca0", + "0x5" + ] + }, + { + "pc": 14026, + "op": "PUSH2", + "gas": 423035, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 14029, + "op": "JUMP", + "gas": 423032, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1a875c8f2438ca0", + "0x1787" + ] + }, + { + "pc": 6023, + "op": "JUMPDEST", + "gas": 423024, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 6024, + "op": "SWAP2", + "gas": 423023, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x265d", + "0x80", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 6025, + "op": "SWAP1", + "gas": 423020, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x80", + "0x265d" + ] + }, + { + "pc": 6026, + "op": "POP", + "gas": 423017, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x265d", + "0x80" + ] + }, + { + "pc": 6027, + "op": "JUMP", + "gas": 423015, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x265d" + ] + }, + { + "pc": 9821, + "op": "JUMPDEST", + "gas": 423007, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 9822, + "op": "PUSH4", + "gas": 423006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 9827, + "op": "DUP6", + "gas": 423003, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0xffffffff" + ] + }, + { + "pc": 9828, + "op": "AND", + "gas": 423000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 9829, + "op": "PUSH1", + "gas": 422997, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e" + ] + }, + { + "pc": 9831, + "op": "DUP2", + "gas": 422994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9832, + "op": "DUP2", + "gas": 422991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x0", + "0x305e" + ] + }, + { + "pc": 9833, + "op": "MSTORE", + "gas": 422988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9834, + "op": "PUSH1", + "gas": 422985, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x0" + ] + }, + { + "pc": 9836, + "op": "PUSH1", + "gas": 422982, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x0", + "0x9" + ] + }, + { + "pc": 9838, + "op": "SWAP1", + "gas": 422979, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x0", + "0x9", + "0x20" + ] + }, + { + "pc": 9839, + "op": "DUP2", + "gas": 422976, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x0", + "0x20", + "0x9" + ] + }, + { + "pc": 9840, + "op": "MSTORE", + "gas": 422973, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x0", + "0x20", + "0x9", + "0x20" + ] + }, + { + "pc": 9841, + "op": "PUSH1", + "gas": 422970, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x0", + "0x20" + ] + }, + { + "pc": 9843, + "op": "SWAP2", + "gas": 422967, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x0", + "0x20", + "0x40" + ] + }, + { + "pc": 9844, + "op": "DUP3", + "gas": 422964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x0" + ] + }, + { + "pc": 9845, + "op": "SWAP1", + "gas": 422961, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x0", + "0x40" + ] + }, + { + "pc": 9846, + "op": "KECCAK256", + "gas": 422958, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x40", + "0x0" + ] + }, + { + "pc": 9847, + "op": "DUP5", + "gas": 422916, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f" + ] + }, + { + "pc": 9848, + "op": "DUP2", + "gas": 422913, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 9849, + "op": "SSTORE", + "gas": 422910, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f", + "0x41f1a875c8f2438ca0", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9850, + "op": "PUSH1", + "gas": 417910, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f" + ] + }, + { + "pc": 9852, + "op": "ADD", + "gas": 417907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f", + "0x1" + ] + }, + { + "pc": 9853, + "op": "DUP1", + "gas": 417904, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260" + ] + }, + { + "pc": 9854, + "op": "SLOAD", + "gas": 417901, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9855, + "op": "PUSH8", + "gas": 417101, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e00000000689d90e400000000689d90e2" + ] + }, + { + "pc": 9864, + "op": "PUSH1", + "gas": 417098, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffffffffffff" + ] + }, + { + "pc": 9866, + "op": "SHL", + "gas": 417095, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffffffffffff", + "0x40" + ] + }, + { + "pc": 9867, + "op": "NOT", + "gas": 417092, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffffffffffff0000000000000000" + ] + }, + { + "pc": 9868, + "op": "AND", + "gas": 417089, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff" + ] + }, + { + "pc": 9869, + "op": "PUSH1", + "gas": 417086, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2" + ] + }, + { + "pc": 9871, + "op": "PUSH1", + "gas": 417083, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x1" + ] + }, + { + "pc": 9873, + "op": "SHL", + "gas": 417080, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x1", + "0x40" + ] + }, + { + "pc": 9874, + "op": "TIMESTAMP", + "gas": 417077, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000" + ] + }, + { + "pc": 9875, + "op": "PUSH1", + "gas": 417075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4" + ] + }, + { + "pc": 9877, + "op": "PUSH1", + "gas": 417072, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x1" + ] + }, + { + "pc": 9879, + "op": "PUSH1", + "gas": 417069, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x1", + "0x1" + ] + }, + { + "pc": 9881, + "op": "SHL", + "gas": 417066, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x1", + "0x1", + "0x40" + ] + }, + { + "pc": 9882, + "op": "SUB", + "gas": 417063, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x1", + "0x10000000000000000" + ] + }, + { + "pc": 9883, + "op": "DUP2", + "gas": 417060, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0xffffffffffffffff" + ] + }, + { + "pc": 9884, + "op": "AND", + "gas": 417057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0xffffffffffffffff", + "0x689d90e4" + ] + }, + { + "pc": 9885, + "op": "SWAP2", + "gas": 417054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x10000000000000000", + "0x689d90e4", + "0x689d90e4" + ] + }, + { + "pc": 9886, + "op": "SWAP1", + "gas": 417051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x689d90e4", + "0x689d90e4", + "0x10000000000000000" + ] + }, + { + "pc": 9887, + "op": "SWAP2", + "gas": 417048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x689d90e4", + "0x10000000000000000", + "0x689d90e4" + ] + }, + { + "pc": 9888, + "op": "MUL", + "gas": 417045, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x689d90e4", + "0x10000000000000000", + "0x689d90e4" + ] + }, + { + "pc": 9889, + "op": "SWAP2", + "gas": 417040, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e000000000000000000000000689d90e2", + "0x689d90e4", + "0x689d90e40000000000000000" + ] + }, + { + "pc": 9890, + "op": "SWAP1", + "gas": 417037, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e40000000000000000", + "0x689d90e4", + "0x305e000000000000000000000000689d90e2" + ] + }, + { + "pc": 9891, + "op": "SWAP2", + "gas": 417034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e40000000000000000", + "0x305e000000000000000000000000689d90e2", + "0x689d90e4" + ] + }, + { + "pc": 9892, + "op": "OR", + "gas": 417031, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e000000000000000000000000689d90e2", + "0x689d90e40000000000000000" + ] + }, + { + "pc": 9893, + "op": "PUSH4", + "gas": 417028, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2" + ] + }, + { + "pc": 9898, + "op": "PUSH1", + "gas": 417025, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffff" + ] + }, + { + "pc": 9900, + "op": "SHL", + "gas": 417022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffff", + "0x80" + ] + }, + { + "pc": 9901, + "op": "NOT", + "gas": 417019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffff00000000000000000000000000000000" + ] + }, + { + "pc": 9902, + "op": "AND", + "gas": 417016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2", + "0xffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 9903, + "op": "PUSH1", + "gas": 417013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2" + ] + }, + { + "pc": 9905, + "op": "PUSH1", + "gas": 417010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x1" + ] + }, + { + "pc": 9907, + "op": "SHL", + "gas": 417007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x1", + "0x80" + ] + }, + { + "pc": 9908, + "op": "DUP7", + "gas": 417004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 9909, + "op": "MUL", + "gas": 417001, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x100000000000000000000000000000000", + "0x305e" + ] + }, + { + "pc": 9910, + "op": "OR", + "gas": 416996, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x689d90e400000000689d90e2", + "0x305e00000000000000000000000000000000" + ] + }, + { + "pc": 9911, + "op": "SWAP1", + "gas": 416993, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2" + ] + }, + { + "pc": 9912, + "op": "SWAP2", + "gas": 416990, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260", + "0x305e00000000689d90e400000000689d90e2", + "0x689d90e4" + ] + }, + { + "pc": 9913, + "op": "SSTORE", + "gas": 416987, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x305e00000000689d90e400000000689d90e2", + "0xac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9914, + "op": "PUSH1", + "gas": 416187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4" + ] + }, + { + "pc": 9916, + "op": "DUP1", + "gas": 416184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7" + ] + }, + { + "pc": 9917, + "op": "SLOAD", + "gas": 416181, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9918, + "op": "PUSH8", + "gas": 415381, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e0000305e" + ] + }, + { + "pc": 9927, + "op": "NOT", + "gas": 415378, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e0000305e", + "0xffffffff00000000" + ] + }, + { + "pc": 9928, + "op": "AND", + "gas": 415375, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e0000305e", + "0xffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff" + ] + }, + { + "pc": 9929, + "op": "PUSH1", + "gas": 415372, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e" + ] + }, + { + "pc": 9931, + "op": "PUSH1", + "gas": 415369, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x1" + ] + }, + { + "pc": 9933, + "op": "SHL", + "gas": 415366, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x1", + "0x20" + ] + }, + { + "pc": 9934, + "op": "DUP7", + "gas": 415363, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x100000000" + ] + }, + { + "pc": 9935, + "op": "MUL", + "gas": 415360, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x100000000", + "0x305e" + ] + }, + { + "pc": 9936, + "op": "OR", + "gas": 415355, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e", + "0x305e00000000" + ] + }, + { + "pc": 9937, + "op": "SWAP1", + "gas": 415352, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x7", + "0x305e0000305e" + ] + }, + { + "pc": 9938, + "op": "SSTORE", + "gas": 415349, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x305e0000305e", + "0x7" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 9939, + "op": "DUP3", + "gas": 414549, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4" + ] + }, + { + "pc": 9940, + "op": "MLOAD", + "gas": 414546, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x40" + ] + }, + { + "pc": 9941, + "op": "SWAP1", + "gas": 414543, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x689d90e4", + "0x140" + ] + }, + { + "pc": 9942, + "op": "DUP2", + "gas": 414540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x140", + "0x689d90e4" + ] + }, + { + "pc": 9943, + "op": "MSTORE", + "gas": 414537, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x140", + "0x689d90e4", + "0x140" + ] + }, + { + "pc": 9944, + "op": "SWAP2", + "gas": 414531, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x40", + "0x20", + "0x140" + ] + }, + { + "pc": 9945, + "op": "MLOAD", + "gas": 414528, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x140", + "0x20", + "0x40" + ] + }, + { + "pc": 9946, + "op": "SWAP4", + "gas": 414525, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x140", + "0x20", + "0x140" + ] + }, + { + "pc": 9947, + "op": "SWAP5", + "gas": 414522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x0", + "0x140", + "0x305e", + "0x140", + "0x20", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 9948, + "op": "POP", + "gas": 414519, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x140", + "0x305e", + "0x140", + "0x20", + "0x0" + ] + }, + { + "pc": 9949, + "op": "SWAP2", + "gas": 414517, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x140", + "0x305e", + "0x140", + "0x20" + ] + }, + { + "pc": 9950, + "op": "SWAP3", + "gas": 414514, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x140", + "0x20", + "0x140", + "0x305e" + ] + }, + { + "pc": 9951, + "op": "DUP5", + "gas": 414511, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x20", + "0x140", + "0x140" + ] + }, + { + "pc": 9952, + "op": "SWAP3", + "gas": 414508, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x20", + "0x140", + "0x140", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 9953, + "op": "PUSH32", + "gas": 414505, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x140", + "0x140", + "0x20" + ] + }, + { + "pc": 9986, + "op": "SWAP3", + "gas": 414502, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x140", + "0x140", + "0x20", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f" + ] + }, + { + "pc": 9987, + "op": "DUP3", + "gas": 414499, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x140", + "0x20", + "0x140" + ] + }, + { + "pc": 9988, + "op": "SWAP1", + "gas": 414496, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x140", + "0x20", + "0x140", + "0x140" + ] + }, + { + "pc": 9989, + "op": "SUB", + "gas": 414493, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x140", + "0x20", + "0x140", + "0x140" + ] + }, + { + "pc": 9990, + "op": "ADD", + "gas": 414490, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x140", + "0x20", + "0x0" + ] + }, + { + "pc": 9991, + "op": "SWAP1", + "gas": 414487, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x140", + "0x20" + ] + }, + { + "pc": 9992, + "op": "LOG3", + "gas": 414484, + "gasCost": 1756, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f", + "0x20", + "0x140" + ] + }, + { + "pc": 9993, + "op": "PUSH1", + "gas": 412728, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 9995, + "op": "SWAP3", + "gas": 412725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x0", + "0x0", + "0x41f1a875c8f2438ca0", + "0x1" + ] + }, + { + "pc": 9996, + "op": "POP", + "gas": 412722, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x0", + "0x41f1a875c8f2438ca0", + "0x0" + ] + }, + { + "pc": 9997, + "op": "SWAP1", + "gas": 412720, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x0", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 9998, + "op": "POP", + "gas": 412717, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x41f1a875c8f2438ca0", + "0x0" + ] + }, + { + "pc": 9999, + "op": "JUMPDEST", + "gas": 412715, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 10000, + "op": "SWAP2", + "gas": 412714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x305e", + "0x1", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 10001, + "op": "POP", + "gas": 412711, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x41f1a875c8f2438ca0", + "0x1", + "0x305e" + ] + }, + { + "pc": 10002, + "op": "SWAP2", + "gas": 412709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0xba4", + "0x41f1a875c8f2438ca0", + "0x1" + ] + }, + { + "pc": 10003, + "op": "JUMP", + "gas": 412706, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0x1", + "0x41f1a875c8f2438ca0", + "0xba4" + ] + }, + { + "pc": 2980, + "op": "JUMPDEST", + "gas": 412698, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0x1", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 2981, + "op": "SWAP2", + "gas": 412697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x0", + "0x1", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 2982, + "op": "POP", + "gas": 412694, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x41f1a875c8f2438ca0", + "0x1", + "0x0" + ] + }, + { + "pc": 2983, + "op": "SWAP2", + "gas": 412692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x0", + "0x41f1a875c8f2438ca0", + "0x1" + ] + }, + { + "pc": 2984, + "op": "POP", + "gas": 412689, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0x0" + ] + }, + { + "pc": 2985, + "op": "PUSH2", + "gas": 412687, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 2988, + "op": "DUP6", + "gas": 412684, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1" + ] + }, + { + "pc": 2989, + "op": "PUSH2", + "gas": 412681, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 2992, + "op": "JUMP", + "gas": 412678, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x2714" + ] + }, + { + "pc": 10004, + "op": "JUMPDEST", + "gas": 412670, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 10005, + "op": "PUSH4", + "gas": 412669, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 10010, + "op": "DUP2", + "gas": 412666, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 10011, + "op": "AND", + "gas": 412663, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 10012, + "op": "PUSH1", + "gas": 412660, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x305e" + ] + }, + { + "pc": 10014, + "op": "SWAP1", + "gas": 412657, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x305e", + "0x0" + ] + }, + { + "pc": 10015, + "op": "DUP2", + "gas": 412654, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x0", + "0x305e" + ] + }, + { + "pc": 10016, + "op": "MSTORE", + "gas": 412651, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 10017, + "op": "PUSH1", + "gas": 412648, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x0" + ] + }, + { + "pc": 10019, + "op": "PUSH1", + "gas": 412645, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x0", + "0xa" + ] + }, + { + "pc": 10021, + "op": "MSTORE", + "gas": 412642, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 10022, + "op": "PUSH1", + "gas": 412639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x0" + ] + }, + { + "pc": 10024, + "op": "SWAP1", + "gas": 412636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x0", + "0x40" + ] + }, + { + "pc": 10025, + "op": "KECCAK256", + "gas": 412633, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x40", + "0x0" + ] + }, + { + "pc": 10026, + "op": "PUSH1", + "gas": 412591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 10028, + "op": "ADD", + "gas": 412588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 10029, + "op": "SLOAD", + "gas": 412585, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 10030, + "op": "PUSH1", + "gas": 411785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 10032, + "op": "PUSH1", + "gas": 411782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006", + "0x1" + ] + }, + { + "pc": 10034, + "op": "SHL", + "gas": 411779, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006", + "0x1", + "0x60" + ] + }, + { + "pc": 10035, + "op": "SWAP1", + "gas": 411776, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a0000000003c0000000300000006", + "0x1000000000000000000000000" + ] + }, + { + "pc": 10036, + "op": "DIV", + "gas": 411773, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x1000000000000000000000000", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 10037, + "op": "PUSH1", + "gas": 411768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10039, + "op": "PUSH1", + "gas": 411765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1" + ] + }, + { + "pc": 10041, + "op": "PUSH1", + "gas": 411762, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1", + "0x1" + ] + }, + { + "pc": 10043, + "op": "SHL", + "gas": 411759, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10044, + "op": "SUB", + "gas": 411756, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10045, + "op": "AND", + "gas": 411753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10046, + "op": "PUSH2", + "gas": 411750, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10049, + "op": "PUSH2", + "gas": 411747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745" + ] + }, + { + "pc": 10052, + "op": "JUMP", + "gas": 411744, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x405b" + ] + }, + { + "pc": 16475, + "op": "JUMPDEST", + "gas": 411736, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745" + ] + }, + { + "pc": 16476, + "op": "PUSH1", + "gas": 411735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745" + ] + }, + { + "pc": 16478, + "op": "DUP1", + "gas": 411732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40" + ] + }, + { + "pc": 16479, + "op": "MLOAD", + "gas": 411729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x40" + ] + }, + { + "pc": 16480, + "op": "DUP1", + "gas": 411726, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x140" + ] + }, + { + "pc": 16481, + "op": "DUP3", + "gas": 411723, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x140", + "0x140" + ] + }, + { + "pc": 16482, + "op": "ADD", + "gas": 411720, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x140", + "0x140", + "0x40" + ] + }, + { + "pc": 16483, + "op": "SWAP1", + "gas": 411717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x140", + "0x180" + ] + }, + { + "pc": 16484, + "op": "SWAP2", + "gas": 411714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x40", + "0x180", + "0x140" + ] + }, + { + "pc": 16485, + "op": "MSTORE", + "gas": 411711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x140", + "0x180", + "0x40" + ] + }, + { + "pc": 16486, + "op": "PUSH1", + "gas": 411708, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x140" + ] + }, + { + "pc": 16488, + "op": "DUP1", + "gas": 411705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x140", + "0x0" + ] + }, + { + "pc": 16489, + "op": "DUP3", + "gas": 411702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x140", + "0x0", + "0x0" + ] + }, + { + "pc": 16490, + "op": "MSTORE", + "gas": 411699, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x140", + "0x0", + "0x0", + "0x140" + ] + }, + { + "pc": 16491, + "op": "PUSH1", + "gas": 411696, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x140", + "0x0" + ] + }, + { + "pc": 16493, + "op": "DUP3", + "gas": 411693, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x140", + "0x0", + "0x20" + ] + }, + { + "pc": 16494, + "op": "ADD", + "gas": 411690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x140", + "0x0", + "0x20", + "0x140" + ] + }, + { + "pc": 16495, + "op": "MSTORE", + "gas": 411687, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x140", + "0x0", + "0x160" + ] + }, + { + "pc": 16496, + "op": "SWAP1", + "gas": 411681, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x2745", + "0x140" + ] + }, + { + "pc": 16497, + "op": "JUMP", + "gas": 411678, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140", + "0x2745" + ] + }, + { + "pc": 10053, + "op": "JUMPDEST", + "gas": 411670, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140" + ] + }, + { + "pc": 10054, + "op": "POP", + "gas": 411669, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x140" + ] + }, + { + "pc": 10055, + "op": "PUSH1", + "gas": 411667, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10057, + "op": "DUP1", + "gas": 411664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40" + ] + }, + { + "pc": 10058, + "op": "MLOAD", + "gas": 411661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x40" + ] + }, + { + "pc": 10059, + "op": "DUP1", + "gas": 411658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x180" + ] + }, + { + "pc": 10060, + "op": "DUP3", + "gas": 411655, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x180", + "0x180" + ] + }, + { + "pc": 10061, + "op": "ADD", + "gas": 411652, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x180", + "0x180", + "0x40" + ] + }, + { + "pc": 10062, + "op": "SWAP1", + "gas": 411649, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x180", + "0x1c0" + ] + }, + { + "pc": 10063, + "op": "SWAP2", + "gas": 411646, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x40", + "0x1c0", + "0x180" + ] + }, + { + "pc": 10064, + "op": "MSTORE", + "gas": 411643, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1c0", + "0x40" + ] + }, + { + "pc": 10065, + "op": "PUSH1", + "gas": 411640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180" + ] + }, + { + "pc": 10067, + "op": "SLOAD", + "gas": 411637, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xd" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce5fdcee39600000000000000000003c9531a556baa000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 10068, + "op": "PUSH1", + "gas": 410837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000" + ] + }, + { + "pc": 10070, + "op": "PUSH1", + "gas": 410834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x1" + ] + }, + { + "pc": 10072, + "op": "PUSH1", + "gas": 410831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x1", + "0x1" + ] + }, + { + "pc": 10074, + "op": "SHL", + "gas": 410828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10075, + "op": "SUB", + "gas": 410825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10076, + "op": "DUP1", + "gas": 410822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10077, + "op": "DUP3", + "gas": 410819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10078, + "op": "AND", + "gas": 410816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000003c9531a556baa000" + ] + }, + { + "pc": 10079, + "op": "DUP1", + "gas": 410813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0xffffffffffffffffffffffffffffffff", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10080, + "op": "DUP5", + "gas": 410810, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0xffffffffffffffffffffffffffffffff", + "0x3c9531a556baa000", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10081, + "op": "MSTORE", + "gas": 410807, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0xffffffffffffffffffffffffffffffff", + "0x3c9531a556baa000", + "0x3c9531a556baa000", + "0x180" + ] + }, + { + "pc": 10082, + "op": "PUSH1", + "gas": 410801, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0xffffffffffffffffffffffffffffffff", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10084, + "op": "PUSH1", + "gas": 410798, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0xffffffffffffffffffffffffffffffff", + "0x3c9531a556baa000", + "0x1" + ] + }, + { + "pc": 10086, + "op": "SHL", + "gas": 410795, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0xffffffffffffffffffffffffffffffff", + "0x3c9531a556baa000", + "0x1", + "0x80" + ] + }, + { + "pc": 10087, + "op": "SWAP1", + "gas": 410792, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0xffffffffffffffffffffffffffffffff", + "0x3c9531a556baa000", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10088, + "op": "SWAP3", + "gas": 410789, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0xffffffffffffffffffffffffffffffff", + "0x100000000000000000000000000000000", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10089, + "op": "DIV", + "gas": 410786, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c9531a556baa000", + "0xffffffffffffffffffffffffffffffff", + "0x100000000000000000000000000000000", + "0x8ce5fdcee39600000000000000000003c9531a556baa000" + ] + }, + { + "pc": 10090, + "op": "AND", + "gas": 410781, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c9531a556baa000", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 10091, + "op": "PUSH1", + "gas": 410778, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c9531a556baa000", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 10093, + "op": "DUP4", + "gas": 410775, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c9531a556baa000", + "0x8ce5fdcee396000", + "0x20" + ] + }, + { + "pc": 10094, + "op": "ADD", + "gas": 410772, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c9531a556baa000", + "0x8ce5fdcee396000", + "0x20", + "0x180" + ] + }, + { + "pc": 10095, + "op": "MSTORE", + "gas": 410769, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c9531a556baa000", + "0x8ce5fdcee396000", + "0x1a0" + ] + }, + { + "pc": 10096, + "op": "PUSH2", + "gas": 410763, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10099, + "op": "SWAP1", + "gas": 410760, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c9531a556baa000", + "0x277f" + ] + }, + { + "pc": 10100, + "op": "DUP4", + "gas": 410757, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000" + ] + }, + { + "pc": 10101, + "op": "PUSH4", + "gas": 410754, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000" + ] + }, + { + "pc": 10106, + "op": "PUSH2", + "gas": 410751, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0xffffffff" + ] + }, + { + "pc": 10109, + "op": "AND", + "gas": 410748, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0xffffffff", + "0x2e8a" + ] + }, + { + "pc": 10110, + "op": "JUMP", + "gas": 410745, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x2e8a" + ] + }, + { + "pc": 11914, + "op": "JUMPDEST", + "gas": 410737, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000" + ] + }, + { + "pc": 11915, + "op": "PUSH1", + "gas": 410736, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000" + ] + }, + { + "pc": 11917, + "op": "DUP3", + "gas": 410733, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 11918, + "op": "PUSH1", + "gas": 410730, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x3c9531a556baa000" + ] + }, + { + "pc": 11920, + "op": "PUSH1", + "gas": 410727, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x3c9531a556baa000", + "0x1" + ] + }, + { + "pc": 11922, + "op": "PUSH1", + "gas": 410724, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x3c9531a556baa000", + "0x1", + "0x1" + ] + }, + { + "pc": 11924, + "op": "SHL", + "gas": 410721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x3c9531a556baa000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 11925, + "op": "SUB", + "gas": 410718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x3c9531a556baa000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 11926, + "op": "AND", + "gas": 410715, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x3c9531a556baa000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 11927, + "op": "DUP3", + "gas": 410712, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x3c9531a556baa000" + ] + }, + { + "pc": 11928, + "op": "PUSH1", + "gas": 410709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x3c9531a556baa000", + "0x9184e72a000" + ] + }, + { + "pc": 11930, + "op": "PUSH1", + "gas": 410706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x1" + ] + }, + { + "pc": 11932, + "op": "PUSH1", + "gas": 410703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x1", + "0x1" + ] + }, + { + "pc": 11934, + "op": "SHL", + "gas": 410700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 11935, + "op": "SUB", + "gas": 410697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 11936, + "op": "AND", + "gas": 410694, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x3c9531a556baa000", + "0x9184e72a000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 11937, + "op": "GT", + "gas": 410691, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x3c9531a556baa000", + "0x9184e72a000" + ] + }, + { + "pc": 11938, + "op": "ISZERO", + "gas": 410688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x0" + ] + }, + { + "pc": 11939, + "op": "PUSH2", + "gas": 410685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x1" + ] + }, + { + "pc": 11942, + "op": "JUMPI", + "gas": 410682, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0", + "0x1", + "0x2ef3" + ] + }, + { + "pc": 12019, + "op": "JUMPDEST", + "gas": 410672, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 12020, + "op": "POP", + "gas": 410671, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 12021, + "op": "SWAP1", + "gas": 410669, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c9531a556baa000", + "0x9184e72a000" + ] + }, + { + "pc": 12022, + "op": "SUB", + "gas": 410666, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x9184e72a000", + "0x3c9531a556baa000" + ] + }, + { + "pc": 12023, + "op": "SWAP1", + "gas": 410663, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x277f", + "0x3c95288d08480000" + ] + }, + { + "pc": 12024, + "op": "JUMP", + "gas": 410660, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c95288d08480000", + "0x277f" + ] + }, + { + "pc": 10111, + "op": "JUMPDEST", + "gas": 410652, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c95288d08480000" + ] + }, + { + "pc": 10112, + "op": "PUSH1", + "gas": 410651, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c95288d08480000" + ] + }, + { + "pc": 10114, + "op": "PUSH1", + "gas": 410648, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c95288d08480000", + "0x1" + ] + }, + { + "pc": 10116, + "op": "PUSH1", + "gas": 410645, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c95288d08480000", + "0x1", + "0x1" + ] + }, + { + "pc": 10118, + "op": "SHL", + "gas": 410642, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c95288d08480000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10119, + "op": "SUB", + "gas": 410639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c95288d08480000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10120, + "op": "SWAP1", + "gas": 410636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c95288d08480000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10121, + "op": "DUP2", + "gas": 410633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x3c95288d08480000" + ] + }, + { + "pc": 10122, + "op": "AND", + "gas": 410630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x3c95288d08480000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10123, + "op": "DUP3", + "gas": 410627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x3c95288d08480000" + ] + }, + { + "pc": 10124, + "op": "MSTORE", + "gas": 410624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x3c95288d08480000", + "0x180" + ] + }, + { + "pc": 10125, + "op": "PUSH1", + "gas": 410621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10127, + "op": "DUP3", + "gas": 410618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x20" + ] + }, + { + "pc": 10128, + "op": "ADD", + "gas": 410615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x180" + ] + }, + { + "pc": 10129, + "op": "MLOAD", + "gas": 410612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x1a0" + ] + }, + { + "pc": 10130, + "op": "PUSH2", + "gas": 410609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 10133, + "op": "SWAP2", + "gas": 410606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000", + "0x27a2" + ] + }, + { + "pc": 10134, + "op": "AND", + "gas": 410603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10135, + "op": "DUP4", + "gas": 410600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 10136, + "op": "PUSH4", + "gas": 410597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000" + ] + }, + { + "pc": 10141, + "op": "PUSH2", + "gas": 410594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0xffffffff" + ] + }, + { + "pc": 10144, + "op": "AND", + "gas": 410591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0xffffffff", + "0x36ce" + ] + }, + { + "pc": 10145, + "op": "JUMP", + "gas": 410588, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x36ce" + ] + }, + { + "pc": 14030, + "op": "JUMPDEST", + "gas": 410580, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000" + ] + }, + { + "pc": 14031, + "op": "PUSH1", + "gas": 410579, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000" + ] + }, + { + "pc": 14033, + "op": "DUP3", + "gas": 410576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 14034, + "op": "DUP3", + "gas": 410573, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 14035, + "op": "ADD", + "gas": 410570, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000", + "0x9184e72a000" + ] + }, + { + "pc": 14036, + "op": "PUSH1", + "gas": 410567, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000" + ] + }, + { + "pc": 14038, + "op": "PUSH1", + "gas": 410564, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000", + "0x1" + ] + }, + { + "pc": 14040, + "op": "PUSH1", + "gas": 410561, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000", + "0x1", + "0x1" + ] + }, + { + "pc": 14042, + "op": "SHL", + "gas": 410558, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 14043, + "op": "SUB", + "gas": 410555, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 14044, + "op": "DUP1", + "gas": 410552, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14045, + "op": "DUP6", + "gas": 410549, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14046, + "op": "AND", + "gas": 410546, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 14047, + "op": "SWAP1", + "gas": 410543, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 14048, + "op": "DUP3", + "gas": 410540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000", + "0x8ce5fdcee396000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14049, + "op": "AND", + "gas": 410537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000", + "0x8ce5fdcee396000", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000" + ] + }, + { + "pc": 14050, + "op": "LT", + "gas": 410534, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000", + "0x8ce5fdcee396000", + "0x8ce68f53cac0000" + ] + }, + { + "pc": 14051, + "op": "ISZERO", + "gas": 410531, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000", + "0x0" + ] + }, + { + "pc": 14052, + "op": "PUSH2", + "gas": 410528, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000", + "0x1" + ] + }, + { + "pc": 14055, + "op": "JUMPI", + "gas": 410525, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000", + "0x1", + "0x2bf3" + ] + }, + { + "pc": 11251, + "op": "JUMPDEST", + "gas": 410515, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000" + ] + }, + { + "pc": 11252, + "op": "SWAP4", + "gas": 410514, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27a2", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x8ce68f53cac0000" + ] + }, + { + "pc": 11253, + "op": "SWAP3", + "gas": 410511, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce68f53cac0000", + "0x8ce5fdcee396000", + "0x9184e72a000", + "0x0", + "0x27a2" + ] + }, + { + "pc": 11254, + "op": "POP", + "gas": 410508, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce68f53cac0000", + "0x27a2", + "0x9184e72a000", + "0x0", + "0x8ce5fdcee396000" + ] + }, + { + "pc": 11255, + "op": "POP", + "gas": 410506, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce68f53cac0000", + "0x27a2", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 11256, + "op": "POP", + "gas": 410504, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce68f53cac0000", + "0x27a2", + "0x9184e72a000" + ] + }, + { + "pc": 11257, + "op": "JUMP", + "gas": 410502, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce68f53cac0000", + "0x27a2" + ] + }, + { + "pc": 10146, + "op": "JUMPDEST", + "gas": 410494, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce68f53cac0000" + ] + }, + { + "pc": 10147, + "op": "PUSH1", + "gas": 410493, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce68f53cac0000" + ] + }, + { + "pc": 10149, + "op": "PUSH1", + "gas": 410490, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce68f53cac0000", + "0x1" + ] + }, + { + "pc": 10151, + "op": "PUSH1", + "gas": 410487, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce68f53cac0000", + "0x1", + "0x1" + ] + }, + { + "pc": 10153, + "op": "SHL", + "gas": 410484, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce68f53cac0000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10154, + "op": "SUB", + "gas": 410481, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce68f53cac0000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10155, + "op": "SWAP1", + "gas": 410478, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x8ce68f53cac0000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10156, + "op": "DUP2", + "gas": 410475, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000" + ] + }, + { + "pc": 10157, + "op": "AND", + "gas": 410472, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10158, + "op": "PUSH1", + "gas": 410469, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000" + ] + }, + { + "pc": 10160, + "op": "DUP1", + "gas": 410466, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20" + ] + }, + { + "pc": 10161, + "op": "DUP5", + "gas": 410463, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20", + "0x20" + ] + }, + { + "pc": 10162, + "op": "ADD", + "gas": 410460, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20", + "0x20", + "0x180" + ] + }, + { + "pc": 10163, + "op": "DUP3", + "gas": 410457, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20", + "0x1a0" + ] + }, + { + "pc": 10164, + "op": "SWAP1", + "gas": 410454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20", + "0x1a0", + "0x8ce68f53cac0000" + ] + }, + { + "pc": 10165, + "op": "MSTORE", + "gas": 410451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20", + "0x8ce68f53cac0000", + "0x1a0" + ] + }, + { + "pc": 10166, + "op": "DUP4", + "gas": 410448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20" + ] + }, + { + "pc": 10167, + "op": "MLOAD", + "gas": 410445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20", + "0x180" + ] + }, + { + "pc": 10168, + "op": "PUSH1", + "gas": 410442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20", + "0x3c95288d08480000" + ] + }, + { + "pc": 10170, + "op": "DUP1", + "gas": 410439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20", + "0x3c95288d08480000", + "0xd" + ] + }, + { + "pc": 10171, + "op": "SLOAD", + "gas": 410436, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20", + "0x3c95288d08480000", + "0xd", + "0xd" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce5fdcee39600000000000000000003c9531a556baa000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 10172, + "op": "PUSH1", + "gas": 409636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20", + "0x3c95288d08480000", + "0xd", + "0x8ce5fdcee39600000000000000000003c9531a556baa000" + ] + }, + { + "pc": 10174, + "op": "PUSH1", + "gas": 409633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20", + "0x3c95288d08480000", + "0xd", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x1" + ] + }, + { + "pc": 10176, + "op": "SHL", + "gas": 409630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20", + "0x3c95288d08480000", + "0xd", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x1", + "0x80" + ] + }, + { + "pc": 10177, + "op": "SWAP1", + "gas": 409627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20", + "0x3c95288d08480000", + "0xd", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10178, + "op": "SWAP5", + "gas": 409624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce68f53cac0000", + "0x20", + "0x3c95288d08480000", + "0xd", + "0x100000000000000000000000000000000", + "0x8ce5fdcee39600000000000000000003c9531a556baa000" + ] + }, + { + "pc": 10179, + "op": "MUL", + "gas": 409621, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x20", + "0x3c95288d08480000", + "0xd", + "0x100000000000000000000000000000000", + "0x8ce68f53cac0000" + ] + }, + { + "pc": 10180, + "op": "SWAP2", + "gas": 409616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x20", + "0x3c95288d08480000", + "0xd", + "0x8ce68f53cac000000000000000000000000000000000000" + ] + }, + { + "pc": 10181, + "op": "DUP6", + "gas": 409613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0xd", + "0x3c95288d08480000" + ] + }, + { + "pc": 10182, + "op": "AND", + "gas": 409610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0xd", + "0x3c95288d08480000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10183, + "op": "PUSH1", + "gas": 409607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0xd", + "0x3c95288d08480000" + ] + }, + { + "pc": 10185, + "op": "PUSH1", + "gas": 409604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0xd", + "0x3c95288d08480000", + "0x1" + ] + }, + { + "pc": 10187, + "op": "PUSH1", + "gas": 409601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0xd", + "0x3c95288d08480000", + "0x1", + "0x1" + ] + }, + { + "pc": 10189, + "op": "SHL", + "gas": 409598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0xd", + "0x3c95288d08480000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10190, + "op": "SUB", + "gas": 409595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0xd", + "0x3c95288d08480000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10191, + "op": "NOT", + "gas": 409592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0xd", + "0x3c95288d08480000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10192, + "op": "SWAP1", + "gas": 409589, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0xd", + "0x3c95288d08480000", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" + ] + }, + { + "pc": 10193, + "op": "SWAP5", + "gas": 409586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000003c9531a556baa000", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0xd", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", + "0x3c95288d08480000" + ] + }, + { + "pc": 10194, + "op": "AND", + "gas": 409583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x3c95288d08480000", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0xd", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000", + "0x8ce5fdcee39600000000000000000003c9531a556baa000" + ] + }, + { + "pc": 10195, + "op": "SWAP4", + "gas": 409580, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x3c95288d08480000", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0xd", + "0x8ce5fdcee39600000000000000000000000000000000000" + ] + }, + { + "pc": 10196, + "op": "SWAP1", + "gas": 409577, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0xd", + "0x3c95288d08480000" + ] + }, + { + "pc": 10197, + "op": "SWAP4", + "gas": 409574, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x8ce5fdcee39600000000000000000000000000000000000", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0x3c95288d08480000", + "0xd" + ] + }, + { + "pc": 10198, + "op": "OR", + "gas": 409571, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0x3c95288d08480000", + "0x8ce5fdcee39600000000000000000000000000000000000" + ] + }, + { + "pc": 10199, + "op": "DUP5", + "gas": 409568, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0x8ce5fdcee39600000000000000000003c95288d08480000" + ] + }, + { + "pc": 10200, + "op": "AND", + "gas": 409565, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0x8ce5fdcee39600000000000000000003c95288d08480000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10201, + "op": "OR", + "gas": 409562, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce68f53cac000000000000000000000000000000000000", + "0x3c95288d08480000" + ] + }, + { + "pc": 10202, + "op": "SWAP1", + "gas": 409559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x20", + "0x8ce68f53cac000000000000000000003c95288d08480000" + ] + }, + { + "pc": 10203, + "op": "SWAP2", + "gas": 409556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0xd", + "0x8ce68f53cac000000000000000000003c95288d08480000", + "0x20" + ] + }, + { + "pc": 10204, + "op": "SSTORE", + "gas": 409553, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x8ce68f53cac000000000000000000003c95288d08480000", + "0xd" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce68f53cac000000000000000000003c95288d08480000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 10205, + "op": "CALLER", + "gas": 404553, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x20" + ] + }, + { + "pc": 10206, + "op": "PUSH1", + "gas": 404551, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 10208, + "op": "SWAP1", + "gas": 404548, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x0" + ] + }, + { + "pc": 10209, + "op": "DUP2", + "gas": 404545, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 10210, + "op": "MSTORE", + "gas": 404542, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x0" + ] + }, + { + "pc": 10211, + "op": "PUSH1", + "gas": 404539, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0" + ] + }, + { + "pc": 10213, + "op": "SWAP1", + "gas": 404536, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x0", + "0x8" + ] + }, + { + "pc": 10214, + "op": "SWAP2", + "gas": 404533, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x20", + "0x8", + "0x0" + ] + }, + { + "pc": 10215, + "op": "MSTORE", + "gas": 404530, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 10216, + "op": "PUSH1", + "gas": 404527, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 10218, + "op": "SWAP1", + "gas": 404524, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 10219, + "op": "KECCAK256", + "gas": 404521, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x40", + "0x0" + ] + }, + { + "pc": 10220, + "op": "SLOAD", + "gas": 404479, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce68f53cac000000000000000000003c95288d08480000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 10221, + "op": "PUSH2", + "gas": 403679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x30500000305effffffff00000001000000000000000001b793c78a0f2000" + ] + }, + { + "pc": 10224, + "op": "SWAP2", + "gas": 403676, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x30500000305effffffff00000001000000000000000001b793c78a0f2000", + "0x27fd" + ] + }, + { + "pc": 10225, + "op": "AND", + "gas": 403673, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x30500000305effffffff00000001000000000000000001b793c78a0f2000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10226, + "op": "DUP4", + "gas": 403670, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000" + ] + }, + { + "pc": 10227, + "op": "PUSH4", + "gas": 403667, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000" + ] + }, + { + "pc": 10232, + "op": "PUSH2", + "gas": 403664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0xffffffff" + ] + }, + { + "pc": 10235, + "op": "AND", + "gas": 403661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0xffffffff", + "0x36ce" + ] + }, + { + "pc": 10236, + "op": "JUMP", + "gas": 403658, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x36ce" + ] + }, + { + "pc": 14030, + "op": "JUMPDEST", + "gas": 403650, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000" + ] + }, + { + "pc": 14031, + "op": "PUSH1", + "gas": 403649, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000" + ] + }, + { + "pc": 14033, + "op": "DUP3", + "gas": 403646, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 14034, + "op": "DUP3", + "gas": 403643, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b793c78a0f2000" + ] + }, + { + "pc": 14035, + "op": "ADD", + "gas": 403640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b793c78a0f2000", + "0x9184e72a000" + ] + }, + { + "pc": 14036, + "op": "PUSH1", + "gas": 403637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000" + ] + }, + { + "pc": 14038, + "op": "PUSH1", + "gas": 403634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000", + "0x1" + ] + }, + { + "pc": 14040, + "op": "PUSH1", + "gas": 403631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000", + "0x1", + "0x1" + ] + }, + { + "pc": 14042, + "op": "SHL", + "gas": 403628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 14043, + "op": "SUB", + "gas": 403625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 14044, + "op": "DUP1", + "gas": 403622, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14045, + "op": "DUP6", + "gas": 403619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14046, + "op": "AND", + "gas": 403616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff", + "0x1b793c78a0f2000" + ] + }, + { + "pc": 14047, + "op": "SWAP1", + "gas": 403613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000", + "0xffffffffffffffffffffffffffffffff", + "0x1b793c78a0f2000" + ] + }, + { + "pc": 14048, + "op": "DUP3", + "gas": 403610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000", + "0x1b793c78a0f2000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 14049, + "op": "AND", + "gas": 403607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000", + "0x1b793c78a0f2000", + "0xffffffffffffffffffffffffffffffff", + "0x1b79cdfd881c000" + ] + }, + { + "pc": 14050, + "op": "LT", + "gas": 403604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000", + "0x1b793c78a0f2000", + "0x1b79cdfd881c000" + ] + }, + { + "pc": 14051, + "op": "ISZERO", + "gas": 403601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000", + "0x0" + ] + }, + { + "pc": 14052, + "op": "PUSH2", + "gas": 403598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000", + "0x1" + ] + }, + { + "pc": 14055, + "op": "JUMPI", + "gas": 403595, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000", + "0x1", + "0x2bf3" + ] + }, + { + "pc": 11251, + "op": "JUMPDEST", + "gas": 403585, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000" + ] + }, + { + "pc": 11252, + "op": "SWAP4", + "gas": 403584, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x27fd", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x1b79cdfd881c000" + ] + }, + { + "pc": 11253, + "op": "SWAP3", + "gas": 403581, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x1b793c78a0f2000", + "0x9184e72a000", + "0x0", + "0x27fd" + ] + }, + { + "pc": 11254, + "op": "POP", + "gas": 403578, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x27fd", + "0x9184e72a000", + "0x0", + "0x1b793c78a0f2000" + ] + }, + { + "pc": 11255, + "op": "POP", + "gas": 403576, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x27fd", + "0x9184e72a000", + "0x0" + ] + }, + { + "pc": 11256, + "op": "POP", + "gas": 403574, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x27fd", + "0x9184e72a000" + ] + }, + { + "pc": 11257, + "op": "JUMP", + "gas": 403572, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x27fd" + ] + }, + { + "pc": 10237, + "op": "JUMPDEST", + "gas": 403564, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000" + ] + }, + { + "pc": 10238, + "op": "CALLER", + "gas": 403563, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000" + ] + }, + { + "pc": 10239, + "op": "PUSH1", + "gas": 403561, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 10241, + "op": "SWAP1", + "gas": 403558, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x0" + ] + }, + { + "pc": 10242, + "op": "DUP2", + "gas": 403555, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71" + ] + }, + { + "pc": 10243, + "op": "MSTORE", + "gas": 403552, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x2bf363064cbf971a736cfc12ea15eae7591a1c71", + "0x0" + ] + }, + { + "pc": 10244, + "op": "PUSH1", + "gas": 403549, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0" + ] + }, + { + "pc": 10246, + "op": "PUSH1", + "gas": 403546, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x8" + ] + }, + { + "pc": 10248, + "op": "MSTORE", + "gas": 403543, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x8", + "0x20" + ] + }, + { + "pc": 10249, + "op": "PUSH1", + "gas": 403540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0" + ] + }, + { + "pc": 10251, + "op": "DUP1", + "gas": 403537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40" + ] + }, + { + "pc": 10252, + "op": "DUP3", + "gas": 403534, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0x40" + ] + }, + { + "pc": 10253, + "op": "KECCAK256", + "gas": 403531, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0x40", + "0x0" + ] + }, + { + "pc": 10254, + "op": "DUP1", + "gas": 403489, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443" + ] + }, + { + "pc": 10255, + "op": "SLOAD", + "gas": 403486, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce68f53cac000000000000000000003c95288d08480000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b793c78a0f2000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 10256, + "op": "PUSH1", + "gas": 402686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff00000001000000000000000001b793c78a0f2000" + ] + }, + { + "pc": 10258, + "op": "PUSH1", + "gas": 402683, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff00000001000000000000000001b793c78a0f2000", + "0x1" + ] + }, + { + "pc": 10260, + "op": "PUSH1", + "gas": 402680, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff00000001000000000000000001b793c78a0f2000", + "0x1", + "0x1" + ] + }, + { + "pc": 10262, + "op": "SHL", + "gas": 402677, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff00000001000000000000000001b793c78a0f2000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10263, + "op": "SUB", + "gas": 402674, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff00000001000000000000000001b793c78a0f2000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10264, + "op": "NOT", + "gas": 402671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff00000001000000000000000001b793c78a0f2000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10265, + "op": "AND", + "gas": 402668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff00000001000000000000000001b793c78a0f2000", + "0xffffffffffffffffffffffffffffffff00000000000000000000000000000000" + ] + }, + { + "pc": 10266, + "op": "PUSH1", + "gas": 402665, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff0000000100000000000000000000000000000000" + ] + }, + { + "pc": 10268, + "op": "PUSH1", + "gas": 402662, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff0000000100000000000000000000000000000000", + "0x1" + ] + }, + { + "pc": 10270, + "op": "PUSH1", + "gas": 402659, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff0000000100000000000000000000000000000000", + "0x1", + "0x1" + ] + }, + { + "pc": 10272, + "op": "SHL", + "gas": 402656, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff0000000100000000000000000000000000000000", + "0x1", + "0x1", + "0x80" + ] + }, + { + "pc": 10273, + "op": "SUB", + "gas": 402653, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff0000000100000000000000000000000000000000", + "0x1", + "0x100000000000000000000000000000000" + ] + }, + { + "pc": 10274, + "op": "SWAP5", + "gas": 402650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1b79cdfd881c000", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff0000000100000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10275, + "op": "DUP6", + "gas": 402647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff0000000100000000000000000000000000000000", + "0x1b79cdfd881c000" + ] + }, + { + "pc": 10276, + "op": "AND", + "gas": 402644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff0000000100000000000000000000000000000000", + "0x1b79cdfd881c000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10277, + "op": "OR", + "gas": 402641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff0000000100000000000000000000000000000000", + "0x1b79cdfd881c000" + ] + }, + { + "pc": 10278, + "op": "SWAP1", + "gas": 402638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443", + "0x30500000305effffffff00000001000000000000000001b79cdfd881c000" + ] + }, + { + "pc": 10279, + "op": "SSTORE", + "gas": 402635, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x30500000305effffffff00000001000000000000000001b79cdfd881c000", + "0xa4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce68f53cac000000000000000000003c95288d08480000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b79cdfd881c000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 10280, + "op": "DUP4", + "gas": 401835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 10281, + "op": "MLOAD", + "gas": 401832, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x180" + ] + }, + { + "pc": 10282, + "op": "SWAP1", + "gas": 401829, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x3c95288d08480000" + ] + }, + { + "pc": 10283, + "op": "MLOAD", + "gas": 401826, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x3c95288d08480000", + "0x40" + ] + }, + { + "pc": 10284, + "op": "SWAP3", + "gas": 401823, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0xffffffffffffffffffffffffffffffff", + "0x0", + "0x3c95288d08480000", + "0x1c0" + ] + }, + { + "pc": 10285, + "op": "AND", + "gas": 401820, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1c0", + "0x0", + "0x3c95288d08480000", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10286, + "op": "SWAP2", + "gas": 401817, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x1c0", + "0x0", + "0x3c95288d08480000" + ] + }, + { + "pc": 10287, + "op": "PUSH32", + "gas": 401814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c95288d08480000", + "0x0", + "0x1c0" + ] + }, + { + "pc": 10320, + "op": "SWAP2", + "gas": 401811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c95288d08480000", + "0x0", + "0x1c0", + "0xfe25c73e3b9089fac37d55c4c7efcba6f04af04cebd2fc4d6d7dbb07e1e5234f" + ] + }, + { + "pc": 10321, + "op": "SWAP1", + "gas": 401808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c95288d08480000", + "0xfe25c73e3b9089fac37d55c4c7efcba6f04af04cebd2fc4d6d7dbb07e1e5234f", + "0x1c0", + "0x0" + ] + }, + { + "pc": 10322, + "op": "LOG2", + "gas": 401805, + "gasCost": 1125, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180", + "0x3c95288d08480000", + "0xfe25c73e3b9089fac37d55c4c7efcba6f04af04cebd2fc4d6d7dbb07e1e5234f", + "0x0", + "0x1c0" + ] + }, + { + "pc": 10323, + "op": "POP", + "gas": 400680, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000", + "0x180" + ] + }, + { + "pc": 10324, + "op": "POP", + "gas": 400678, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e", + "0x9184e72a000" + ] + }, + { + "pc": 10325, + "op": "POP", + "gas": 400676, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1", + "0x305e" + ] + }, + { + "pc": 10326, + "op": "JUMP", + "gas": 400674, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbb1" + ] + }, + { + "pc": 2993, + "op": "JUMPDEST", + "gas": 400666, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 2994, + "op": "PUSH2", + "gas": 400665, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 2997, + "op": "DUP6", + "gas": 400662, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba" + ] + }, + { + "pc": 2998, + "op": "PUSH2", + "gas": 400659, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e" + ] + }, + { + "pc": 3001, + "op": "JUMP", + "gas": 400656, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0x2857" + ] + }, + { + "pc": 10327, + "op": "JUMPDEST", + "gas": 400648, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e" + ] + }, + { + "pc": 10328, + "op": "PUSH4", + "gas": 400647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e" + ] + }, + { + "pc": 10333, + "op": "DUP1", + "gas": 400644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff" + ] + }, + { + "pc": 10334, + "op": "DUP3", + "gas": 400641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0xffffffff" + ] + }, + { + "pc": 10335, + "op": "AND", + "gas": 400638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 10336, + "op": "PUSH1", + "gas": 400635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x305e" + ] + }, + { + "pc": 10338, + "op": "SWAP1", + "gas": 400632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x305e", + "0x0" + ] + }, + { + "pc": 10339, + "op": "DUP2", + "gas": 400629, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0x305e" + ] + }, + { + "pc": 10340, + "op": "MSTORE", + "gas": 400626, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0x305e", + "0x0" + ] + }, + { + "pc": 10341, + "op": "PUSH1", + "gas": 400623, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 10343, + "op": "PUSH1", + "gas": 400620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0xa" + ] + }, + { + "pc": 10345, + "op": "MSTORE", + "gas": 400617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0xa", + "0x20" + ] + }, + { + "pc": 10346, + "op": "PUSH1", + "gas": 400614, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x0" + ] + }, + { + "pc": 10348, + "op": "SWAP1", + "gas": 400611, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x0", + "0x40" + ] + }, + { + "pc": 10349, + "op": "KECCAK256", + "gas": 400608, + "gasCost": 42, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x40", + "0x0" + ] + }, + { + "pc": 10350, + "op": "PUSH1", + "gas": 400566, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 10352, + "op": "DUP2", + "gas": 400563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1" + ] + }, + { + "pc": 10353, + "op": "ADD", + "gas": 400560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x1", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ] + }, + { + "pc": 10354, + "op": "SLOAD", + "gas": 400557, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce68f53cac000000000000000000003c95288d08480000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b79cdfd881c000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 10355, + "op": "SWAP1", + "gas": 399757, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d", + "0x9184e72a0000000003c0000000300000006" + ] + }, + { + "pc": 10356, + "op": "SLOAD", + "gas": 399754, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x9184e72a0000000003c0000000300000006", + "0x6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce68f53cac000000000000000000003c95288d08480000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b79cdfd881c000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 10357, + "op": "SWAP2", + "gas": 398954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0xffffffff", + "0x9184e72a0000000003c0000000300000006", + "0x5" + ] + }, + { + "pc": 10358, + "op": "AND", + "gas": 398951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0x5", + "0x9184e72a0000000003c0000000300000006", + "0xffffffff" + ] + }, + { + "pc": 10359, + "op": "GT", + "gas": 398948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0x5", + "0x6" + ] + }, + { + "pc": 10360, + "op": "ISZERO", + "gas": 398945, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0x1" + ] + }, + { + "pc": 10361, + "op": "PUSH2", + "gas": 398942, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0x0" + ] + }, + { + "pc": 10364, + "op": "JUMPI", + "gas": 398939, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0x0", + "0x2881" + ] + }, + { + "pc": 10365, + "op": "PUSH2", + "gas": 398929, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e" + ] + }, + { + "pc": 10368, + "op": "JUMP", + "gas": 398926, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e", + "0x24e0" + ] + }, + { + "pc": 9440, + "op": "JUMPDEST", + "gas": 398918, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e" + ] + }, + { + "pc": 9441, + "op": "POP", + "gas": 398917, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba", + "0x305e" + ] + }, + { + "pc": 9442, + "op": "JUMP", + "gas": 398915, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbba" + ] + }, + { + "pc": 3002, + "op": "JUMPDEST", + "gas": 398907, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 3003, + "op": "DUP2", + "gas": 398906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 3004, + "op": "ISZERO", + "gas": 398903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0x1" + ] + }, + { + "pc": 3005, + "op": "PUSH2", + "gas": 398900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0x0" + ] + }, + { + "pc": 3008, + "op": "JUMPI", + "gas": 398897, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0x0", + "0xbca" + ] + }, + { + "pc": 3009, + "op": "PUSH2", + "gas": 398887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 3012, + "op": "DUP6", + "gas": 398884, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca" + ] + }, + { + "pc": 3013, + "op": "DUP3", + "gas": 398881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e" + ] + }, + { + "pc": 3014, + "op": "PUSH2", + "gas": 398878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 3017, + "op": "JUMP", + "gas": 398875, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x28b6" + ] + }, + { + "pc": 10422, + "op": "JUMPDEST", + "gas": 398867, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 10423, + "op": "PUSH1", + "gas": 398866, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 10425, + "op": "SLOAD", + "gas": 398863, + "gasCost": 800, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x3" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000007": "0000000000000000000000000000000000000000000000000000305e0000305e", + "000000000000000000000000000000000000000000000000000000000000000d": "000000000000000008ce68f53cac000000000000000000003c95288d08480000", + "5b4bc6912a91ac37d88ca5f49f71a1b1aa5520643cf7d717bb70a80cd2352ae4": "0000000000000000000000000000305d00000000689d901f00000000689d901b", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119d": "0000000000000000000000000000000000000000000000000000000000000005", + "6a0f50a3f0110c1280dbaa2d74a7201ef27a72487b3a03e931a67b8bc216119e": "000000000000000000000000000009184e72a0000000003c0000000300000006", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985443": "000030500000305effffffff00000001000000000000000001b79cdfd881c000", + "a4606e43254b76084c14f46acfbb04cc7be95979093c7c33753812c6a5985444": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf0125f": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0", + "ac70e08c2fe83aefa0b64d26575df3aca1691e148af3a657ab4928f0bcf01260": "0000000000000000000000000000305e00000000689d90e400000000689d90e2", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c4f": "000000000000000000000000000000000000000000000041ee3e171aea2d7280", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c50": "000000000000000000000000000000000000000000000041f5599db40e4c4000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c51": "000000000000000000000000000000000000000000000041edd68838a5610000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c52": "000000000000000000000000000000000000000000000041f53671b4af058000", + "e970213589a031d121a0927ffacffa9aad33e600259caba5e00d481630571c53": "000000000000000000000000000000000000000000000041f1a875c8f2438ca0" + } + }, + { + "pc": 10426, + "op": "PUSH1", + "gas": 398063, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x0" + ] + }, + { + "pc": 10428, + "op": "PUSH1", + "gas": 398060, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x0", + "0x1" + ] + }, + { + "pc": 10430, + "op": "PUSH1", + "gas": 398057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 10432, + "op": "SHL", + "gas": 398054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x0", + "0x1", + "0x1", + "0xa0" + ] + }, + { + "pc": 10433, + "op": "SUB", + "gas": 398051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x0", + "0x1", + "0x10000000000000000000000000000000000000000" + ] + }, + { + "pc": 10434, + "op": "AND", + "gas": 398048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 10435, + "op": "DUP1", + "gas": 398045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x0" + ] + }, + { + "pc": 10436, + "op": "PUSH2", + "gas": 398042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x0", + "0x0" + ] + }, + { + "pc": 10439, + "op": "JUMPI", + "gas": 398039, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x0", + "0x0", + "0x28cd" + ] + }, + { + "pc": 10440, + "op": "POP", + "gas": 398029, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x0" + ] + }, + { + "pc": 10441, + "op": "PUSH2", + "gas": 398027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 10444, + "op": "JUMP", + "gas": 398024, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x9fb" + ] + }, + { + "pc": 2555, + "op": "JUMPDEST", + "gas": 398016, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 2556, + "op": "POP", + "gas": 398015, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 2557, + "op": "POP", + "gas": 398013, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca", + "0x305e" + ] + }, + { + "pc": 2558, + "op": "JUMP", + "gas": 398011, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0", + "0xbca" + ] + }, + { + "pc": 3018, + "op": "JUMPDEST", + "gas": 398003, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 3019, + "op": "POP", + "gas": 398002, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 3020, + "op": "POP", + "gas": 398000, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60", + "0x1" + ] + }, + { + "pc": 3021, + "op": "POP", + "gas": 397998, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0", + "0x60" + ] + }, + { + "pc": 3022, + "op": "POP", + "gas": 397996, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e", + "0x41f1a875c8f2438ca0" + ] + }, + { + "pc": 3023, + "op": "POP", + "gas": 397994, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e", + "0x305e" + ] + }, + { + "pc": 3024, + "op": "JUMP", + "gas": 397992, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x202ee0ed", + "0x27e" + ] + }, + { + "pc": 638, + "op": "JUMPDEST", + "gas": 397984, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + }, + { + "pc": 639, + "op": "STOP", + "gas": 397983, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x202ee0ed" + ] + } + ] + } + } + ] +} diff --git a/docs/XDPoSChain/eth/eth.md b/docs/XDPoSChain/eth/eth.md new file mode 100644 index 0000000..518c446 --- /dev/null +++ b/docs/XDPoSChain/eth/eth.md @@ -0,0 +1,2074 @@ + +# Module eth + +## Method eth_accounts + +The `accounts` method returns a list of addresses owned by the client. + +Parameters: + +None + +Returns + +result: array of address + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_accounts" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": [ + "0x077961a99e124088bc386c3183b369187c5be295", + "0x8cd4b6b24f2cd0b83d49876f932254823e875547", + "0xdcc8153ceddf2e4935bed915eb4180ec42fcb69c" + ] +} +``` + +## Method eth_blobBaseFee + +The `blobBaseFee` method returns the expected base fee for blobs in the next block. + +Parameters: + +None + +Returns: + +result: big.Int, The expected base fee in wei, represented as a hexadecimal. + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_blobBaseFee" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x0" +} +``` + +## Method eth_blockNumber + +The `blockNumber` method returns the current latest block number. + +Parameters: + +None + +Returns: + +result: uint64, A hexadecimal of an integer representing the current block number the client is on. + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_blockNumber" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x57d1892" +} +``` + +## Method eth_call + +The `call` method executes a new message call immediately, without creating a transaction on the block chain. Often used for executing read-only smart contract functions, for example the balanceOf for an ERC-20 contract. + +Parameters: + +- args: object TransactionArgs, required +- blockNrOrHash: object BlockNumberOrHash, optional +- overrides: object StateOverride, optional + +Returns: + +result: array of byte, the return value of executed contract. + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 8001, + "method": "eth_call", + "params": [ + { + "to": "0x0000000000000000000000000000000000000088", + "data": "0x0db02622" + }, + "latest" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 8001, + "result": "0x00000000000000000000000000000000000000000000000000000000000000d5" +} +``` + +## Method eth_chainId + +The `chainId` method returns the currently configured chain ID, a value used in replay-protected transaction signing as introduced by EIP-155. + +Parameters: + +None + +Returns: + +result: uint64, a hexadecimal of the current chain ID. + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_chainId" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x32" +} +``` + +## Method eth_coinbase + +The `coinbase` method returns the client coinbase address. The coinbase address is the account to pay mining rewards to. This is the alias for `eth_etherbase`. + +Parameters: + +None + +Returns: + +result: address + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_coinbase" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x077961a99e124088bc386c3183b369187c5be295" +} +``` + +## Method eth_createAccessList + +The `createAccessList` method creates an EIP2930 type accessList based on a given Transaction. The accessList contains all storage slots and addresses read and written by the transaction, except for the sender account and the precompiles. This method uses the same transaction call Transaction Call Object and blockNumberOrTag object as eth_call. An accessList can be used to unstuck contracts that became inaccessible due to gas cost increases. + +Parameters: + +- args: object transactionArgs, required + - from: optional, 20 bytes. The address of the sender. + - to: 20 bytes. address the transaction is directed to. + - gas: optional, hexadecimal value of the gas provided for the transaction execution. + - gasPrice: optional, hexadecimal value gas price, in wei, provided by the sender. The default is 0. Used only in non-EIP-1559 transactions. + - maxPriorityFeePerGas: optional, maximum fee, in wei, the sender is willing to pay per gas above the base fee. See EIP-1559 transactions. If used, must specify maxFeePerGas. + - maxFeePerGas: optional, maximum total fee (base fee + priority fee), in wei, the sender is willing to pay per gas. See EIP-1559 transactions. If used, must specify maxPriorityFeePerGas. + - value: optional, hexadecimal of the value transferred, in wei. + - data: optional, hash of the method signature and encoded parameters. See Ethereum contract ABI specification. +- blockNrOrHash: BlockNumberOrHash, optional, a string representing a block number, block hash, or one of the string tags + - latest + - earliest + - pending + - finalized. + +Returns: + +result: object accessListResult: + +- accessList: A list of objects with the following fields: + - address: Addresses to be accessed by the transaction. + - storageKeys: Storage keys to be accessed by the transaction. +- gasUsed: A hexadecimal string representing the approximate gas cost for the transaction if the access list is included. + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_createAccessList", + "params": [ + { + "from": "0x3bc5885c2941c5cda454bdb4a8c88aa7f248e312", + "data": "0x20965255", + "gasPrice": "0x3b9aca00", + "gas": "0x3d0900", + "to": "0x00f5f5f3a25f142fafd0af24a754fafa340f32c7" + }, + "latest" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "accessList": [], + "gasUsed": "0x5318" + } +} +``` + +## Method eth_etherbase + +The `etherbase` method returns the client coinbase address. The etherbase address is the account to pay mining rewards to. + +Parameters: + +None + +Returns: + +result: address + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_etherbase" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x077961a99e124088bc386c3183b369187c5be295" +} +``` + +## Method eth_estimateGas + +The `estimateGas` method generates and returns an estimate of how much gas is necessary to allow the transaction to complete. The transaction will not be added to the blockchain. Note that the estimate may be significantly more than the amount of gas actually used by the transaction, for a variety of reasons including EVM mechanics and node performance. + +Parameters: + +- args: object TransactionArgs, required +- blockNrOrHash: object BlockNumberOrHash, optional +- overrides: object StateOverride, optional + +Returns: + +result: uint64 + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1004, + "method": "eth_estimateGas", + "params": [ + { + "from": "0xD4CE02705041F04135f1949Bc835c1Fe0885513c", + "to": "0x85f33E1242d87a875301312BD4EbaEe8876517BA", + "value": "0x1" + } + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1004, + "result": "0x5208" +} +``` + +## Method eth_feeHistory + +The `feeHistory` returns transaction base fee per gas and effective priority fee per gas for the requested block range. + +Parameters: + +- blockCount math.HexOrDecimal64, required, Number of blocks in the requested range. Between 1 and 1024 blocks can be requested in a single query. If blocks in the specified block range are not available, then only the fee history for available blocks is returned. +- lastBlock: BlockNumber, required, integer representing the highest number block of the requested range, or one of the string tags `latest`, `earliest`, or `pending`. +- rewardPercentiles: array of integers, optional, a monotonically increasing list of percentile values to sample from each block's effective priority fees per gas in ascending order, weighted by gas used. + +Returns: + +result: object feeHistoryResult + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1004, + "method": "eth_feeHistory", + "params": [ + "0x3", + "latest", + [20,50] + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1004, + "result": { + "oldestBlock": "0x580dca8", + "reward": [ + [ + "0x333905980", + "0x333905980" + ], + [ + "0x333905980", + "0x333905980" + ], + [ + "0x333905980", + "0x333905980" + ] + ], + "baseFeePerGas": [ + "0x0", + "0x0", + "0x0", + "0x0" + ], + "gasUsedRatio": [ + 7.032857142857143e-05, + 0.0018736880952380953, + 0.00014065714285714287 + ] + } +} +``` + +## Method eth_gasPrice + +The `gasPrice` method returns the current gas price in wei. + +Parameters: + +None. + +Returns: + +result: big.Int + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1003, + "method": "eth_gasPrice" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1003, + "result": "0x2e90edd00" +} +``` + +## Method eth_getBalance + +The `getBalance` returns the balance of the account of a given address. The balance is in wei. + +Parameters: + +- address: address, required, a string representing the address (20 bytes) to check for balance. +- blockNrOrHash: object BlockNumberOrHash, required, a hexadecimal block number, or one of the string tags latest, earliest, pending, or finalized. + +Returns: + +result: big.Int + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1003, + "method": "eth_getBalance", + "params": [ + "0xD4CE02705041F04135f1949Bc835c1Fe0885513c", + "latest" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1003, + "result": "0x38479c061d157125" +} +``` + +## Method eth_getBlockByHash + +The `getBlockByHash` returns information about a block whose hash is in the request. + +Parameters: + +- blockHash: hash, required, block hash +- fullTx: bool, required, if true returns the full transaction objects, if false returns only the hashes of the transactions + +Returns: + +result: object + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1003, + "method": "eth_getBlockByHash", + "params": [ + "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + true + ] +}' | jq +``` + +Response: + +```json +See [eth_getBlockByHash_response.json](eth_getBlockByHash_response.json) +``` + +## Method eth_getBlockByNumber + +The `getBlockByNumber` method returns information about a block by block number. + +Parameters + +- blockNr: BlockNumber, integer of a block number, or the string "earliest", "latest", "pending", or "finalized", as in the default block parameter. +- fullTx: bool, if true returns the full transaction objects, if false only the hashes of the transactions. + +result: object + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_getBlockByNumber", + "params": [ + "latest", + true + ] +}' | jq +``` + +Response: + +```json +See [eth_getBlockByNumber_response.json](eth_getBlockByNumber_response.json) +``` + +## Method eth_getBlockReceipts + +The `getBlockReceipts` returns the block receipts for the given block hash or number or tag. + +Parameters: + +- blockNrOrHash: BlockNumberOrHash, required, hexadecimal or decimal integer representing a block number, or one of the string tags: + - latest + - earliest + - pending + - finalized + +note: pending returns the same data as latest. + +Returns: + +result: object, block object or null when there is no corresponding block. + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1004, + "method": "eth_getBlockReceipts", + "params": [ + "latest" + ] +}' | jq +``` + +Response: + +```json +See [eth_getBlockReceipts_response.json](eth_getBlockReceipts_response.json) +``` + +## Method eth_getBlockTransactionCountByHash + +The `getBlockTransactionCountByHash` method returns the number of transactions in the block with the given block hash. + +Parameters: + +- blockHash: hash, required, block hash + +Returns: + +result: uint, block transaction count + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1004, + "method": "eth_getBlockTransactionCountByHash", + "params": [ + "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1004, + "result": "0x3" +} +``` + +## Method eth_getBlockTransactionCountByNumber + +The `getBlockTransactionCountByNumber` method returns the number of transactions in the block with the given block number. + +Parameters: + +- blockNr: BlockNumber, required, block number, or one of the string tags latest, earliest, pending, or finalized. + +Returns: + +result: uint, block transaction count + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1004, + "method": "eth_getBlockTransactionCountByNumber", + "params": [ + "latest" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1004, + "result": "0x6" +} +``` + +## Method eth_getCode + +The `getCode` method returns the compiled byte code of a smart contract, if any, at a given address. + +Parameters: + +- address: address, required +- blockNrOrHash: BlockNumberOrHash, required + +Returns: + +result: array of byte + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1004, + "method": "eth_getCode", + "params": [ + "0x0000000000000000000000000000000000000088", + "latest" + ] +}' | jq +``` + +Response: + +```json +See [eth_getCode_response.json](eth_getCode_response.json) +``` + +## Method eth_getLogs + +The `getLogs` method returns an array of all the logs matching the given filter object. + +Parameters: + +- crit: ojbect FilterCriteria, a filter object containing the following: + +- address: optional, contract address (20 bytes) or a list of addresses from which logs should originate. +- fromBlock: optional, default is "latest", a hexadecimal block number, or one of the string tags latest, earliest, pending, safe, or finalized. See the default block parameter. +- toBlock: optional, default is "latest", a hexadecimal block number, or one of the string tags latest, earliest, pending, safe, or finalized. See the default block parameter. +- topics: optional, array of 32 bytes DATA topics. Topics are order-dependent. +- blockhash: optional, restricts the logs returned to the single block referenced in the 32-byte hash blockHash. Using blockHash is equivalent to setting fromBlock and toBlock to the block number referenced in the blockHash. If blockHash is present in the filter criteria, then neither fromBlock nor toBlock are allowed. + +Returns: + +result: array of Log + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1004, + "method": "eth_getLogs", + "params": [ + { + "address": "0x53350795c11cee781a7e174479778f848d76ab2a", + "fromBlock": "0x22b2277", + "toBlock": "0x21b2277", + "topics": [ + [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac" + ] + ] + } + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1004, + "result": [] +} +``` + +## Method eth_getOwnerByCoinbase + +The `getOwnerByCoinbase` return masternode owner of the given coinbase address. + +Parameters: + +- coinbase: address, required, account +- blockNr: BlockNumber, required, block number + +Returns: + +result: address + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_getOwnerByCoinbase", + "params": [ + "0xD4CE02705041F04135f1949Bc835c1Fe0885513c", + "latest" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x0000000000000000000000000000000000000000" +} +``` + +## Method eth_getStorageAt + +The `getStorageAt` method returns the value from a storage position at a given address. + +Parameters: + +- address: address, required +- key: string, required +- blockNrOrHash: BlockNumberOrHash, required + +Returns: + +result: array of byte + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_getStorageAt", + "params": [ + "0xfe3b557e8fb62b89f4916b721be55ceb828dbd73", + "0x0", + "latest" + ], +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x0000000000000000000000000000000000000000000000000000000000000000" +} +``` + +## Method eth_getRawTransactionByBlockHashAndIndex + +Teh `getRawTransactionByBlockHashAndIndex` method returns the bytes of the transaction for the given block hash and index. + +Parameters: + +- blockHash: hash, required, block hash +- index: uint, required, transaction index + +Returns: + +result: object + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_getRawTransactionByBlockHashAndIndex", + "params": [ + "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "0x0" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0xf9016e825e8f85037e11d600830f424094ecf4ea7907e779b8a7d0f90cb95fe06f43b610fb80b90104414bf3890000000000000000000000003fb46c4db76d8e9f69f3f8388f43a7ca7e140807000000000000000000000000951857744785e80e2de051c32ee7b25f9c458c420000000000000000000000000000000000000000000000000000000000000064000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d20000000000000000000000000000000000000000000000000000000068254fab000000000000000000000000000000000000000000000fccf103db7d22e000000000000000000000000000000000000000000000000000acee08ed426a20ae8400000000000000000000000000000000000000000000000000000000000000008188a05b1d0e4565493e5f815e26d622c6b9f5c7f23e269eac6ed950446ff7a10e3197a0025df537fe481c63c7defaaaccdd91105a0088f720789ecf5728460a4c3c0fc2" +} +``` + +## Method eth_getRawTransactionByBlockNumberAndIndex + +The `getRawTransactionByBlockNumberAndIndex` returns the bytes of the transaction for the given block number and index. + +Parameters: + +- blockNr: BlockNumber, required, blcok number +- index: uint, required, transaction index + +Returns: + +result: object + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_getRawTransactionByBlockNumberAndIndex", + "params": [ + "latest","0x0" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0xf86d808506fc23ac008261a894fbeeebf296a1eb603544ad2861f7f629217d6cff881bae52266f39c400808188a0529fb389ebe066852e0bc0251497b7663860147deb553e93560c593d742d3881a014556772149e85ab5031e4690db7c1a00c37f223fa6b408b2515c0fab8e040d9" +} +``` + +## Method eth_getRawTransactionByHash + +The `getRawTransactionByHash` method returns the bytes of the transaction for the given hash. + +Parameters: + +- hash, required, transaction hash + +Returns: + +result: array of byte + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_getRawTransactionByHash", + "params": [ + "0x5bbcde52084defa9d1c7068a811363cc27a25c80d7e495180964673aa5f47687" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x" +} +``` + +## Method eth_getRewardByHash + +The `getRewardByHash` method returns the reward by block hash. + +Parameters: + +- hash, required, block hash + +Returns: + +result: object + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_getRewardByHash", + "params": [ + "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": null +} +``` + +## Method eth_getTransactionAndReceiptProof + +The `getTransactionAndReceiptProof` method returns the Trie transaction and receipt proof of the given transaction hash. + +Parameters: + +- hash, required, transaction hash + +Returns: + +result: object + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_getTransactionAndReceiptProof", + "params": [ + "0xbf83342ccdd6592eff8e2acfed87e23e852d684a4e2cfade89ba3b304c2b66a9" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "blockHash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "key": "0x80", + "receiptProofKeys": [ + "0x473f2a6554298d1b72b3a73e266bee07f5f93509534f716428cf3d233bb25ec7", + "0xf8487e8af578fb2cc3fef425f28cbb15fab131e3557eb67874f1a80e7fc1a9f5" + ], + "receiptProofValues": [ + "0xf851a068bb429e7d2063f286c6091187ce9c7d2147c2644efd9a8944934a6dc14f50be80808080808080a0f8487e8af578fb2cc3fef425f28cbb15fab131e3557eb67874f1a80e7fc1a9f58080808080808080", + "0xf904a530b904a1f9049e01830256bab9010000000020000000002000000000000000000000000000000000000000000000000080000008020000000000800200000000000000000420000000000000200000000000000000000800000008000008010000000000000000000000000000080000000000000000100000000000000000000000000000000000000010000800000000001000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000480000000040000000002000000000004000000000000000000000040000000000000000000000030000000000000000000000000000000000000000000040000000000000010f90393f89b943fb46c4db76d8e9f69f3f8388f43a7ca7e140807f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000712d30c0975386b043e09224433f400ea87cab7da000000000000000000000000061b7b0009fced05695ee811b7f8f78ba37c38344a00000000000000000000000000000000000000000000000000a5ae491119b0000f89b94951857744785e80e2de051c32ee7b25f9c458c42f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000712d30c0975386b043e09224433f400ea87cab7da0000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d2a00000000000000000000000000000000000000000000000b593895f85bc3bea71f89b943fb46c4db76d8e9f69f3f8388f43a7ca7e140807f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d2a0000000000000000000000000712d30c0975386b043e09224433f400ea87cab7da0000000000000000000000000000000000000000000000fccf103db7d22e00000f89b943fb46c4db76d8e9f69f3f8388f43a7ca7e140807f863a08c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a0000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d2a0000000000000000000000000ecf4ea7907e779b8a7d0f90cb95fe06f43b610fba0000000000000000000000000000000000000314dc3a0f41e5c923c6637280000f9011c94712d30c0975386b043e09224433f400ea87cab7df863a0c42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67a0000000000000000000000000ecf4ea7907e779b8a7d0f90cb95fe06f43b610fba0000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d2b8a0000000000000000000000000000000000000000000000fccf103db7d22e00000ffffffffffffffffffffffffffffffffffffffffffffff4a6c76a07a43c4158f0000000000000000000000000000000000000000363decaa6e4099f6e686ca910000000000000000000000000000000000000000220948b5cb625b7056562c32ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff86c3" + ], + "receiptRoot": "0x473f2a6554298d1b72b3a73e266bee07f5f93509534f716428cf3d233bb25ec7", + "txProofKeys": [ + "0xa417362c60be564f32c58a2134c4a96ae7667d170537c58a207e95faaf37fae9", + "0x254e83386c61197750483c05b48b21e2d356827082cade0d9107d6015e2f28a5" + ], + "txProofValues": [ + "0xf851a024f4fd8be1fcb465204601a37ba06036414fae5bdbf213c0d3e778da088e5d1280808080808080a0254e83386c61197750483c05b48b21e2d356827082cade0d9107d6015e2f28a58080808080808080", + "0xf9017530b90171f9016e825e8f85037e11d600830f424094ecf4ea7907e779b8a7d0f90cb95fe06f43b610fb80b90104414bf3890000000000000000000000003fb46c4db76d8e9f69f3f8388f43a7ca7e140807000000000000000000000000951857744785e80e2de051c32ee7b25f9c458c420000000000000000000000000000000000000000000000000000000000000064000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d20000000000000000000000000000000000000000000000000000000068254fab000000000000000000000000000000000000000000000fccf103db7d22e000000000000000000000000000000000000000000000000000acee08ed426a20ae8400000000000000000000000000000000000000000000000000000000000000008188a05b1d0e4565493e5f815e26d622c6b9f5c7f23e269eac6ed950446ff7a10e3197a0025df537fe481c63c7defaaaccdd91105a0088f720789ecf5728460a4c3c0fc2" + ], + "txRoot": "0xa417362c60be564f32c58a2134c4a96ae7667d170537c58a207e95faaf37fae9" + } +} +``` + +## Method eth_getTransactionByBlockHashAndIndex + +The `getTransactionByBlockHashAndIndex` method returns information about a transaction given block hash and transaction index position. + +Parameters: + +- blockHash: hash, required, a string representing the hash (32 bytes) of a block +- index: uint, required, a hexadecimal of the integer representing the position in the block + +Returns: + +result: object RPCTransaction + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_getTransactionByBlockHashAndIndex", + "params": [ + "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "0x0" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "blockHash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "blockNumber": "0x548f4f1", + "from": "0xd844d373f4ef676665fcc18d9b6c89464a36f2d2", + "gas": "0xf4240", + "gasPrice": "0x37e11d600", + "hash": "0xbf83342ccdd6592eff8e2acfed87e23e852d684a4e2cfade89ba3b304c2b66a9", + "input": "0x414bf3890000000000000000000000003fb46c4db76d8e9f69f3f8388f43a7ca7e140807000000000000000000000000951857744785e80e2de051c32ee7b25f9c458c420000000000000000000000000000000000000000000000000000000000000064000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d20000000000000000000000000000000000000000000000000000000068254fab000000000000000000000000000000000000000000000fccf103db7d22e000000000000000000000000000000000000000000000000000acee08ed426a20ae840000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x5e8f", + "to": "0xecf4ea7907e779b8a7d0f90cb95fe06f43b610fb", + "transactionIndex": "0x0", + "value": "0x0", + "type": "0x0", + "v": "0x88", + "r": "0x5b1d0e4565493e5f815e26d622c6b9f5c7f23e269eac6ed950446ff7a10e3197", + "s": "0x25df537fe481c63c7defaaaccdd91105a0088f720789ecf5728460a4c3c0fc2" + } +} +``` + +## Method eth_getTransactionByBlockNumberAndIndex + +The `getTransactionByBlockNumberAndIndex` method returns information about a transaction given block number and transaction index position. + +Parameters: + +- blockNr: BlockNumber, required, a hexadecimal block number, or one of the string tags latest, earliest, pending, or finalized +- index: uint, required, a hexadecimal of the integer representing the position in the block + +Returns: + +result: object RPCTransaction + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_getTransactionByBlockNumberAndIndex", + "params": [ + "0x548f4f1", + "0x0" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "blockHash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "blockNumber": "0x548f4f1", + "from": "0xd844d373f4ef676665fcc18d9b6c89464a36f2d2", + "gas": "0xf4240", + "gasPrice": "0x37e11d600", + "hash": "0xbf83342ccdd6592eff8e2acfed87e23e852d684a4e2cfade89ba3b304c2b66a9", + "input": "0x414bf3890000000000000000000000003fb46c4db76d8e9f69f3f8388f43a7ca7e140807000000000000000000000000951857744785e80e2de051c32ee7b25f9c458c420000000000000000000000000000000000000000000000000000000000000064000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d20000000000000000000000000000000000000000000000000000000068254fab000000000000000000000000000000000000000000000fccf103db7d22e000000000000000000000000000000000000000000000000000acee08ed426a20ae840000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x5e8f", + "to": "0xecf4ea7907e779b8a7d0f90cb95fe06f43b610fb", + "transactionIndex": "0x0", + "value": "0x0", + "type": "0x0", + "v": "0x88", + "r": "0x5b1d0e4565493e5f815e26d622c6b9f5c7f23e269eac6ed950446ff7a10e3197", + "s": "0x25df537fe481c63c7defaaaccdd91105a0088f720789ecf5728460a4c3c0fc2" + } +} +``` + +## Method eth_getTransactionByHash + +The `getTransactionByHash` method returns information about a transaction for a given hash. + +Parameters: + +- hash: hash, required, a string representing the hash (32 bytes) of a transaction + +Returns: + +result: object RPCTransaction + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_getTransactionByHash", + "params": [ + "0xbf83342ccdd6592eff8e2acfed87e23e852d684a4e2cfade89ba3b304c2b66a9" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "blockHash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "blockNumber": "0x548f4f1", + "from": "0xd844d373f4ef676665fcc18d9b6c89464a36f2d2", + "gas": "0xf4240", + "gasPrice": "0x37e11d600", + "hash": "0xbf83342ccdd6592eff8e2acfed87e23e852d684a4e2cfade89ba3b304c2b66a9", + "input": "0x414bf3890000000000000000000000003fb46c4db76d8e9f69f3f8388f43a7ca7e140807000000000000000000000000951857744785e80e2de051c32ee7b25f9c458c420000000000000000000000000000000000000000000000000000000000000064000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d20000000000000000000000000000000000000000000000000000000068254fab000000000000000000000000000000000000000000000fccf103db7d22e000000000000000000000000000000000000000000000000000acee08ed426a20ae840000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x5e8f", + "to": "0xecf4ea7907e779b8a7d0f90cb95fe06f43b610fb", + "transactionIndex": "0x0", + "value": "0x0", + "type": "0x0", + "v": "0x88", + "r": "0x5b1d0e4565493e5f815e26d622c6b9f5c7f23e269eac6ed950446ff7a10e3197", + "s": "0x25df537fe481c63c7defaaaccdd91105a0088f720789ecf5728460a4c3c0fc2" + } +} +``` + +## Method eth_getTransactionCount + +The `getTransactionCount` method returns the number of transactions sent from an address. + +Parameters: + +- address: address, required, a string representing the address (20 bytes) +- blockNrOrHash: BlockNumberOrHash, required, a hexadecimal block number, or one of the string tags latest, earliest, pending, or finalized. + +Returns: + +result: uint64 + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_getTransactionCount", + "params": [ + "0xD4CE02705041F04135f1949Bc835c1Fe0885513c", + "latest" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x1" +} +``` + +## Method eth_getTransactionReceipt + +The `getTransactionReceipt` method returns the receipt of a transaction given transaction hash. Note that the receipt is not available for pending transactions. + +Parameters: + +- hash: hash, required, a string representing the hash (32 bytes) of a transaction + +Returns: + +result: object + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 5002, + "method": "eth_getTransactionReceipt", + "params": [ + "0xbf83342ccdd6592eff8e2acfed87e23e852d684a4e2cfade89ba3b304c2b66a9" + ] +}' | jq +``` + +Response: + +See [eth_getTransactionReceipt_response.json](./eth_getTransactionReceipt_response.json) + +## Method eth_getUncleByBlockHashAndIndex + +The `getUncleByBlockHashAndIndex` method returns information about an uncle of a block given the block hash and the uncle index position. + +Parameters: + +- blockHash: hash, required, a string representing the hash (32 bytes) of a block. +- index: uint, required, a hexadecimal equivalent of the integer indicating the uncle's index position. + +Returns: + +result: object + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 5002, + "method": "eth_getUncleByBlockHashAndIndex", + "params": [ + "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "0x0" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 5002, + "result": null +} +``` + +## Method eth_getUncleByBlockNumberAndIndex + +The `getUncleByBlockNumberAndIndex` method returns information about an uncle of a block given the block number and the uncle index position. + +Parameters: + +- blockNr: BlockNumber, required, a hexadecimal block number, or one of the string tags latest, earliest, pending, or finalized +- index: uint, required, a hexadecimal equivalent of the integer indicating the uncle's index position + +Returns: + +result: object + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 5002, + "method": "eth_getUncleByBlockNumberAndIndex", + "params": [ + "0x548f4f1", + "0x0" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 5002, + "result": null +} +``` + +## Method eth_getUncleCountByBlockHash + +The `getUncleCountByBlockHash` method returns the number of uncles in a block from a block matching the given block hash. + +Parameters: + +- blockHash: hash, required, a string representing the hash (32 bytes) of a block + +Returns: + +result: uint + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 5002, + "method": "eth_getUncleCountByBlockHash", + "params": [ + "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 5002, + "result": "0x0" +} +``` + +## Method eth_getUncleCountByBlockNumber + +The `getUncleCountByBlockNumber` method returns the number of uncles in a block from a block matching the given block number. + +Parameters: + +- blockNr: BlockNumber, required, a hexadecimal block number, or one of the string tags latest, earliest, pending, or finalized + +Returns: + +result: uint + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 5002, + "method": "eth_getUncleCountByBlockNumber", + "params": [ + "latest" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 5002, + "result": "0x0" +} +``` + +## Method eth_getWork + +The `getWork` method returns the hash of the current block, the seed hash, and the boundary condition to be met ("target"). + +Parameters: + +None + +Returns: + +result: array of string, with the following properties: + +- Current block header PoW-hash (32 bytes). +- The seed hash used for the DAG (32 bytes). +- The boundary condition ("target") (32 bytes), 2^256 / difficulty. + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 5002, + "method": "eth_getWork" +}' | jq +``` + +Response: + +```json + +``` + +## Method eth_hashrate + +The `hashrate` method returns the number of hashes per second that the node is mining with. Only applicable when the node is mining. + +Parameters: + +None + +Returns: + +result: uint64 + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 5002, + "method": "eth_hashrate" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 5002, + "result": "0x0" +} +``` + +## Method eth_maxPriorityFeePerGas + +The `maxPriorityFeePerGas` method returns an estimate of how much priority fee, in wei, you need to be included in a block. + +Parameters: + +None + +Returns + +result: big.Int, a hexadecimal value of the priority fee, in wei, needed to be included in a block. + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1002, + "method": "eth_maxPriorityFeePerGas" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1002, + "result": "0x333905980" +} +``` + +## Method eth_mining + +The `mining` method returns true if client is actively mining new blocks. + +Parameters: + +None + +Returns + +result: bool + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 5002, + "method": "eth_mining" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 5002, + "result": false +} +``` + +## Method eth_pendingTransactions + +The `pendingTransactions` returns the transactions that are in the transaction pool and have a from address that is one of the accounts this node manages. + +Parameters: + +None + +Returns: + +result: array of RPCTransaction + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1004, + "method": "eth_pendingTransactions" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1004, + "result": [] +} +``` + +## Method eth_protocolVersion + +The `protocolVersion` method returns the current Ethereum protocol version. + +Parameters: + +None + +Returns: + +result: uint + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1004, + "method": "eth_protocolVersion" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1004, + "result": "0x64" +} +``` + +## Method eth_resend + +The `resend` method accepts an existing transaction and a new gas price and limit. It will remove the given transaction from the pool and reinsert it with the new gas price and limit. + +Parameters: + +- sendArgs: object TransactionArgs, required, the arguments to construct a new transaction +- gasPrice: big.Int, optional, gas price +- gasLimit: uint64, optional, gas limit + +Returns: + +result: hash, transaction hash + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_resend", + "params":[ + { + "from": "0xca7a99380131e6c76cfa622396347107aeedca2d", + "to": "0x8c9f4468ae04fb3d79c80f6eacf0e4e1dd21deee", + "value": "0x1", + "gas": "0x9999", + "maxFeePerGas": "0x5d21dba00", + "maxPriorityPerGas": "0x5d21dba00" + }, + "0x5d21dba99", + "0x5d21dba99" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x85d995eba9763907fdf35cd2034144dd9d53ce4c7f567f1d9592d67e8c5e3c3b" +} +``` + +## Method eth_sendRawTransaction + +The `sendRawTransaction` method submits a pre-signed transaction for broadcast to the Ethereum network. + +Parameters: + +- input: array of byte + +Returns: + +result: hash + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_sendRawTransaction", + "params":[ + "0xd46e8dd67c5d32be8d46e8dd67c5d32be8058bb8eb970870f072445675058bb8eb970870f072445675" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x85d995eba9763907fdf35cd2034144dd9d53ce4c7f567f1d9592d67e8c5e3c3b" +} +``` + +## Method eth_sendTransaction + +The `sendTransaction` method creates new message call transaction or a contract creation, if the data field contains code, and signs it using the account specified in from. + +Parameters: + +- args: object TransactionArgs + +Returns: + +result: hash + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_sendTransaction", + "params":[ + { + from: "0xb60e8dd61c5d32be8058bb8eb970870f07233155", + to: "0xd46e8dd67c5d32be8058bb8eb970870f07244567", + gas: "0x76c0", + gasPrice: "0x9184e72a000", + value: "0x9184e72a", + input: "0xd46e8dd67c5d32be8d46e8dd67c5d32be8058bb8eb970870f072445675058bb8eb970870f072445675" + } + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x85d995eba9763907fdf35cd2034144dd9d53ce4c7f567f1d9592d67e8c5e3c3b" +} +``` + +## Method eth_sign + +The `sign` method calculates an Ethereum specific signature with: `sign(keccak256("\x19Ethereum Signed Message:\n" + len(message) + message)))`. + +By adding a prefix to the message makes the calculated signature recognizable as an Ethereum specific signature. This prevents misuse where a malicious dapp can sign arbitrary data (e.g. transaction) and use the signature to impersonate the victim. + +Note: the address to sign with must be unlocked. + +Parameters: + +- addr: address, required, account address +- data: array of byte, required, message to sign + +Returns: + +result: array of byte + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_sign", + "params":[ + "0xD4CE02705041F04135f1949Bc835c1Fe0885513c", + "0x1234abcd" + ] +}' | jq +``` + +Response: + +```json +{ + "id":1, + "jsonrpc": "2.0", + "result": "0xa3f20717a250c2b0b729b7e5becbff67fdaef7e0699da4de7ca5895b02a170a12d887fd3b17bfdce3481f10bea41f45ba9f709d39ce8325427b57afcfc994cee1b" +} +``` + +## Method eth_signTransaction + +The `signTransaction` method signs a transaction that can be submitted to the network at a later time using with `eth_sendRawTransaction`. + +Parameters: + +- args: object TransactionArgs, required + - nonce: uint64, optional, anti-replay parameter + - to: address, optional, recipient address, or null if this is a contract creation transaction + - from: address, required, sender address + - value: big.Int, optional, value to be transferred, in wei + - data: array of byte, optional, compiled code of a contract or hash of the invoked method signature and encoded parameters + - input: same as data + - gas: uint64, optional, gas provided by the sender + - gasPrice: big.Int, optional, gas price, in wei, provided by the sender + - maxPriorityFeePerGas: big.Int, optional, maximum fee, in wei, the sender is willing to pay per gas above the base fee + - maxFeePerGas: big.Int, optional, maximum total fee (base fee + priority fee), in wei, the sender is willing to pay per gas. + - accessList: array of object, optional, list of addresses and storage keys the transaction plans to access + - chainId: big.Int, optional, chain ID + +Returns: + +result: object SignTransactionResult + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_signTransaction", + "params": [ + { + "data":"0xd46e8dd67c5d32be8d46e8dd67c5d32be8058bb8eb970870f072445675058bb8eb970870f072445675", + "from": "0xb60e8dd61c5d32be8058bb8eb970870f07233155", + "gas": "0x76c0", + "gasPrice": "0x9184e72a000", + "to": "0xd46e8dd67c5d32be8058bb8eb970870f07244567", + "value": "0x9184e72a" + "nonce":"0x1" + } + ] +}' | jq +``` + +Response: + +```json +{ + "v": "0x1", + "r": "0x51991c5099327d3c7eaa745de60c52a93555e5cbc418eb9b405fe92d986dee08", + "s": "0x65b1d20a39360c31de69f872244e23a3549b702e11bc7d8eb3586812ac62be8d" +} +``` + +## Method eth_submitWork + +The `submitWork` method can be used by external miner to submit their POW solution. It returns an indication if the work was accepted. + +Note, this is not an indication if the provided work was valid! + +Parameters: + +- nonce: BlockNonce, required +- solution: hash, required +- digest: hash, required + +Returns: + +result: bool + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_submitWork", + "params": [ + "0x0000000000000001", + "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef", + "0xD1FE5700000000000000000000000000D1FE5700000000000000000000000000" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": false +} +``` + +## Method eth_syncing + +The `syncing` method returns an object with data about the sync status or false. + +Parameters: + +None + +Returns: + +result: bool + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_syncing" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": false +} +``` + +## Filter methods + +## Method eth_getFilterChanges + +The `getFilterChanges` method polling method for a filter, which returns an array of logs which occurred since the last poll. Filter must be created by calling either `eth_newFilter` or `eth_newBlockFilter`. + +Parameters: + +- id: string, required, a string denoting the filter ID + +Returns: + +result: object + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_getFilterChanges", + "params": [ + "0x68ce60ffdb0c9480c307b0c3d2ae9391" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": [] +} +``` + +## Method eth_getFilterLogs + +The `getFilterLogs` method returns an array of all logs matching the filter with the given filter ID. + +Parameters: + +- id: string, required, a string denoting the filter ID + +Returns: + +result: array of Log, Log objects contain the following keys and their values: + +- address: Address from which this log originated. +- blockHash: The hash of the block where this log was in. null when it's a pending log. +- blockNumber: The block number where this log was in. null when it's a pending log. +- data: DATA. Contains the non-indexed arguments of the log. +- logIndex: A hexadecimal of the log index position in the block. null when it is a pending log. +- removed: true when the log was removed, due to a chain reorganization. false if it's a valid log. +- topics: Array of DATA. An array of 0 to 4 32-bytes DATA of indexed log arguments. In Solidity the first topic is the hash of the signature of the event (for example, Deposit(address,bytes32,uint256)), except when you declared the event with the anonymous specifier. +- transactionHash: A hash of the transactions from which this log was created. null when it's a pending log. +- transactionIndex: A hexadecimal of the transactions index position from which this log was created. null when it's a pending log. + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_getFilterLogs", + "params": [ + "0x68ce60ffdb0c9480c307b0c3d2ae9391" + ] +}' | jq +``` + +## Method eth_newBlockFilter + +The `newBlockFilter` method creates a filter in the node, to notify when a new block arrives. To check if the state has changed, call `eth_getFilterChanges`. + +Parameters: + +None + +Returns: + +result: string + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_newBlockFilter" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x2b5dddffaad1435838168a59fd0b7bd0" +} +``` + +## Method eth_newFilter + +The `newFilter` method creates a filter object based on the given filter options, to notify when the state changes (logs). To check if the state has changed, call `eth_getFilterChanges`. + +Parameters: + +- crit: ojbect FilterCriteria, a filter object with the following keys and their values: + +- address: optional, a contract address or a list of addresses from which logs should originate. +- fromBlock: optional, default is latest, a hexadecimal block number, or one of the string tags latest, earliest, pending, safe, or finalized. See the default block parameter. +- toBlock: optional, default is latest, a hexadecimal block number, or one of the string tags latest, earliest, pending, safe, or finalized. See the default block parameter. +- topics: aoptional, an array of 32 bytes DATA topics. Topics are order-dependent. + +Returns: + +result: string + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_newFilter", + "params": [ + { + "fromBlock": "0x2bb7231", + "toBlock": "0x2bb7233" + } + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x28e04254af38edfd1925af411eb8b6b1" +} +``` + +## Method eth_newPendingTransactionFilter + +The `newPendingTransactionFilter` method creates a filter in the node, to notify when new pending transactions arrive. To check if the state has changed, call `eth_getFilterChanges`. + +Parameters: + +None + +Returns: + +result: string + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_newPendingTransactionFilter" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x6c6a174e72b1d72d44f3b212269bfcf8" +} +``` + +## Method eth_uninstallFilter + +The `uninstallFilter` method uninstalls a filter with given ID. This method should always be called when watching is no longer needed. Additionally, filters time out when they aren't requested with `eth_getFilterChanges` for a period of time. + +Parameters: + +- id: string, required, a string denoting the ID of the filter to be uninstalled. + +Returns: + +result: bool, true if the filter was successfully uninstalled, otherwise false + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "eth_uninstallFilter", + "params": [ + "0x43f0c93bf463861b7c15a5d11d402d9b" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": false +} +``` diff --git a/docs/XDPoSChain/eth/eth_getBlockByHash_response.json b/docs/XDPoSChain/eth/eth_getBlockByHash_response.json new file mode 100644 index 0000000..9ca0c4a --- /dev/null +++ b/docs/XDPoSChain/eth/eth_getBlockByHash_response.json @@ -0,0 +1,81 @@ +{ + "jsonrpc": "2.0", + "id": 1003, + "result": { + "difficulty": "0x1", + "extraData": "0x02f9135583805187f9134eeaa023d9b15b34339bed8c20f4cea2aea76194a0e670c1b412dec9a77991ee418c5083805186840548f4f0f9131bb8418a9a5a8fcd87c3cad67882c109a1c0943564c5905a01b955ecd1b1bfbf1f507a2280b5bb8360bd67cd2b5d5d3f98247a9e384d9cc2097056689522c6c71b4f0301b841522ece4249e8ee4b3082cace851d50c50114553985325c10cf29b9527af41fe52c5571631e5f2011657747c78809df30abd551e13bb6fe6278f73d2b8b75512b00b8410801db1ac986de42f36e7fb6d8fb538a62211aeed5d0c1a6f6b597178e53950b17cde2d3808b08f1ff36ad10e20c5108e6e817efc1100feb1e8101f2fc32a41101b84140d113edad78aa56fd110c4d4a1a39427a5210b05a2c0e340863bb22627b70fc1ad089e2f008d11dc62044fee04351fb91c893c427a41f6aa5344c91c8b5d4dd01b8414b2710459d77d9d842bde95c39aa03a642cbd120f784a51eb7323d88a93e98851517a457a564c4fcefadc3307adbd482696842552a0297fe835487931128185001b841aecce9a88402589e89607e3b5bb3fc21fbd5fde146238058e78a7b2115ab821329cd08cba450c76e5ab78cd05de9ca5023a7446970b8b10e5602e7ce7eb5bbec01b841e7f943508c97d6db6312f57f31a58414e5a750e552e0c33416d985ab20b53a541ab8cd858be92919792cbca10b630f3112bab25939f9f12f972155d3d6e44d7700b841a08d1ffdc33c6a8470dbe2e3c2e474992e8b7278e6259cc99d39d4ac49626bc44703588a1e2a80c4d871b38c1903774dd056e6abb68dcf5e3eeec310572d4c5501b8417d328a967965ca5f4130ad172a684476fa8788deee735384a39bcaa6e942a49043fab8eb4b356612cb7c8898762c50088b14721123bdb21b971b0b7f059ba57a01b841ba357d7bdc48591a7b60aa000896cbb08de74b10a0a25b5231686506ee0edcc2015e1fc80a07ca3a01152f977ca2d90503fac64ffe74e5cafa5da11d06c6642b01b84108bf27fb082dfa8e83147a4598d2253aff92fe0099ca234048c01d94d10d43201154b5a57c9ebd47aae6949fefb753f8fda604f1bee3fd7bbbb1f57b4fae888f00b8412016cb51e4b34e96ba1957bf835bb126b05426b051f5e183758d87551f6cc3015cfb96a1e7f9cbbbcbd3aeaa28fa899873cb6cba504ce56586ccea013cef216501b8411c0f16e4f47a192a47d39aa12bb7313dd2991fcf03b28a8da50f59dc4cc54b2351e66930ca1011d25e3ef61e9db909db0a1d4fe1db35ddef4ef0590b4f2ca9c101b841eac21f66c6d5eff307f46a4458748b7c464e83a11e3df6c8652988bd8b9826ac74884615fa49e6ea040eea7d21ad68ecdd8445ac8c1787d897a8cee9f9fff25900b8414db0c552793b5adc7001c61089c1daf45814734548d720f3166ef98f405a47895b36a138da243c64a3cfa5cff3ab8a37a2bc60ea8138b5f0e982fe594ad58ab400b8414f6e62f037bc81dd26ac657c8f449e751b79ec7cf2c596a87f852220b7488cad66600ec7fcc9334bccee022f350a43cd14e399413ee19beaf83a5e031436255200b84120cd13947a1c45ff039803ce157928afafda1784ac5a5ae592890f07b8a2b3b5105b403dc24b7ebfe39a24aa082c420a77e937fb888facd4c53fb5c029a25f6e01b841a8edecb818bc380b630e5f01c4f1ef0809a3836e83829cb9bd234ba373caf5cf72b1618d91c56c56c1d491bc50104a1330f57148c8cdd1233ca2a974a969130700b841fe9e4134a9789e0dd23095db384e42b12036afb0396062470907da162216ec2a030fd66978182381a51868bfa983fa1cb6937948576671768d2f4d6b2aefb33d01b841dbef788acf979f4248e12c2b3bdd79cda356ad63bb9a55953b5053e4a41f2c810974ca465837238ea489efdef90791baa8e64dfc336bd88148f82d7b684006ae00b8416e792fb0c29c086c28274028a35714d7b876ec07f203be1a9628bdeabc149d4e32a7de951132f4b7e2c96369fd3e4cf5448312c36275b614bb6d0ea20ce7c48d01b84122318490dfd07d7d1725238a547d61c11b76c75b3215b82153bd0c8f328d96e17f493627005c418b0babcbe5e985af7cfbee6388db813fd6713f13a84a055fa901b841ea3c7af315514adfacf0f4d578eaa9cb52362f974a061b231ed7f8c604bbd3177591b9e1208115abc3267009d324f66a4cbd71ab4ce73f65387846adfa5221f201b841c9bbf9b407b98994ba0c7e8c2ab650b90d5945e70194fcd5bb14af64555d18bf5fa2258f0b1d9df02af14397399e7214368983f04a076a9e5e3549102500cf9c01b8411f456c26c51eda415ab305f5b03b96f53b38712e7aed46d424c49cd55ca6f03610468d402f390e06390b7aeeb7014a4fd8ce9372c70d05a7df49481058bbad1a00b84197b4b75fd92acae857b66ebcc3ed0e53a887dee8aec97e73ac01395d90fbdb5e2f9c7708010e89b04168c1bbdeec816bdbfdfaf51395ca37d6d6de6e21401cb401b841c33d387fe750815323ae9fe2231beee0e958dc42b51725d7ce29bd1208a993fd5f28b1d16021d4bf9f1ac7b4c004c1205c2a247107461aa55f932b0564af9bfb00b841dcf5603717030ed9534519cb8ac126919fbc96534d8c7da8f9d680ec2e4791652381a3a34cf398c52f8e8be3595c27d409ef60cc1ffcf4179ab7d2b0a31badf800b841e9a73d8d16d2a95dd55e222d00a9adefa23aebf1b6551d00a9912c831991cd9a1cc5534fa6adacfb154b4513b0d512554aee8a1d70bb43d0c736de5fe65fe74201b8415c5bd6bd4a923a75c8e7187e70852c6bd2780bd4e2c597a0d9e61ff7485b96f061c36b09fd6c4c29fcc11f066f8d11b0fa7d8f0a2e636e739a9662c416ed03e201b841a15b749646a4f741f1d6bce21e43bb6a77f32098c07cd0d4d3157119d97f44d7488741c71706653e53e10dc95663118199eca64e2e9f0585d0b22afef41b840301b8412e30b6d9dadfbee03cdcf1154548bb8b04703b75b75c85b0c1f3b6a9ffcdd4bb2538c569dc1b87f87c749a46932efa47dee2aed553af8f710edd29b9cf2e269a01b841b5a035b695453639a5051229216249b53873152bb94491dd56aa7d4be21d939b42aa67333955c441b9e67b1ad91640ef2aace89ea6ff8f7eb2b9eedb0ce802b101b8414ac5c90a63b50f96685a041092b6493c6986e32f78b95d306a1373c676040b2d5567fa94be899f64f67aebd9e381bcec69063c20f7fb59b4063776a7b77ab41a00b841fabf9bc0204d3c50a9a0e25827cb7c3229e1f5e8705999036fb83e4b09f5fdc05c4514d2336e82b41cd8225b3cd6e19113622f0be7cf6fb7ff9db38594de596900b84130b3813f0811482d8ba7bcea41f21398f88ad3368ac4043ff3d7759524664e296aeae9524b7f316a7c5f0c18ef794ef4ea7add536c0a648f4d5093805e5c73a001b8419fa4e5d2c1f1012aa8e63430274ca080bbf198569750ccef1b0538880553241119a620efa6f2c8b588dbffe3386b8a591cdf4029f5bcb0d195a079606661c44400b84188a413146dde351eb094f04188425579bbdb23f1a5d3aa8a9c2f0625c6e643796a1bfd5ed60aa0c82e90b678fa32670a0f5f5f5ac5e8fa175c7905eba265f47701b841030520c37dc58557c26d26893174c318d25eb644fc48213419455d31e869ad627218d8f1e05deb44426bd9a887b339983056f428cd3aecd357b4be6c68f7cc9600b8419b271de370a3bc401fe06be9a265d8bf8539d0716b2fc1e84e2f56ead058baae65d2a981e92596763bbe4a9ecd5cc170808fae0b8c6e136ad7e403847d48e7cf01b841137821a32062e924ac8bf1cd4cb9fc1eb03764f32e4294364a7788ccd9eb59d047809030a6e9a542e5b8ac6226443f964ea604d8a0027eb832f0165ea61cc50c00b841a0908745c2597bbba125df7faee9a058ff07c1a5c15478c81031dfac013da6c06705fd9e2a7a8b4909396bfd2c941029b142bf02dd34585eb7b7cef1353f798901b841593be7ef0de0d6d6900de685be3c6531dbdecb5e08ec2ebbeed90518ce85db28143693b9c39acc122ea84edceafaf56a1cadab010765f8726838e388b1e0826201b8411a26d30ae1c7b787a3bf0939823dca9ee2645f34cde6404f72279c1d9abaf17761c727210d2d256b14e3d5cb8fee49b64492a42e6d4dbc13e95ab70bc12d13c601b84152d2c4ff0cf0ff41bc5c2dc17b67e3d86a2e5f848639c14e0a67b40cff8c755d2de001d8557542fddad9e35cf2afdd6fd2d3de64f6e437e347ee18568aa66ffa00b841c445cb31a277d0cd4b37423898ad81196a4b48b2c72b02ce7e596f84343389ee785d99dec5383fdc239cc7a81fc720e79190de8430f2199ab7b28c97f1daad8d00b8411da564492b2fe5c7bee19558b4af2fadf29b371501766d1d63b795e87b882c991873a0e7d679264630262b2c675573a27502cf14224dbcba27b057e5b2d8b71101b841bd54b0a4ace16df1cd63613887fef2fbf541c862b40e39499c7c9e30f6d685a926fbc1b11331ded89601e27a45c44f4c78c8e01253d9b0485c65270d5ec8be4200b8413fd044a51016af6d3c5b57ac7e6e4ea6c4d1af9349eec4a283d7f219c9738bc55741cfb8743b714aee31e5a1aaab8031008e89cf8c7e817cc020905c44112a2101b841eec29d3ba5611c300d58bf6614542dbd9ef229c08feae504be87627b1100f74476ae939e5f7418a5944e85b895b9596aa23431390ba1bb609a866fa039bdfa4e00b841fd7d6e9825f3c4bbf974eecd7766397c0a89744e7fed9c06d464b6332c2b39a87ea72c414429c6981b3bfad602c5853706d02393beaa514c319f03f639702ae400b841be91ca9cebd516100ba6495bdb1fb70b9ac7b51c90953105d5bca6b5a8a973f17c7951966c553c1b7f11cb6b058e1f7be69cd9672d9ca8429e66a2c117cc3bcf00b84128dc77e12847efc39d37765508310ad503c9f4a59e8185444c7d3b2b8a5c71b80ef25661e0b28ec45202dbd14e02b9769b73293a7567a8ccf71c98357657c03401b841829d56d93c2bc19fc65338f2edf8b5ec396c91d0cc25286fd6660fed8ae43e2a674eac0e382deb187ae2c3102df69013ecb19401503248a5a1039d81bb87a99700b841f314c144095c65c7055534d3e489201561d3905d3d84be5b65db5e384ff3706b2e2f9850cf03b57ae4685a836a82bff4e843706188f99d6a27594c8ea82440f200b841a97bf554f35da0cfca1b3fa9bf05e8083989dbb7c5908e19e7f44d567757c5e77840b3b4cd908f283a07cdbf7ec4fa9d557d342ef8d4edb1b46ba9bc934aa68d00b8410ffb1bbaaba80cb9907af53e0494f52622e5c206211cd67b0fcb664a7918337623fcc4c9e2188b77de65f1974b2ed3d416fd5a9e8894c7fb20355b9fc0b7b25901b84106daaeb5288cf178e5a890b127ad3cb510a073d569acb0054a02c8d63359f35c48fe6797a28f2daf17fddfe750b476aff92d2146131e2585564e18a5e6d5409100b841d7079a73286fb3b9d77e21e7513aec8620d8ba320b15e7e599b9e9b00d4b8bd8440e71e3972fa5a961f579fbe18217911a7d332d8e6f0c2e4cc836e0e374b04800b8412f673c1f6bf4cf080f684ba96cb80b2fcec7c40268aeba377b34b4bfcee02ab03b68c6def89e1dd4555e6ce0b19a06864e458c336a5a029d744c3be7ae061acd00b841fa8c2522c12b2e9b603d2a274903f740f37fdb3fd22187b99cc0a2bdb81eb5650e53260ceaab7070b9532454d47b040c57fa285bed508823f0d96704fdf6fc0d01b841b9b5d381284f64c147157d9d77f50bd623fb7a35489012cd570b6fc73750873b31de4258fdc393664a2d303719381b536fff167b6079ac84102df6e23539c88700b84165ff2b78e7ff47a76c047c752b2abc6a57eb0cdda12e3441b58ac40bbdce96ab29baa0910310dd48c9f5c4f4005c4732280618cb0dbdd283e9e7cdc12536213001b84190bd9eb24bdfa05dd33f999bcc7ea7c791ef5a0c287df8f89cb6d74b8ce0cba260ed6b53cc2759452514a4d9da7d42ffbe7719810d266315bb9e8b790e18962d00b841ce3a39ec4c959cf3752b99c1f962c01853be4a99779adcec45216a234f6b1ff83a46ec4757f6095cb5f843c0e20de8ad79e42ab8c2caaacc1bf769f3af00fc5200b841a35df1ac147aea722e1980d3687303b849f422b7038477a9c1d50e1fe1d0457a656cf08c12b7e37e3548f3f352a3c5e7c0bb3d9d8be0026ba16885d63a6a292f01b8413d6c2ece8a92e8238aba60bfe505cf2944401a0654b4bed777154d83f0517e7962d67acfdad410821d8947dd772637908a789bda0123c18b8ed937cd30aa92f701b84130fac3174a2e48e846e0980ea4ab78569171fd6f70c11bf3a7b06dac7dc6fb7d01b0457713bb4370d11bef960a76a6025af80f3c6196ee8dd3e0383ace3153be00b841572ea236267892280ce29f9d7e009372fad8acd48888fb632570d295401042934b1ed2939a201dcb1f05b9f90ab8f1a9372f2215ffde420cc34db5fa586a9e9400b8416666fbee524ced1633fe3fe25fcc49b85cf93fb0a30f89de5f54a72471bf33981eb9a42cbf0f91cca13d84992cf60ff435211c5bfa9b62e244f4976e3e53dbc200b841135591e433c4a59160152746c6947f3bd4c1375acc2b8863181f334e4fd367134fe3cf9c2a93aa163f0dd5d81806dd6b90559b0c9a2c58de6401afb1c7cc516f00b841ca703546b9893b1c53d09b068c0db93c7ebb456c4dd6e06f692a3478aad01b2c2dcbfc3f33a4ebb3861e196514f497fd29461107212992fb5632ce0dedb9c83500b8416d73b3028f72ebf0dab31609bb5d394f6c2e302285ecaa58eb8d57ea029af05a6f9df958a640dc69e439cbced7b3ebee34b2e1a6815f02df5c106e22613ec80b00840548ee96", + "gasLimit": "0x1908b100", + "gasUsed": "0x7ff74", + "hash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "logsBloom": "0x00000020000000002000000000000000000000000000000000000000000000000080000008020000000000800200000000000000000420000000000000200000000000000000000800000008000008010000000000000000000000000000080000000000000000100000000000000000000000000000000000000010000800000000001000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000480000000040000000002000000000004000000000000000000000040000000000000000000000030000000000000000000000000000000000000000000040000000000000010", + "miner": "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x0000000000000000", + "number": "0x548f4f1", + "parentHash": "0x23d9b15b34339bed8c20f4cea2aea76194a0e670c1b412dec9a77991ee418c50", + "penalties": "0x", + "receiptsRoot": "0x473f2a6554298d1b72b3a73e266bee07f5f93509534f716428cf3d233bb25ec7", + "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", + "size": "0x17f5", + "stateRoot": "0xc8ab77ef1dbae46ec2791933df17332d3e9f82b0d12433daea286bed53a90758", + "timestamp": "0x68254b01", + "totalDifficulty": "0x1baffba5d", + "transactions": [ + { + "blockHash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "blockNumber": "0x548f4f1", + "from": "0xd844d373f4ef676665fcc18d9b6c89464a36f2d2", + "gas": "0xf4240", + "gasPrice": "0x37e11d600", + "hash": "0xbf83342ccdd6592eff8e2acfed87e23e852d684a4e2cfade89ba3b304c2b66a9", + "input": "0x414bf3890000000000000000000000003fb46c4db76d8e9f69f3f8388f43a7ca7e140807000000000000000000000000951857744785e80e2de051c32ee7b25f9c458c420000000000000000000000000000000000000000000000000000000000000064000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d20000000000000000000000000000000000000000000000000000000068254fab000000000000000000000000000000000000000000000fccf103db7d22e000000000000000000000000000000000000000000000000000acee08ed426a20ae840000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x5e8f", + "to": "0xecf4ea7907e779b8a7d0f90cb95fe06f43b610fb", + "transactionIndex": "0x0", + "value": "0x0", + "type": "0x0", + "v": "0x88", + "r": "0x5b1d0e4565493e5f815e26d622c6b9f5c7f23e269eac6ed950446ff7a10e3197", + "s": "0x25df537fe481c63c7defaaaccdd91105a0088f720789ecf5728460a4c3c0fc2" + }, + { + "blockHash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "blockNumber": "0x548f4f1", + "from": "0x2d40b858b6805d591d7f3d3affba6ec56c8f44fa", + "gas": "0x54c563", + "gasPrice": "0x37e11d600", + "hash": "0x7d094a854f038470cd419062bd5de9dbc99aa967e298f09d564a682500490e06", + "input": "0x8a054ac2", + "nonce": "0xfd8c9", + "to": "0x7aeb485080024b786a19cc76ad8857b8d4673a78", + "transactionIndex": "0x1", + "value": "0x0", + "type": "0x0", + "v": "0x87", + "r": "0xe29bd1d3345902626deb2f4fee492cb6ab8a6c757e84ef16b461c9272e6b013c", + "s": "0x4510436c2e4758d2c2808222eb964e248ca2a236b5d220252c10a04d6e045196" + }, + { + "blockHash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "blockNumber": "0x548f4f1", + "from": "0x2d40b858b6805d591d7f3d3affba6ec56c8f44fa", + "gas": "0x54c563", + "gasPrice": "0x37e11d600", + "hash": "0x1a2f811942a1615e4f0e97c1ea1e031238624d73cddc4976d6324c174259de37", + "input": "0x8a054ac2", + "nonce": "0xfd8ca", + "to": "0x7aeb485080024b786a19cc76ad8857b8d4673a78", + "transactionIndex": "0x2", + "value": "0x0", + "type": "0x0", + "v": "0x88", + "r": "0x5c1f2f9db92bf433c54414df6683cd20d61ca019cea958a2c1171f67ceab236", + "s": "0x36331a3dd1fa0b79bb071f11233528001b14ce73ac2af03ce4d69225cc20395a" + } + ], + "transactionsRoot": "0xa417362c60be564f32c58a2134c4a96ae7667d170537c58a207e95faaf37fae9", + "uncles": [], + "validator": "0xdf8c7a62018bc45cdc88b44f3e4e63c1a1bfb9a34faf0231f9c01383120096f450eefb39c2e78df6a5a72a0b260ed2f241153be560980984327a078832f3c45801", + "validators": "0x" + } +} diff --git a/docs/XDPoSChain/eth/eth_getBlockByNumber_response.json b/docs/XDPoSChain/eth/eth_getBlockByNumber_response.json new file mode 100644 index 0000000..bca34c8 --- /dev/null +++ b/docs/XDPoSChain/eth/eth_getBlockByNumber_response.json @@ -0,0 +1,166 @@ +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "difficulty": "0x1", + "extraData": "0x02f9135583b6ab3cf9134eeaa0f2cdb52367847cbfafc9def582add30ea06fb49755e9160dd98cae862997c45a83b6ab3b84057e7e7ff9131bb841837ddb5b4d3b0c07e180ef5b596c387c6f4805961df7eef96612adc84ac2073a77d2927a7dbd6668bb9968eb99ecc95180749f7760140155eec636cac7ea340b01b841b77c6fc44d6eaa13727491a2e49060687ecd934330e4e5400fef7d593e4f07cb00115f62a7784d497027c9396059575af10e04f88ec628b7e7a26073e64de08d00b841c3b6cbec2e77bd1ec32ab3f505d4b2798c31869b60b109d6668b9b95b69c733e0fb19e3f465c149a194aeb10024bb16a114da7088605b07b4c17d35ab90341a000b8412676d53d3ab04eb2189088a6aa439e950e6d92bdeb39befdf8a6af92dfc6156d093fcf28fa3f08c2e1e703bd53fb8381741c8624e361e6911e0e78bc2bdc667d01b8416d13a6cbb88133eb76bbcdb0d4021271f4a6ee00f9f4b69347ac0b880b888b6634e1161b51e37d81d3e46840940b4ef3833d165eb6b5b0929055d78a38b0d59d01b841d606bdf38575f3c544c20178556aa9f2e282f32d0bebe8a4e93ba64aeb2ced32088681aa0070bc41f7137b8ddd1352947b18d2d2132e24efe9dd9ce09cc9392301b841d983d5a776266b8113812d7cd8533ee380a90942aac5f985d9747992391763fa750602f086ba763efc4c7c26c9d42ba7cffb3dda1da52c15ebeb7e1d89157bf501b84101ddcc7ade745866866c53f55277f29de7bb7a3ee27d61e21ec0779d0293ddaa457aaefdbd16fd2d7e2928a42b51370e04dad420d0caa55f54f26204c8d9db6900b8417fef825a587687a6c89fb1d89fd20ad6dcc6625ff551c6a57f5c463fdcd45fb50ab8380e38012d706271e07ad0b8c522c2bbffb7fa7061f0eb65b859ee58118d01b84150868277ff360f23a9ec2cadcc73e7945eca283cfbbcd8d64b6b5c2355b140451e8b1e1aaf72809cb54b76671a07d01940a317da3d475eeeec3a03f2f69dee0801b8416dc156b85e2d2f1fb9b20d2e8e098c4c1107cc505d007576cfecee2c73f70aa00b78513272d2a90d8eab3e1e152f0d917700dae15bc85b1760ce9b0baeddfd3900b84121eec559389a24871d39fdb66468b930c1f5ceaa5ee366e2b9c5546ea37ce0de5fa5ee46ee2821264d7374e2ebae5190dfc0ea081cec56a11404b5cbe406994f00b84170b177b337eaa83e0e9ffaa74931a3557092e44254e80e9ba1a39952d199bb800cda5a2cebb710d576c66e3f3d1e7dd9b38c3a8fb1f0a508ab360c9481ae84fb00b841d04237183858769f91e1501ec0ca626f0a779d255348bda5077e37cf6528b0923a5dea5502fb9cb686be4a49c5640cf767947d1b0c3199e7c0c9a8bb4276272200b841ee0ee20e318fb38c84da330cd9a462b3f63d24530f8eb753e6a08170544aeeee3e4f78ed848f59b9206591595e95a5060f8e96c8e95e550dbcc3cba5197ecd3000b8411697a633dd09a5d15fab318711785f8adbe1989f00f793c5b51593d63148b12a094f9a9eac87b5c58eaf1fc4e294eb2cb99fd990ceb711ebd56684c6f7be36aa00b8414facc9442a9f0049672007b1c68e4b8553d1256bc6c27a7af615ac9441fbc37818dcca2a45271553f3f99f390ba42314bc871afaa5459a7d7357889eb019429a00b8414b8a02d4a8a80d52d7d2fc29a647cd102219ba9597df3460c2a29c8f4ae62fc01c9d6140708a84b21554c54e5cfd1be78f22a2e87b2c0d96117c08b16786685e00b8413273d14359069dcca17d314141f85924b2dc346c645e61baff7081592d1e2e0f6cd805e32c60ec2ae305cb07248d0048c51a26717d271375ccb84fad75a7575100b8412554a9a959b6872e26ea24c017ecdfdd4925fea5d829c71a3febada7e8444d1f25587e4a5a50a918a0c444b395d551f3861745504ae4dbbd20b38e86f589334600b84155c264c3a93a152dcfee26150efc33d90cdb2e6437208e216a8ddb19273624a6308c1ffd8300213016a8265968b0fcde7c858b19cec164f45a5331c7e7194dc800b841e7f5803a69d37910ef6eb680947ce02dea1cb384d0de52968044ccdfeec7f9c31953f60f2db7693aa14c4abe1dd05378840ff7a04d5e0ac6fc510b24bbf844c000b8417444244144f0f5e5679b36f0dd30b148109a0be8775fb7bc08512accbdb00d212df9b10be0f745d67355470578db5d62c91ff197a08e6cc22d939fd1bf71970601b84194fe8d6f5b6d1597c21e9c9cc5ade129eaed6947151e5655ede4ffb52315dbaf6e24bfbf3768409791b5aaea74fc8b77091a3d20f4ad60a58aa359fd306a8fa801b8410121e1031b9b3990e0bf0ced538b3ee1828581842be0fa6ae3239e9c70a895e610883fc7ed20950d3e0feb2d8a185617f6340a01d80fe5863245a664e9d95dc900b841b2126a1f0283f43cc5c96c16da98dc0df9d60556fd2e6c7170e04a4474d5b3e5168d05a5d21126ed50812d45b000a3477be166816ec73590e6a11ca99e49ca7600b8417b15cb33c2efa7100faa39c97a62d2d06cdbe13e9b667ac430f6d8f99cda2c845dd27fb5fd24c966848d835abbac0206f55ae0a5080a5c09f6f7f7e9583a813701b84102db90393b83f5b9e72098262d582f60b655a054e4e6a19017cb47cde21cbf7b6100584ae0922144d4487b7c2f9e031dfe672c50d355ccbba9aac1fe46cc355c00b841c6f507610e9ddefd4069703de624f98736453e1258fd09e549db132fc58b6f7e02cdab8e13844c7c9bc8ed98d6c3fc2069abdf179fc6daac070ed7a07e22a60900b8417cefd1d9fb96eda09546cd2f1f77f72ba3638fed70daff686b892543560ec283520212afdf39b49c81d7194d29a138656a9e18cae988db25d96809125def0e5801b8411784a368f29d6a58ff94643d1fc2f2aa0efc5b737588cf6bf540d29bf9914e6d28d630696ba5057fa6dd6f0e701be8d2cf0bcbcbc7ce0f5ec30eb0e46540efc100b841cb67736b938ea00feb81706e2b33588e13f1eea874af97c505273a2b72251e66157229290cf42ecea34c799f94e7f43a6a1c40f71fbf7483c62e2757413da30c01b841d927f510a8a366c7f26bef30c2fa9cd037c502126d61cb6b0f8d58821c60d5d663068e505d22f03ddeae46ba29602ab8c4f989b063eaecbcfb1a4c9a87fa607501b84138923461caa898e9faba2fd9aabd29106f661d4bda7f9d79ea7219c5b15f725a4c9444e08aa09b8169fd3e45bfc33a455153c25d6cb6cf64a7886b34c5e5c3c601b841ef0babf6d485bfd2641d3642fbb90270e445222d535e1fd188d1c477d50e25271650a35cb5fe7fc033f35ae0030a16190301f9e300dcbc51fd4bc2038b8ce84c00b8416eed408cb4dc045f91a992f6a2a49a915f6cdb12ad81859ef89a079bbea34339336b962afdd42a76651c4a8ce90a854dd3e36ef99ce97b82cd529ade7d74808401b841d5a1b9c532a08ff4e11322b1576a9d7e3ef505373943f393b9fe4341678ac61266c042341081459be26790a7cdc880a51558441599879b300eeb651e9e5f596500b841de5cf68255f303034c5d7aa2d82241422f5ef53ae5b4ab0ac20b4a7eb695e9c424300f12a8c4d1708c6f24dec16ddc9b638086032564e023c29053aeb91abfdd00b8417380fd57abbf5d5df3bcc978705af1ce86c028d453a52ebc52963855b540f4506cca077e686c1a1874e97ead8aa6b5a6cfe91e07ef40bd56cf2b14078fa7e85b00b8419372df227e9eb2b4e28496ccd15af44e61df4445813da027381f2daf20e9e7817ae5aa83671ef58099de5b11326b30fb82ae6e23221b060f5c0ee59ba45a29bd00b841e6eb0d86c03b235853a65f7d233c0fcd74fb38fdd4e6afd43123df928d543f1702d0fa4b9e2b05ba0b41d1e82cd3a6319bce8e439aaec55c6485ccd7924cca6f00b841641bd532ad71891a95bae852b1e7f0af68744311afd57d9de5711b7b1cf4879b0d67579e297e5e95be13fbff748c1797e237a108adf4ddae62f1ad6ec2cf3b2e00b8418d9c932a65d94fd33a596c6dd091ce463a28141911a59291253ef9fea20c9f0b64d2ad1067812b25ed35ac517a76adac9386893dd78c1bd187fcb9c4ffc5b4d001b841ea92d96136eba75830e7499f4f79a9c46f80300911a63516668211c21813e4333270a1ae051aa1f53f262986d1a8dac3eb78b41b66130e31fb29daaa48ee5e0f00b841a86413bc694fe00fe253a14d698d9ab47ea85b9daea52d7e491c78d7bdc575a53a78881e144e578a2318378785be278c16aa38093d53a50918f5bd45fd0be02a00b84118ffd6e1c48ef12db51e24e58fbdc799c6b06eb009a690510014d50fb4ce22f03ac154c1b5c6fdcf3e0a6bc375f2520610a64584238339d9a2db071e74b4053800b841ffe9d21e9293e32caea8669fdb2195812bdcf5a561a9b776be67681aba9a6cbd2cd3e1138138e86adaf1ba834e8fda2d232a1b91a2a724b16d778a9c1b627e1501b841fd766cc6da5b6e1c3ae71edd29c23d51aa30fff0e2e2ac38b93418fcb82ea35d532a0c51137d1833024514c8d5aca92d6fa002d522a13fb88891ff80ad95b77000b84115cf965b9d9a3236a3f0baeac521fb3d7146bf1e5adb45567c22e3122d1b31d1603cc35eaed1833ee643984d9e12fc3b31a2d8f901c0d8203458cd09fecddd1601b8419cb790f2cfcbe31f7071fc82fcf93ae0a7b9c712bd7edd484929487a6a9fddd8040abf69fadf9380973247b4b32b9d36da6353d39e33ea74d65e3b39f7619a8a00b841763c059f894fa49b29ddd976725acad3aab570d3f4e30a5f838d3a155f93ca0a0d02c1e75af9dabf5f7acab446297f295150a40836121d097a421979e87cf39a01b841cd6d4fa4d598eddad82c3942462d1bfe7f8dc93c6f1920270280642ef0fe40833d8a642643035cad09e52bf64a9387778ea2df79f7f6deb7d2d9c46554dff6e100b8410affb0d5d115da58b6949b0ca1fb3a53d5e0d27c2c4b12f0c7055b836d76d9be14323ae396979e836c69e6d999a65a4e786f1e9b30fe6f7039204f9acda45f7201b8416c22641b8d76f41703561eff1b2f55f005f3fb9c6cd1d340458155cf41b8f69833ee976e9d66ab95392dcf8343c2f55cd965f750ccd26d468d0c379346954e9e01b8415337c8727e2598f95388169efda63cda63e5c0975b01198763df242e45eb68674f073c9e931e860a35e5f263d6acf28513bf75b401ae138f3c2eb10c467c78b000b8413170de1caa7a9e18dcd15d7ea777833bd45d71001cb9f248357427bd9a5b54a778596ee3430d04bc1e8010444818a355fd840b0e1d827d612c7e17182374049801b8411db023920250730007880fee23ca925d28673c2dd60bf61ee5d9b0bf7685784b1400f5a7683ce9768c66864b9080a51648154423f4b78b135904dac2f66474fc00b841a92ba7f1a45e150d16165d3da586126df8593594de62d3f53798d8e190536dbf6ca3fff3e25b0454ef4cf62df3bf434ff9011721845fbd2a2db14d9eb13b0e9100b8416c9b8dfc324f310bdfba315a78b73ea14884ace25d4994f38ef50c5e71b3143e6ebbddb6f17e156aed0ce8b004c2e4ad67f14652c1499c1ab3aa3915bf083d7800b84169fb9b8ab8da521ca2a006bb26f417294dac5a79c34970abaa78d206ae2447db45bdcfc419a74732a4392e466339d46b199ad5ff282cb64d42497af1c73cd8fd00b841b5b730038ea7632cd7a802b95e3d83d247f5cec5c3046d4cd4742e0ca996afdf37ec20c27280aa20699c6919e2e9c9068202eaf37ec10fc61a0157dad8c97d1f00b841dbe8393e99e623fc7253eced6067e6dbf46122b5adca3f13ab4949d1dd3ffb7101b8061c4784fb14737d8b4345db2967a37b1f04eafb1a02fc379d365dedfacb01b8416d4c92293bb9a0001f37a4c1e1f433b4356ca4a5910c0abd7e3896d92ea0d31e7e4c9c17392eba80fc24f81730e6286b74c8705a8c13dbca9429a955a0949b3b01b8418a83086c2f108d5a64797da08fafd52f695e447bcfc779fbfb6037cb138c1d246da7d07f0265554fd46a4a315772b1fdd8f7ae1b1f4f9a9016a67f8ca2c8804c01b841aa9b45094ffe852877189a707586c075ae526ad4b3435ed59ce4348f87020b156d95c347ef82104c225b5102324ca868e603e18131bca94410acaa7b53bfa5c101b841b7ddee6c591eeb6eabeee34340400f07b7626929bd46eb477aef19a0f0f852df5a4a0537240921a37730bc0386388ea923c4214e2fa2dd40593bcd0955c4e9e400b84193a5a978662622249a4e829a2077c28f5a7f05c21e97e34db72d75d9cc8ea5fc39f1a6d44d491c14eb80e08c747ef013b1a61743f23a35c7e96b64ccf3e5770301b841b4bbf8397fac9dceac02fe8afe81511f0e888eac74f895eaacc1acc886fb4d7c5f92b5b2121165b265c59289646faf44c45479940b614d086045bb87f788a39e01b84150650d1c9c3c788f392b3efc247d7e87d4ba0a52ffadd6d011d9f05ff3b492202c779fbc26fd7fda908caeac829dddadafe8df54631f3c28867871088320e06d00b8410b6881cf8c043143cf7ff291133a257aaf772c647d6b278000af6b6c2b1cf8342135068e308aef96de60904341951879749e8b68070bf6f81a1a05ac587d1ab201b8418de34808175e41e3c4e98c98fb5da4375ab819cb15ad52c39efe66e3b172574c710dba822a55f8c1660c06b283252b3ac56e943cb48f3370ae2c0c7b3acf6b2801b8412b99a6c46ea5b7decdd0b7cae778b10abb294d98acfa97f252e39cfeb0c0e8aa48f2cb71b4bf33875317b9ee5c97f87ad73d8f01e6ce81123bfed8459e7e71c001b841727a5b4e767b7048ab89444e09ef99352a6f9d9c7dc91002a334d3790a47816a45f252ee114f6e9dcb7ffdcb43c309aee3a45aeba5eed0c497c837dc2cfccf040084057e7a02", + "gasLimit": "0x1908b100", + "gasUsed": "0x4bb26", + "hash": "0xda74133e18dedb3ecc8eaa8917f8b3bf1040a1913a6cba95e73cad53363f3f9a", + "logsBloom": "0x04000000008020000000000000002000000000000000050000000000000000000000000000000000000000000008000200000400000400000000000000042000004000020000000000000000000000000000000000040000000200000000000040800000000000000000000000000000010000000000000000000000000000000000080400000000000000000000000000000000000000000000008000400010000000000000000000000100000000000004000000000000010000084400008000000000000000000000004010080000000000000000000000000000000040000008400000000000000000200000000000020100008000000000000000010000", + "miner": "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x0000000000000000", + "number": "0x57e7e80", + "parentHash": "0xf2cdb52367847cbfafc9def582add30ea06fb49755e9160dd98cae862997c45a", + "penalties": "0x", + "receiptsRoot": "0x2062b330f0d9e08a6632110056ed7937b4fa409738475f4fdc3c6504b757234e", + "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", + "size": "0x1e84", + "stateRoot": "0x660e0982aaef7aa360bad1db5b569b422e87e8e1203f89cb8569712c4f45f665", + "timestamp": "0x68985fd3", + "totalDifficulty": "0x1bb3543ec", + "transactions": [ + { + "blockHash": "0xda74133e18dedb3ecc8eaa8917f8b3bf1040a1913a6cba95e73cad53363f3f9a", + "blockNumber": "0x57e7e80", + "from": "0x51b2f6cd1bf02c6b434f1606ea1a41861bfc8c62", + "gas": "0x7362", + "gasPrice": "0x2e90edd00", + "hash": "0x3ff21e8223c5dd55d8e40c6f85750e8b26f524c98a0fa4f233ea5abd0b230cd5", + "input": "0xafb91b2e0000000000000000000000007b15d0c6f18841fcb5071083f00374043c59e2910000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000277b22726f6c65223a2275736572222c2267616d654964223a312c226576656e744964223a33337d00000000000000000000000000000000000000000000000000", + "nonce": "0x82c62", + "to": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "transactionIndex": "0x0", + "value": "0x0", + "type": "0x0", + "v": "0x88", + "r": "0x2f777857882dd132dcfa412b104e90ecaf9d4bd06f65418ff1135fe48c523a01", + "s": "0x781152dadfe50b2b51e48bae05de04fc183eeed2643109b15da26601259beed7" + }, + { + "blockHash": "0xda74133e18dedb3ecc8eaa8917f8b3bf1040a1913a6cba95e73cad53363f3f9a", + "blockNumber": "0x57e7e80", + "from": "0x4f8f85bded3e79f103042b79bdc9e2ff4b31aabb", + "gas": "0x2919d", + "gasPrice": "0x2e90edd00", + "hash": "0x5ad1e4ac44fc918278ace70757a6bb12c2b9c67e4d4130175bdfa2e9ad89cd27", + "input": "0x379607f50000000000000000000000000000000000000000000000000000000000000198", + "nonce": "0x1704", + "to": "0x9d458330e458f11fd1ce7e44b3a66568af8076a0", + "transactionIndex": "0x1", + "value": "0x0", + "type": "0x0", + "v": "0x88", + "r": "0x88c82fbef1521b32afb8126747bf83f0b8430fd0d1771bb55cf2456af423af2f", + "s": "0x3e8df5bcce628b1d5e6a20bf056224bc365c73cf6db64e7c7fbdd1c6f908f12f" + }, + { + "blockHash": "0xda74133e18dedb3ecc8eaa8917f8b3bf1040a1913a6cba95e73cad53363f3f9a", + "blockNumber": "0x57e7e80", + "from": "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "gas": "0x7322", + "gasPrice": "0x2e90edd00", + "hash": "0xbe249b58f876e1e17f3988cab801b3a28ebbbf1cbedf9ce09a2e714ca76b1797", + "input": "0xafb91b2e00000000000000000000000039e774862deb4f3565366b98669ae75890d646090000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000267b22726f6c65223a2275736572222c2267616d654964223a322c226576656e744964223a357d0000000000000000000000000000000000000000000000000000", + "nonce": "0x82d67", + "to": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "transactionIndex": "0x2", + "value": "0x0", + "type": "0x0", + "v": "0x87", + "r": "0xf3816caf4cb9229fd478562821de55827dc164457bc36dd7b482a9f4caff6f23", + "s": "0x27bc12d7c336697495bc0b6d61a7fc5ff3b4b648fa78eb13a112333e6f37929f" + }, + { + "blockHash": "0xda74133e18dedb3ecc8eaa8917f8b3bf1040a1913a6cba95e73cad53363f3f9a", + "blockNumber": "0x57e7e80", + "from": "0x04dd28a6e86f73bc04a9cdda544d2a649336e27e", + "gas": "0x7362", + "gasPrice": "0x2e90edd00", + "hash": "0xec46804a7b6de0a32973e225ace6bb09ef092d0a4be8ce4c3a1b187f15ea7bdd", + "input": "0xafb91b2e000000000000000000000000377bf4faa343f978c0491f96d9049fca90b0c7080000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000277b22726f6c65223a2275736572222c2267616d654964223a322c226576656e744964223a34327d00000000000000000000000000000000000000000000000000", + "nonce": "0x45901", + "to": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "transactionIndex": "0x3", + "value": "0x0", + "type": "0x0", + "v": "0x88", + "r": "0xd508700488afc5d21caeccab49478fe8f88bd1346303932973e410b0f2575d17", + "s": "0x3723ea4788d009615183c698d5818569cdcf49efa86fa42ce1862fa025c5ab84" + }, + { + "blockHash": "0xda74133e18dedb3ecc8eaa8917f8b3bf1040a1913a6cba95e73cad53363f3f9a", + "blockNumber": "0x57e7e80", + "from": "0x2836de212e4e07f0b79a8d7711ff15850c472755", + "gas": "0x7362", + "gasPrice": "0x2e90edd00", + "hash": "0x20e1ff69dec101f9ddba6226fb94f347f488c80e3e84e4438c70b59817f65053", + "input": "0xafb91b2e0000000000000000000000001b8240b9364ccef7c1eaf29271b1f60641bebd930000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000277b22726f6c65223a2275736572222c2267616d654964223a362c226576656e744964223a31367d00000000000000000000000000000000000000000000000000", + "nonce": "0x459c6", + "to": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "transactionIndex": "0x4", + "value": "0x0", + "type": "0x0", + "v": "0x87", + "r": "0x19a068951c7444d662019f7eddfd2afb03476eb6eb2b24c045287be521349fec", + "s": "0x1f75d36ba6fc7ade0aa548620262646e383a9dbae0337ab222a46a6bbed9395a" + }, + { + "blockHash": "0xda74133e18dedb3ecc8eaa8917f8b3bf1040a1913a6cba95e73cad53363f3f9a", + "blockNumber": "0x57e7e80", + "from": "0x1f78db2479b9cb0865a698eb21ad31af0aa932e6", + "gas": "0x7362", + "gasPrice": "0x2e90edd00", + "hash": "0x9b558f6c69995f6dac5b1fa2a689c84d6a978393b19d45b64a99ae5f6fce6411", + "input": "0xafb91b2e0000000000000000000000005ae7f3bf2b19fbc9091fbde5f6aabddd266a634b0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000277b22726f6c65223a2275736572222c2267616d654964223a322c226576656e744964223a35307d00000000000000000000000000000000000000000000000000", + "nonce": "0x424f3", + "to": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "transactionIndex": "0x5", + "value": "0x0", + "type": "0x0", + "v": "0x87", + "r": "0xc8e554b84659e482eec63eefa8a0c0ae1c34b1b28a339419c7688e9a6ff9e6c0", + "s": "0x5489eca8a7f69f338716e0b4372201182cbf05ec046080b2a322fba9b9212ebb" + }, + { + "blockHash": "0xda74133e18dedb3ecc8eaa8917f8b3bf1040a1913a6cba95e73cad53363f3f9a", + "blockNumber": "0x57e7e80", + "from": "0xf22145d91ebf6511b287818ec575e441f99da412", + "gas": "0x7362", + "gasPrice": "0x2e90edd00", + "hash": "0xc2b24557884721400165d37e303be5bad4d963c5b4e390ab5b5cd2dfcece629a", + "input": "0xafb91b2e000000000000000000000000b2fdedcfc495fceb68d9d29bb035b24e59e5d1120000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000277b22726f6c65223a2275736572222c2267616d654964223a312c226576656e744964223a32337d00000000000000000000000000000000000000000000000000", + "nonce": "0x45990", + "to": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "transactionIndex": "0x6", + "value": "0x0", + "type": "0x0", + "v": "0x88", + "r": "0x6e9b21ea83a860f2b8a2b3b44c91435e19d23f5eaa2a7a548f01c18c3869df7d", + "s": "0x60b3d4b24f7c995cb698aa3b01d5aeb9e63cc6b55fd1bbd3a4287634c7cf6d18" + }, + { + "blockHash": "0xda74133e18dedb3ecc8eaa8917f8b3bf1040a1913a6cba95e73cad53363f3f9a", + "blockNumber": "0x57e7e80", + "from": "0x0bf9d371899f127e52efa7d81d6e71f457f8cab9", + "gas": "0x7362", + "gasPrice": "0x2e90edd00", + "hash": "0x2ac4a730cc9e479c7fdc51713c04f5239c22dc70a30d2489ac737d141db8a75a", + "input": "0xafb91b2e000000000000000000000000c5ebfee4bf3d9ebfa899d812d76c9e70d3d883780000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000277b22726f6c65223a2275736572222c2267616d654964223a362c226576656e744964223a31347d00000000000000000000000000000000000000000000000000", + "nonce": "0x82bb9", + "to": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "transactionIndex": "0x7", + "value": "0x0", + "type": "0x0", + "v": "0x88", + "r": "0x6a2ae97a2a860aa07eeb1e82528b6a51b80fb2faba6a977b121cb98e31cedbcb", + "s": "0x38642759230a8471e24ca1c12096c6853bdae46d0128bac0f0dfe0d4ef667f97" + } + ], + "transactionsRoot": "0xc9238d8d9d816f17bd253188c69163553052e25603973fb42303b0461e4760c1", + "uncles": [], + "validator": "0x2c993a101185d1012c15f89492524b248bc360c8c181cd1e576b387eb58e41cb7cd1e3e3ea8f331dbe31f5f951a44b774cd45d7aefcdec5aef7927cb5cb6a18600", + "validators": "0x" + } +} diff --git a/docs/XDPoSChain/eth/eth_getBlockReceipts_response.json b/docs/XDPoSChain/eth/eth_getBlockReceipts_response.json new file mode 100644 index 0000000..a867532 --- /dev/null +++ b/docs/XDPoSChain/eth/eth_getBlockReceipts_response.json @@ -0,0 +1,6577 @@ +{ + "jsonrpc": "2.0", + "id": 1004, + "result": [ + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x7322", + "from": "0x6a7b501f6becea116623ef1c85304d0983a42fa0", + "gasUsed": "0x7322", + "logs": [ + { + "address": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "topics": [ + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x000000000000000000000000b82cfa5e002dfde320296936f83c67cbd912f820", + "0x0000000000000000000000000000000000000000000000000000000000000001" + ], + "data": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000277b22726f6c65223a2275736572222c2267616d654964223a312c226576656e744964223a32327d00000000000000000000000000000000000000000000000000", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x258d9eac2570d08d7c346fc83662af80315cd6703c03d1ea36a5e8b04d6241dc", + "transactionIndex": "0x0", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x0", + "removed": false + } + ], + "logsBloom": "0x00000000000020000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000040000000000000000000000800000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000004000000000000000000000040000000000004000000000000000000000000020100000000000000000000000000", + "status": "0x1", + "to": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "transactionHash": "0x258d9eac2570d08d7c346fc83662af80315cd6703c03d1ea36a5e8b04d6241dc", + "transactionIndex": "0x0", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0xe684", + "from": "0x2836de212e4e07f0b79a8d7711ff15850c472755", + "gasUsed": "0x7362", + "logs": [ + { + "address": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "topics": [ + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x0000000000000000000000006dd4db292a1630d41448012107e00dea2e8ecf7e", + "0x0000000000000000000000000000000000000000000000000000000000000001" + ], + "data": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000277b22726f6c65223a2275736572222c2267616d654964223a312c226576656e744964223a32327d00000000000000000000000000000000000000000000000000", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x6d937ff7c570fb54dee79b1cbb988653095d2e7c492ec49c5cddf7385f001bc1", + "transactionIndex": "0x1", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x1", + "removed": false + } + ], + "logsBloom": "0x00200000010020000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000040000008000000000000000000000000000000000000000040000000000000000000000800000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000020100000000000000000000000000", + "status": "0x1", + "to": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "transactionHash": "0x6d937ff7c570fb54dee79b1cbb988653095d2e7c492ec49c5cddf7385f001bc1", + "transactionIndex": "0x1", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x159e6", + "from": "0xf22145d91ebf6511b287818ec575e441f99da412", + "gasUsed": "0x7362", + "logs": [ + { + "address": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "topics": [ + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x000000000000000000000000386cdecea26216fdfd695aa141b29e3afa8bc4d4", + "0x0000000000000000000000000000000000000000000000000000000000000001" + ], + "data": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000277b22726f6c65223a2275736572222c2267616d654964223a312c226576656e744964223a32387d00000000000000000000000000000000000000000000000000", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xb5b14904f6641436f48513d7c3844f846497e7d2af5c681e15e697d332ae1455", + "transactionIndex": "0x2", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x2", + "removed": false + } + ], + "logsBloom": "0x00000000000020000000000000000000000000000000040000000000000000000000001000000000000000000000000000000000000000000000000000040000000000000000020000000000000000000000000000040000000000000000000000800000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000020100000000000000000000000000", + "status": "0x1", + "to": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "transactionHash": "0xb5b14904f6641436f48513d7c3844f846497e7d2af5c681e15e697d332ae1455", + "transactionIndex": "0x2", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x1cd48", + "from": "0xee34f5e99c4e8cf6754cb1295590cd4ee68796cd", + "gasUsed": "0x7362", + "logs": [ + { + "address": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "topics": [ + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x000000000000000000000000c0ec14da52ed45570faef305fabcb83d55cb2450", + "0x0000000000000000000000000000000000000000000000000000000000000001" + ], + "data": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000277b22726f6c65223a2275736572222c2267616d654964223a312c226576656e744964223a33347d00000000000000000000000000000000000000000000000000", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xeb3e0d6d275f28f9a8c68bb84e430d58e40ce9bbf739b8d7470b351725cfbbdc", + "transactionIndex": "0x3", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x3", + "removed": false + } + ], + "logsBloom": "0x00000000000020000000000000000000100000000000040000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000040000000000000000000000800000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000020000000040000000000000000000000000000000000000020100000000000000000000000000", + "status": "0x1", + "to": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "transactionHash": "0xeb3e0d6d275f28f9a8c68bb84e430d58e40ce9bbf739b8d7470b351725cfbbdc", + "transactionIndex": "0x3", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x58364", + "from": "0x4f8f85bded3e79f103042b79bdc9e2ff4b31aabb", + "gasUsed": "0x3b61c", + "logs": [ + { + "address": "0x9b8e12b0bac165b86967e771d98b520ec3f665a6", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a5d364b97126600c0addfd5c339230748bcaa17", + "0x0000000000000000000000004f8f85bded3e79f103042b79bdc9e2ff4b31aabb" + ], + "data": "0x00000000000000000000000000000000000000000000003635c9adc5dea00000", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x0b0e016c80e3aca86bb04bdcafe9d71ac3b2e2d12da597715f6aceaafe7e4483", + "transactionIndex": "0x4", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x4", + "removed": false + }, + { + "address": "0x7a5d364b97126600c0addfd5c339230748bcaa17", + "topics": [ + "0xaa74337f506e5354f86b300da7340bad992adb9d9aec80b0ee390b2df5ecdce0" + ], + "data": "0x0000000000000000000000009d458330e458f11fd1ce7e44b3a66568af8076a0000000000000000000000000000000000000000000000000000000000000019b00000000000000000000000000000000000000000000002b5e3af16b1880000000000000000000000000000000000000000000000000000ad78ebc5ac6200000", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x0b0e016c80e3aca86bb04bdcafe9d71ac3b2e2d12da597715f6aceaafe7e4483", + "transactionIndex": "0x4", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x5", + "removed": false + } + ], + "logsBloom": "0x00004000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000004000000000000080000008000000000000000000400000000000000000000000000000000000000000000000000000000000000000000008000010002000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000400000010000002000000000040002000000000000000000000000000000000000000000000000000000000000000000800000000000000000000008000000000000040", + "status": "0x1", + "to": "0x9d458330e458f11fd1ce7e44b3a66568af8076a0", + "transactionHash": "0x0b0e016c80e3aca86bb04bdcafe9d71ac3b2e2d12da597715f6aceaafe7e4483", + "transactionIndex": "0x4", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x0bf9d371899f127e52efa7d81d6e71f457f8cab9", + "gasUsed": "0x7362", + "logs": [ + { + "address": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "topics": [ + "0x720de19c410b3e984289c84afa93598bb0075152e0ffa5623d10756005b4a0f4", + "0x000000000000000000000000b69ba4ea6e284906863e5f87e483de1428631090", + "0x0000000000000000000000000000000000000000000000000000000000000001" + ], + "data": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000277b22726f6c65223a2275736572222c2267616d654964223a312c226576656e744964223a32367d00000000000000000000000000000000000000000000000000", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x0de5fd0c1f39bc04228bdb0d07fc2c924b8ab90eda3dfd421ab89d1d716adce8", + "transactionIndex": "0x5", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x6", + "removed": false + } + ], + "logsBloom": "0x00000000000020000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000040002000000000000000000000000000000000000000000040000000000000000000000800000000000000000000000000000010000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000020100000000000000000000000000", + "status": "0x1", + "to": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "transactionHash": "0x0de5fd0c1f39bc04228bdb0d07fc2c924b8ab90eda3dfd421ab89d1d716adce8", + "transactionIndex": "0x5", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x1a7c3d7481adc7e067f2f73f35f44143d7bf02d4", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x37215a4d569c2599508ad60704983e65506d474bdaf8b6bed00c2ee7b0cf7a4c", + "transactionIndex": "0x6", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x7", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x37215a4d569c2599508ad60704983e65506d474bdaf8b6bed00c2ee7b0cf7a4c", + "transactionIndex": "0x6", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x417b06236ecc5bf200a59152e92cd4923867409c", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x562406e598ca1616d880ce5e7acc577f57f5994fb2edefb4c13b02f3fe2a1b5c", + "transactionIndex": "0x7", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x8", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x562406e598ca1616d880ce5e7acc577f57f5994fb2edefb4c13b02f3fe2a1b5c", + "transactionIndex": "0x7", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xccab2f5267bc66b69f1688560c2e075216908a2c", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x9b0c611f8b08e5b1d6a0e7b66dfccea56fef3b52e2a490920a4c657d32ad4a8f", + "transactionIndex": "0x8", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x9", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x9b0c611f8b08e5b1d6a0e7b66dfccea56fef3b52e2a490920a4c657d32ad4a8f", + "transactionIndex": "0x8", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x618e706c531e57f44a739cef129bf08cbd912d6a", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xa4b4ab1d0c7c816aafe6432b31d85a9446c5eadb059e222e927418b8bdd6072e", + "transactionIndex": "0x9", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xa", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xa4b4ab1d0c7c816aafe6432b31d85a9446c5eadb059e222e927418b8bdd6072e", + "transactionIndex": "0x9", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x595b8170eaf2e53e47cc20db47ad063a1e6e2c0f", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x9e1bbd2945c27e49b0a3eae2288b44d8f4bd37eb3383b7d87efa3486f2f2ae78", + "transactionIndex": "0xa", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xb", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x9e1bbd2945c27e49b0a3eae2288b44d8f4bd37eb3383b7d87efa3486f2f2ae78", + "transactionIndex": "0xa", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x8f5fdc5f5f5f8c9832d4df256414f2a982404830", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x50396ff09d849c75a434677d60039de01027fcd43cc7a1dc6c46ab61665d9e59", + "transactionIndex": "0xb", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xc", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x50396ff09d849c75a434677d60039de01027fcd43cc7a1dc6c46ab61665d9e59", + "transactionIndex": "0xb", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x823a47d0a1f4c5781ead9f0d5b361557a45355bd", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x05b09a2d6998d6527c429afd43de492fa9bab1448186783f43b04b89d271aa40", + "transactionIndex": "0xc", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xd", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x05b09a2d6998d6527c429afd43de492fa9bab1448186783f43b04b89d271aa40", + "transactionIndex": "0xc", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xb495b026cbf87664d68f279e55524aa61e6e9d5e", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x44baca09cd6c6a6c0bed65242a15d0a2e0146f478465a213cf6210c06ef2184c", + "transactionIndex": "0xd", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xe", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x44baca09cd6c6a6c0bed65242a15d0a2e0146f478465a213cf6210c06ef2184c", + "transactionIndex": "0xd", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xd5bb37763625bc16f2ad0791d87e2726004241e4", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xb414b62bcd617006c46dc139c3763cb90b90800836135f250a1ebbad64d407bf", + "transactionIndex": "0xe", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xf", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xb414b62bcd617006c46dc139c3763cb90b90800836135f250a1ebbad64d407bf", + "transactionIndex": "0xe", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xdb2e141595d8edf6b1ce40b10d57ca5b83855ec5", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x8e4ebb2e09e4d268fd358c1fcc7de279b29444cadc50210cd35cb5ec3c56e679", + "transactionIndex": "0xf", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x10", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x8e4ebb2e09e4d268fd358c1fcc7de279b29444cadc50210cd35cb5ec3c56e679", + "transactionIndex": "0xf", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x65c90c2d3e99d8366f90db7f4d25f23a0a569d49", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x339881a0cf559376043eb49a64107ccafdbcae1a4fc749efcb8dffe53f3819a6", + "transactionIndex": "0x10", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x11", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x339881a0cf559376043eb49a64107ccafdbcae1a4fc749efcb8dffe53f3819a6", + "transactionIndex": "0x10", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xbd46f94ca626a3ac72e60ca7efde379e42603b98", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x0a4f31b8e552a49f53246b7d3d3fb2764b5a23b0de64d20b88bd4a3b19f8eef3", + "transactionIndex": "0x11", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x12", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x0a4f31b8e552a49f53246b7d3d3fb2764b5a23b0de64d20b88bd4a3b19f8eef3", + "transactionIndex": "0x11", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xb570b13fa9ca093347448dc600ed0d09333ac9fa", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xea8c59874c9406b38f1f51c34cef21412b58ea9c651c704014b26485449cae8f", + "transactionIndex": "0x12", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x13", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xea8c59874c9406b38f1f51c34cef21412b58ea9c651c704014b26485449cae8f", + "transactionIndex": "0x12", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x2d74d0125982bdc3a9f54a10216d82509379e821", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x60b53e2e5ad59afa76c8bf769d47304d43251b4501da59aeaa98dc1111ab1363", + "transactionIndex": "0x13", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x14", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x60b53e2e5ad59afa76c8bf769d47304d43251b4501da59aeaa98dc1111ab1363", + "transactionIndex": "0x13", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x72fb467ef6da285b6b0d8f7a25abd6049385d5fd", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x033a023354822b8b9b243ede863f39b040c4806d0c600dedda981c97f39872e8", + "transactionIndex": "0x14", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x15", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x033a023354822b8b9b243ede863f39b040c4806d0c600dedda981c97f39872e8", + "transactionIndex": "0x14", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xd22fdac1459760f698618d927bbe22249e2b29b9", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xe7a502b1c952d193507b2a40be21d4c5ada23ebb1c9a1a8907163121b172132b", + "transactionIndex": "0x15", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x16", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xe7a502b1c952d193507b2a40be21d4c5ada23ebb1c9a1a8907163121b172132b", + "transactionIndex": "0x15", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x9682520376f26a733a75588c0bdede7645bdfc4a", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x65a83fcc8adb64879020911454fd3e3b2a182c1d947c27f1cd983bad21080b88", + "transactionIndex": "0x16", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x17", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x65a83fcc8adb64879020911454fd3e3b2a182c1d947c27f1cd983bad21080b88", + "transactionIndex": "0x16", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xe494fe5a38b7212ab999152d1d45adab8d84a8a7", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x172a0890f194b0d7fdd5fd1d08b69cd00b4b103a6c4aa0a29ebcc9c8bbe4ef89", + "transactionIndex": "0x17", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x18", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x172a0890f194b0d7fdd5fd1d08b69cd00b4b103a6c4aa0a29ebcc9c8bbe4ef89", + "transactionIndex": "0x17", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xb55f4ca1a5741a91ff4ea4e15e9324eb973f4ccd", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xbf2e45b0ebd37d65f285aa28bc9c340fb3ee6a0051f49a767caebf7a328b8b2b", + "transactionIndex": "0x18", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x19", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xbf2e45b0ebd37d65f285aa28bc9c340fb3ee6a0051f49a767caebf7a328b8b2b", + "transactionIndex": "0x18", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x92d32364313c376dcae272e113fd04cea194d2c8", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x78d2b81c0b1d616b939f28cb40fc126a3e37c0cd477e9d2bd79d2eb06a94bbc5", + "transactionIndex": "0x19", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x1a", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x78d2b81c0b1d616b939f28cb40fc126a3e37c0cd477e9d2bd79d2eb06a94bbc5", + "transactionIndex": "0x19", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x8f2fb5da850042b7da5097061f098493f8ec6dd8", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x3155217253d804c7efbd3eb041e768a4d7de7e8318f531d7944537cd2d2dbab4", + "transactionIndex": "0x1a", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x1b", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x3155217253d804c7efbd3eb041e768a4d7de7e8318f531d7944537cd2d2dbab4", + "transactionIndex": "0x1a", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x249f443d5c8400d7bc638a199d1f458b47a41a47", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xbaae15665e50132bfbcdc3e3bead67fcd46486dc289471a04f7f3b9d39f6c46b", + "transactionIndex": "0x1b", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x1c", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xbaae15665e50132bfbcdc3e3bead67fcd46486dc289471a04f7f3b9d39f6c46b", + "transactionIndex": "0x1b", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xe865a5b2bf699a4b498de8a8c55da14bb0d94b21", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x6111c0b0afe8e2dd6d8fc4efdf86b073575c2dfbc0a4f8c67be706e5467c54cf", + "transactionIndex": "0x1c", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x1d", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x6111c0b0afe8e2dd6d8fc4efdf86b073575c2dfbc0a4f8c67be706e5467c54cf", + "transactionIndex": "0x1c", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xb8ad6e0a7bffb5ea0b24c095e16bb4a2c936203c", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x2255f6389e5151e2aef9abc02bca1ee1289618c56ed91648bcf9b53ca0d455ea", + "transactionIndex": "0x1d", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x1e", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x2255f6389e5151e2aef9abc02bca1ee1289618c56ed91648bcf9b53ca0d455ea", + "transactionIndex": "0x1d", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xe79ef2d92a8e4d758d78dfcc8e61b2fa377ee78d", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x90d3f47db8c7a31248137a682082cd64b717d7fe49a9c476ba09457418caf6aa", + "transactionIndex": "0x1e", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x1f", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x90d3f47db8c7a31248137a682082cd64b717d7fe49a9c476ba09457418caf6aa", + "transactionIndex": "0x1e", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x360b9e5870fc91e375f902fc134f91739f4a99c7", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x3213123c77f2b93e5e79b539e1e6e8adf55164de46c36fcf112a601df595137d", + "transactionIndex": "0x1f", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x20", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x3213123c77f2b93e5e79b539e1e6e8adf55164de46c36fcf112a601df595137d", + "transactionIndex": "0x1f", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xdccd99da1c942a36c5dcaf26d19b98c815dfcb73", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xbb846c639667463b513ac9f6be1a7a352cdc17cfec1b8c081aff79818bbabc59", + "transactionIndex": "0x20", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x21", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xbb846c639667463b513ac9f6be1a7a352cdc17cfec1b8c081aff79818bbabc59", + "transactionIndex": "0x20", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x9fce52c5c451599235c17bc37e99f846d25ee6ec", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xd7a5a7a05ebeff16d5d778fda03069fc061cc26a9774a1209c391d0f26df84a9", + "transactionIndex": "0x21", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x22", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xd7a5a7a05ebeff16d5d778fda03069fc061cc26a9774a1209c391d0f26df84a9", + "transactionIndex": "0x21", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x497c44f4a22099109ad7d194aad4fbe78dceb788", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xa5f38725ba3920f2a454c7dc38efe5b99fbe4a2616898c038da3e1835f41a6f3", + "transactionIndex": "0x22", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x23", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xa5f38725ba3920f2a454c7dc38efe5b99fbe4a2616898c038da3e1835f41a6f3", + "transactionIndex": "0x22", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x555d4cd195bcb7d4196f2005db46a4b71c36c5a4", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xedcb005a3831f20bec0588704629b532b76568cf99e8d8520de1a87e573dd26d", + "transactionIndex": "0x23", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x24", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xedcb005a3831f20bec0588704629b532b76568cf99e8d8520de1a87e573dd26d", + "transactionIndex": "0x23", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xc1c9152c47ddb5002ed2501df812061ae6f75398", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x0869fdf59216e1bf7495ca9c52abf29239b39920875e7a569bdd842d30467923", + "transactionIndex": "0x24", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x25", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x0869fdf59216e1bf7495ca9c52abf29239b39920875e7a569bdd842d30467923", + "transactionIndex": "0x24", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x75ea95b0e9a56417ce1434aac37b0afcba0c5221", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x172aa2b80616a3d9d7f3ec3a73f5fdab1a6d0f6b792882e2f7d11645942f1928", + "transactionIndex": "0x25", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x26", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x172aa2b80616a3d9d7f3ec3a73f5fdab1a6d0f6b792882e2f7d11645942f1928", + "transactionIndex": "0x25", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x1cad85be8d097ed7a9b74ef5fbc9c75f2e2aa3bb", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x602d1c3753821fafb1f20690f0512cb2604203fc4791ae2eb3c0a016aa24cea5", + "transactionIndex": "0x26", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x27", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x602d1c3753821fafb1f20690f0512cb2604203fc4791ae2eb3c0a016aa24cea5", + "transactionIndex": "0x26", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x63443ffdb5c139c3bbab97d3b06ee0674d75ab7f", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x683f9ad528ba07bec108dd11a0aecc4a490028ec4dc8ec4c1484965b695b8281", + "transactionIndex": "0x27", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x28", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x683f9ad528ba07bec108dd11a0aecc4a490028ec4dc8ec4c1484965b695b8281", + "transactionIndex": "0x27", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x2a591f3d64f3ce6b1d2afeead839ad76aab9feb2", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xcd7c2efd61bb99cd1aa085c3257769fa7be5cd9aa4b9220ee41d96f3a0666918", + "transactionIndex": "0x28", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x29", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xcd7c2efd61bb99cd1aa085c3257769fa7be5cd9aa4b9220ee41d96f3a0666918", + "transactionIndex": "0x28", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x621996eb1d03a6e9614ddf150f6123c5602c8418", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x872b32019e4a6f3813e594784acebdf88c3fcc034a27e3014f1ab80f51377c7b", + "transactionIndex": "0x29", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x2a", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x872b32019e4a6f3813e594784acebdf88c3fcc034a27e3014f1ab80f51377c7b", + "transactionIndex": "0x29", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xec4a5fbd2e46e97be98c212e668ef1d08d695440", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xc6508bc15b229feb300bc213ddffd5b6b345503051ffa4d5c7801ab32307efa5", + "transactionIndex": "0x2a", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x2b", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xc6508bc15b229feb300bc213ddffd5b6b345503051ffa4d5c7801ab32307efa5", + "transactionIndex": "0x2a", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xd64c15787bb52bbfe0d195df0d954725469a318e", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x103097572fa9d1742d35bc615e0b604ee9c48e2a666733bb506dce9cd1a190f9", + "transactionIndex": "0x2b", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x2c", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x103097572fa9d1742d35bc615e0b604ee9c48e2a666733bb506dce9cd1a190f9", + "transactionIndex": "0x2b", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x7e1922ff757b8ec55ab4947afe7ec09aa1f5c7d2", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x2a5ef0159f7ed9967550fad5cca897450bbc1eed03bb603977476c3ab6639c9e", + "transactionIndex": "0x2c", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x2d", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x2a5ef0159f7ed9967550fad5cca897450bbc1eed03bb603977476c3ab6639c9e", + "transactionIndex": "0x2c", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x361faefbcd1c1b7f2d18723d178633202ccc5858", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xa00222c090e37363fcdf117b0a78bd95b35ed4be8d970b180f12f7be3b080bd0", + "transactionIndex": "0x2d", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x2e", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xa00222c090e37363fcdf117b0a78bd95b35ed4be8d970b180f12f7be3b080bd0", + "transactionIndex": "0x2d", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xa72ce94a09db26dce57a4852409abc2fff07a962", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x364a660053c7e0ed3f23903b08404a863edf6f4dc2f172ecc28727d2d3336a80", + "transactionIndex": "0x2e", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x2f", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x364a660053c7e0ed3f23903b08404a863edf6f4dc2f172ecc28727d2d3336a80", + "transactionIndex": "0x2e", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xeb0f1565b5d3bbf4489deb67972b814ee84c6cb7", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x608d81b9f693467f26c61d7f6fa5c9b064e2338a4e64c858ba750e3987be4578", + "transactionIndex": "0x2f", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x30", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x608d81b9f693467f26c61d7f6fa5c9b064e2338a4e64c858ba750e3987be4578", + "transactionIndex": "0x2f", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x349563f9b0e3167f816cc39b272e3f888e23d3f3", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x4a9f399fec88ac60a8df21c90df8ffce8fc6c965ad36e1d058587d7208999c8b", + "transactionIndex": "0x30", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x31", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x4a9f399fec88ac60a8df21c90df8ffce8fc6c965ad36e1d058587d7208999c8b", + "transactionIndex": "0x30", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x4398241671b3dd484fe3213a4fb7511f30e7d7c0", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x99b8ba45319a675a4aab6a2bc6020be9c692ad5e1bd77ef3e49652893a22fcbf", + "transactionIndex": "0x31", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x32", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x99b8ba45319a675a4aab6a2bc6020be9c692ad5e1bd77ef3e49652893a22fcbf", + "transactionIndex": "0x31", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xa70b87c39a1237ba53953a1da04b23d4db28eace", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x0a94e37984a44adfb768ea1b96058324acc5de6a4c67646d964d8a526db3b8fe", + "transactionIndex": "0x32", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x33", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x0a94e37984a44adfb768ea1b96058324acc5de6a4c67646d964d8a526db3b8fe", + "transactionIndex": "0x32", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xc428369353c7de2782370ee634be1516d836ddad", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xaa7b8eb0e5f70bf6d29f247fa3e8dc52b83a97e9e9020f6771d13eddce299a85", + "transactionIndex": "0x33", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x34", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xaa7b8eb0e5f70bf6d29f247fa3e8dc52b83a97e9e9020f6771d13eddce299a85", + "transactionIndex": "0x33", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x065551f0dcac6f00cae11192d462db709be3758c", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x8e462055cff2af77917a627c137e81ddb7cbfc319f4edd10666866c02c11ac03", + "transactionIndex": "0x34", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x35", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x8e462055cff2af77917a627c137e81ddb7cbfc319f4edd10666866c02c11ac03", + "transactionIndex": "0x34", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x8e455bb521212bdcf8cb326e32dc1183cb3fd887", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x8f58e5b540c0bb87c75b33f3acba9e387607f203e4f738067f19706898348dec", + "transactionIndex": "0x35", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x36", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x8f58e5b540c0bb87c75b33f3acba9e387607f203e4f738067f19706898348dec", + "transactionIndex": "0x35", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x226ddc05e1adc6872285d95d4277a498fdce375b", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x6dd01d15914a27844827b44d906f40be8e3c1e8b82cb22c5a7e0497c2f507c3a", + "transactionIndex": "0x36", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x37", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x6dd01d15914a27844827b44d906f40be8e3c1e8b82cb22c5a7e0497c2f507c3a", + "transactionIndex": "0x36", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x9200e4fe8959f0268eb9daf06aba4756e595b99f", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xbe255d65867c650cbb26f8e46d30523fa5134bc133ec6a142dbbcbc339fd2bf7", + "transactionIndex": "0x37", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x38", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xbe255d65867c650cbb26f8e46d30523fa5134bc133ec6a142dbbcbc339fd2bf7", + "transactionIndex": "0x37", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x450d714e65f4de007937c56fb1c4686efd4fb4ec", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x3b3421025f77d9574a09fcbe58bf8d949b37b4577ab9efb4628befa730838113", + "transactionIndex": "0x38", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x39", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x3b3421025f77d9574a09fcbe58bf8d949b37b4577ab9efb4628befa730838113", + "transactionIndex": "0x38", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x76df51309c6367678635a3ea76d1482666f55a05", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xa5d5f542cdc354a46a7c959dac4740b5e17977124a06def6f8330b6ce87fac49", + "transactionIndex": "0x39", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x3a", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xa5d5f542cdc354a46a7c959dac4740b5e17977124a06def6f8330b6ce87fac49", + "transactionIndex": "0x39", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x6e5bbbf0d9d1851599a21676c99b1a8cc012753d", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x675cd07a4e46c4f8155f2d0a60ef3e8ad306dda77fcc6f54582552c9588d7058", + "transactionIndex": "0x3a", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x3b", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x675cd07a4e46c4f8155f2d0a60ef3e8ad306dda77fcc6f54582552c9588d7058", + "transactionIndex": "0x3a", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x3056a8bff9a17b12d08f1837d0b44cf1e2018fbe", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x0a2ef4fd7c9757b388280dcfbbdbd8ab3c3a7a1008566acf90477759ff4da394", + "transactionIndex": "0x3b", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x3c", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x0a2ef4fd7c9757b388280dcfbbdbd8ab3c3a7a1008566acf90477759ff4da394", + "transactionIndex": "0x3b", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xdef4bd67f9e2627ca495b5f71794fab1bab40619", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x0a578b151790869e993326d7525a193a95bd789c0625b8c5424eca30e31ef2aa", + "transactionIndex": "0x3c", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x3d", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x0a578b151790869e993326d7525a193a95bd789c0625b8c5424eca30e31ef2aa", + "transactionIndex": "0x3c", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xd97d7434af4ad873585c71df55fce07996e27a82", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x08339e2b601a19a7ba0d25bd4f9bb3b2a6252b466c11eb07f231e1b129ff523a", + "transactionIndex": "0x3d", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x3e", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x08339e2b601a19a7ba0d25bd4f9bb3b2a6252b466c11eb07f231e1b129ff523a", + "transactionIndex": "0x3d", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xb9a3a97f6a02a86483bf02cb33f8b33d2d117708", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xcbad5de1e81040f5338a7c3168df4734b9da0f7fa1ba7448a9fb56433a5022bb", + "transactionIndex": "0x3e", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x3f", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xcbad5de1e81040f5338a7c3168df4734b9da0f7fa1ba7448a9fb56433a5022bb", + "transactionIndex": "0x3e", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xe7a5556c87fe764dcba9bcd31e1f4aa27b638117", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x6ddb38fe6c07b82501ac73a12e811de35348770fb88612a7c1d27beb0b0ccdda", + "transactionIndex": "0x3f", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x40", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x6ddb38fe6c07b82501ac73a12e811de35348770fb88612a7c1d27beb0b0ccdda", + "transactionIndex": "0x3f", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x67a24b5821724419bbc0710cbbb3122d84703318", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x87df068c2baa790b730e63469fb48cd2e1ee868d032a4098beacba26cd29cd3a", + "transactionIndex": "0x40", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x41", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x87df068c2baa790b730e63469fb48cd2e1ee868d032a4098beacba26cd29cd3a", + "transactionIndex": "0x40", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x2a4559e84ca53e00b05d9d53086005432926a992", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x6095d131f3628052e2488a58335002093546dee2d419a124c7f435dfc2887936", + "transactionIndex": "0x41", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x42", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x6095d131f3628052e2488a58335002093546dee2d419a124c7f435dfc2887936", + "transactionIndex": "0x41", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xb38aba47a5563fa4aedc2a649ef819b9fb160b6a", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x4557c446b1e91472cfe10b8d75c80980f1f8e6f297b58351e13268ef988c31a7", + "transactionIndex": "0x42", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x43", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x4557c446b1e91472cfe10b8d75c80980f1f8e6f297b58351e13268ef988c31a7", + "transactionIndex": "0x42", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xde1470c0f478ca7efd151be5a13c2addcfff328c", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x97b68d36513aafafb003c2f02ad53e53551ff781233000b26e479a27b421ea83", + "transactionIndex": "0x43", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x44", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x97b68d36513aafafb003c2f02ad53e53551ff781233000b26e479a27b421ea83", + "transactionIndex": "0x43", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x00021c85d8cf9ef6c73e8f95740f8e874e4c9d1f", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xda925f8608936321d48efb9a6c75899493c2b77ce9566efdb2165ece26a6a536", + "transactionIndex": "0x44", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x45", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xda925f8608936321d48efb9a6c75899493c2b77ce9566efdb2165ece26a6a536", + "transactionIndex": "0x44", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x70916660766043c23443479658008eeedad8cb94", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xa6ecf2646a0e45fd085534946b6d2c96daa24f653c4e970d81f9650908f4e4e3", + "transactionIndex": "0x45", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x46", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xa6ecf2646a0e45fd085534946b6d2c96daa24f653c4e970d81f9650908f4e4e3", + "transactionIndex": "0x45", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x35898873c021f9f4fa01a76c7fa595159f5523e7", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x68dffd79ddf46bb501a9558be092c19053791571282e12a44a1f7c47ffc2e485", + "transactionIndex": "0x46", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x47", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x68dffd79ddf46bb501a9558be092c19053791571282e12a44a1f7c47ffc2e485", + "transactionIndex": "0x46", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xc7d49d0a2cf198deebd6ce581af465944ec8b2bb", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xcd222191f4663cdc6697230797ded6008304fa667487038c16e279fb7516abaa", + "transactionIndex": "0x47", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x48", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xcd222191f4663cdc6697230797ded6008304fa667487038c16e279fb7516abaa", + "transactionIndex": "0x47", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x74d3ac0efc4c22ea05150d7501c95c610b130c4b", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x9e11497f9954168647ead49d213765f8dc60393a82e8b09c82440c1bbdbae932", + "transactionIndex": "0x48", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x49", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x9e11497f9954168647ead49d213765f8dc60393a82e8b09c82440c1bbdbae932", + "transactionIndex": "0x48", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xaf3db8ad8154820303adc6be0d9b10ef8e33024f", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xda9411d1c3e99bc572d2f4cd4c4ad2e972b52f90aa759990d983aae09bcb34d9", + "transactionIndex": "0x49", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x4a", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xda9411d1c3e99bc572d2f4cd4c4ad2e972b52f90aa759990d983aae09bcb34d9", + "transactionIndex": "0x49", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x664c4a7b15d91b07c468162f535909114c038b91", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xda4ee74a5d82276bfb908d5c40a3fba498bbf41cf140d64fd774b8a9cfb4be1f", + "transactionIndex": "0x4a", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x4b", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xda4ee74a5d82276bfb908d5c40a3fba498bbf41cf140d64fd774b8a9cfb4be1f", + "transactionIndex": "0x4a", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xe8bc0e78114ad8dc4290eaed78bcb9e3f5b91e32", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x0f4376cdd88a8c85724ad71be5c608053a06df8e637135c4640f0de43d3efb74", + "transactionIndex": "0x4b", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x4c", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x0f4376cdd88a8c85724ad71be5c608053a06df8e637135c4640f0de43d3efb74", + "transactionIndex": "0x4b", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x5454edee66858dfcc14871cc8b26f57ef528bedc", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x19b0d0edf25aaa5f2934d89645c9b3f3cd0c9cb2a8259b7739fdc4274da5eb49", + "transactionIndex": "0x4c", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x4d", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x19b0d0edf25aaa5f2934d89645c9b3f3cd0c9cb2a8259b7739fdc4274da5eb49", + "transactionIndex": "0x4c", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x24c0832d9df8189166d8e4e2cedc40ad69077b17", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xa544b34b490e3f5f67c203e8fce8603c0fa6f929be32ebe3df71ea24df88fa77", + "transactionIndex": "0x4d", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x4e", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xa544b34b490e3f5f67c203e8fce8603c0fa6f929be32ebe3df71ea24df88fa77", + "transactionIndex": "0x4d", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x05f4c54ffc16b943b98713248c751ce98f924cbd", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xf17e1c842948d4b3118a5c350813fae5e7bf15a2a0b2c672fdb8d5cab74dc064", + "transactionIndex": "0x4e", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x4f", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xf17e1c842948d4b3118a5c350813fae5e7bf15a2a0b2c672fdb8d5cab74dc064", + "transactionIndex": "0x4e", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x3197b8ed3bcd7eea2c695951d9d57e833457072b", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x4c19583e753bb6a32ada5ea54713f8ae3d985dce2a687b35d99bd71886155d9c", + "transactionIndex": "0x4f", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x50", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x4c19583e753bb6a32ada5ea54713f8ae3d985dce2a687b35d99bd71886155d9c", + "transactionIndex": "0x4f", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x44d21022e104d605235c863cf86c96045fad9505", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xa6cb3f2543ca2efc73b65bb9ca988d9dce3615bfb551a4f063e69fef68cdae3e", + "transactionIndex": "0x50", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x51", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xa6cb3f2543ca2efc73b65bb9ca988d9dce3615bfb551a4f063e69fef68cdae3e", + "transactionIndex": "0x50", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x03d9e17ae3ff2c6712e44e25b09ac5ee91f6c9ff", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x274e200c19b6543662ce8df7d68ed4281b8a9849c28181dc976eb8e3b7e79dad", + "transactionIndex": "0x51", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x52", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x274e200c19b6543662ce8df7d68ed4281b8a9849c28181dc976eb8e3b7e79dad", + "transactionIndex": "0x51", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x944dd93e0f6d213b0dce27590bd5a9a4351fafd6", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xd524dde856ac0fe634ce004e9503827f68c0a7872b410ec58311875b2ed75212", + "transactionIndex": "0x52", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x53", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xd524dde856ac0fe634ce004e9503827f68c0a7872b410ec58311875b2ed75212", + "transactionIndex": "0x52", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x0afe5a6890cf357022dfdaac7e2d6e248755cdfd", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x303ef37ef95cfd14d32a9ce3927f1e6435497b0463ba7db9894699e766a94222", + "transactionIndex": "0x53", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x54", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x303ef37ef95cfd14d32a9ce3927f1e6435497b0463ba7db9894699e766a94222", + "transactionIndex": "0x53", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xbb0830e2d006d557541935362a621d002b0d6b00", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x8f49110cf29ae62cb436020fc16a35fa8d4625451d4b6bc76a147c098e184f79", + "transactionIndex": "0x54", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x55", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x8f49110cf29ae62cb436020fc16a35fa8d4625451d4b6bc76a147c098e184f79", + "transactionIndex": "0x54", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x4e111142fbf2edacc4ab122feb54b031dc3d95d9", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x26d978b4173ade00b4e0048756aef7770e10f3a9478fc463faed31470cb63db1", + "transactionIndex": "0x55", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x56", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x26d978b4173ade00b4e0048756aef7770e10f3a9478fc463faed31470cb63db1", + "transactionIndex": "0x55", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x39ffd4aa42b02f1b55ed822267da57219f11fc6a", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x21efb0b1bc14d5357bc7d82b7bb6a6996591103e3d63a538877c22e2fda615e1", + "transactionIndex": "0x56", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x57", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x21efb0b1bc14d5357bc7d82b7bb6a6996591103e3d63a538877c22e2fda615e1", + "transactionIndex": "0x56", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xf48aa29de23c45c54a96c2a7b8ce5218abf46874", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x92dfcd32c188f48e17d6b8a3c8757f13f9e994c653a7b714ebfe052164c68a99", + "transactionIndex": "0x57", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x58", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x92dfcd32c188f48e17d6b8a3c8757f13f9e994c653a7b714ebfe052164c68a99", + "transactionIndex": "0x57", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x58f25975086b8d23c028ebb651be064da0360367", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x1c1ec8ebafeacdd7e364c79117c1a3cc192d7eab902f429c87769e698bc2c8c8", + "transactionIndex": "0x58", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x59", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x1c1ec8ebafeacdd7e364c79117c1a3cc192d7eab902f429c87769e698bc2c8c8", + "transactionIndex": "0x58", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x1bc85db77617515381cbbb28fdd2b1a10264de11", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x809c110284cf78c9e502e01f7c8d3f5de1edfa40e25736ee5329c71483f4a574", + "transactionIndex": "0x59", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x5a", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x809c110284cf78c9e502e01f7c8d3f5de1edfa40e25736ee5329c71483f4a574", + "transactionIndex": "0x59", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x047ffe1fc7f6d0b7168c4ccc312221089629f470", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xd9c591902ca03c933b008a1ff061ba52b68c83253b6909bc996275bc6f426a87", + "transactionIndex": "0x5a", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x5b", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xd9c591902ca03c933b008a1ff061ba52b68c83253b6909bc996275bc6f426a87", + "transactionIndex": "0x5a", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x5f4ff7948061a605e9d64b4d5fde927b70bc3fa5", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x9ac467bb68e544edef4ae639a3be2be30b2682ae5bd39bffb04410b69833feb2", + "transactionIndex": "0x5b", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x5c", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x9ac467bb68e544edef4ae639a3be2be30b2682ae5bd39bffb04410b69833feb2", + "transactionIndex": "0x5b", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x7525f63e5f739ef952fbea50c1dc97ef5d5bd984", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x208727659981f24275301b65eb9e9f8026732044901ddf05077e7c52117c593b", + "transactionIndex": "0x5c", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x5d", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x208727659981f24275301b65eb9e9f8026732044901ddf05077e7c52117c593b", + "transactionIndex": "0x5c", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x64e2e07bb17d978108824219741b9cc9e52b4443", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x54b00914c0d12299176947a4a55884a63751ae24024dde55ae35801e387acbe5", + "transactionIndex": "0x5d", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x5e", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x54b00914c0d12299176947a4a55884a63751ae24024dde55ae35801e387acbe5", + "transactionIndex": "0x5d", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x49d3fa92eec838f644e8cacf2c93533d29b6c713", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x28670f4be633d50c1344c420253fe31c266da2e03091e361112f0a3720a73848", + "transactionIndex": "0x5e", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x5f", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x28670f4be633d50c1344c420253fe31c266da2e03091e361112f0a3720a73848", + "transactionIndex": "0x5e", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xa6d916b338291ae14402d67af2b9d9e19bf72fd5", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xc53266b57969dc7091e8614b0b6a8ef2ef83fac48c12b4e4c93ccf0d11607664", + "transactionIndex": "0x5f", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x60", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xc53266b57969dc7091e8614b0b6a8ef2ef83fac48c12b4e4c93ccf0d11607664", + "transactionIndex": "0x5f", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x695ce237df312f9a6c6a5386b91b37ae249d07dd", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x893b9fa9101ffc0c65c699d6b75cb47e8f731b9bd00fbfb5806fc572a35d1973", + "transactionIndex": "0x60", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x61", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x893b9fa9101ffc0c65c699d6b75cb47e8f731b9bd00fbfb5806fc572a35d1973", + "transactionIndex": "0x60", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xd2fefdd118aa2bea5991dc079fd341d3e7a92caf", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x584b75771bc16525ee5ba36e7723c594ed31b51aa253107a09cb99a862229a88", + "transactionIndex": "0x61", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x62", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x584b75771bc16525ee5ba36e7723c594ed31b51aa253107a09cb99a862229a88", + "transactionIndex": "0x61", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x609cc32e7513135349fbe9ebd78ea8cdcfd9f819", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xa439066c1656804924772744d1938035e292eae74d9a433557a6d5eb237ae4c1", + "transactionIndex": "0x62", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x63", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xa439066c1656804924772744d1938035e292eae74d9a433557a6d5eb237ae4c1", + "transactionIndex": "0x62", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x5fca7280f7b3f743bc3248261d05f7b57651ec3c", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x9e9d3ff75149ad2bc4024dd87e529ca83728d18c7b0ed062ef9a313bccde70b4", + "transactionIndex": "0x63", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x64", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x9e9d3ff75149ad2bc4024dd87e529ca83728d18c7b0ed062ef9a313bccde70b4", + "transactionIndex": "0x63", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xa45457cc0153092a7e717e8e6d41221b827c28ae", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x0e81b4700e53825de63ee4b88be6397cadcaafab463ac33b794c4deae3f1fae4", + "transactionIndex": "0x64", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x65", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x0e81b4700e53825de63ee4b88be6397cadcaafab463ac33b794c4deae3f1fae4", + "transactionIndex": "0x64", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x1eca7cd6df02a177e10bc9769a544b49f13aa875", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xa66dc502f65a7efbae7aea247ed3efdda71521fe0c56c63b70279dd98ffe8edc", + "transactionIndex": "0x65", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x66", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xa66dc502f65a7efbae7aea247ed3efdda71521fe0c56c63b70279dd98ffe8edc", + "transactionIndex": "0x65", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xe2bc9a03d5ae35e130c8bf99ea50c022de375db7", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x6ede15fc030dc4ec9b26f46c4ec87afcd0f340befd123594ae64dec9a680700c", + "transactionIndex": "0x66", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x67", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x6ede15fc030dc4ec9b26f46c4ec87afcd0f340befd123594ae64dec9a680700c", + "transactionIndex": "0x66", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x4b7076c988da8a0ef87f1af137f7abc39557b746", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x62b60d6d33472aab6db1f70c537612af090f120d37874b7af3d4f97f572100f4", + "transactionIndex": "0x67", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x68", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x62b60d6d33472aab6db1f70c537612af090f120d37874b7af3d4f97f572100f4", + "transactionIndex": "0x67", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x7c0f72d80d9d8b822e2fb217e56be732a12fc8c9", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x8882b51f5aff5ffc9201768f22552054ca7aa726f2b9c25c33dd529718caaf80", + "transactionIndex": "0x68", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x69", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x8882b51f5aff5ffc9201768f22552054ca7aa726f2b9c25c33dd529718caaf80", + "transactionIndex": "0x68", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xc67c2dec79da735d6587d8db3c23271d557196ab", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x12b1758b1fe376c7ef53fc55dfdf8d6076a2aa626c2290092740399b0ce911de", + "transactionIndex": "0x69", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x6a", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x12b1758b1fe376c7ef53fc55dfdf8d6076a2aa626c2290092740399b0ce911de", + "transactionIndex": "0x69", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xf11e012f56ac7341be939cb668e63a37e79db84e", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x4f9d2b43c78fe82b711826393d5651343497578a2cd9894c6adc22bdda0d62f3", + "transactionIndex": "0x6a", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x6b", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x4f9d2b43c78fe82b711826393d5651343497578a2cd9894c6adc22bdda0d62f3", + "transactionIndex": "0x6a", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x01df5f4986976e8cf1592cca7b792664510b6086", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xae481d2ee35df5f35e6fc2f069dd4e2ff7b34a47abbb1e3aa08f298a8a6f46ff", + "transactionIndex": "0x6b", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x6c", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xae481d2ee35df5f35e6fc2f069dd4e2ff7b34a47abbb1e3aa08f298a8a6f46ff", + "transactionIndex": "0x6b", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x070eed0a2c77650dd41599920b5a0089dc60bfe6", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x7fc55de1042d2a9f7fcb71c73bcf089745d7119aa3c80324afac1b88ba06e873", + "transactionIndex": "0x6c", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x6d", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x7fc55de1042d2a9f7fcb71c73bcf089745d7119aa3c80324afac1b88ba06e873", + "transactionIndex": "0x6c", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xa43a99c9752166ec30c8369ce1e84de43be1e617", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xcdeac9fee3cd5d275103d0ff703aafd82f5d41c39a2a478bcd5b3371b694de61", + "transactionIndex": "0x6d", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x6e", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xcdeac9fee3cd5d275103d0ff703aafd82f5d41c39a2a478bcd5b3371b694de61", + "transactionIndex": "0x6d", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x7aa125338be075260e77c6a66a56c90a5dec4c58", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x8c8e9e5039b5a7cdfcc29644141cb9aa3327ba13ae27169e867c837bcb4ad70d", + "transactionIndex": "0x6e", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x6f", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x8c8e9e5039b5a7cdfcc29644141cb9aa3327ba13ae27169e867c837bcb4ad70d", + "transactionIndex": "0x6e", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x1d393817ab218ebade3e8ad591593ec3b132b1f6", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xd1a9ab277fc5fd0132ad6e95041642b562bd17139da535a7e91ff9d8033d2f22", + "transactionIndex": "0x6f", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x70", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xd1a9ab277fc5fd0132ad6e95041642b562bd17139da535a7e91ff9d8033d2f22", + "transactionIndex": "0x6f", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x241ff0d3096e2e0b477780f9f551918a06827c05", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x9c5e0b624ce5119082dfa0a1a5e25624af0a46c635f5efbca8610bcf0af6197c", + "transactionIndex": "0x70", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x71", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x9c5e0b624ce5119082dfa0a1a5e25624af0a46c635f5efbca8610bcf0af6197c", + "transactionIndex": "0x70", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x3dd28884ec3ea0904f0f6697c31b7d273a899480", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xc15b5e714cddcca7760a228f4ad1ba81fd23fec313a8f5b87ac5a930f210edbe", + "transactionIndex": "0x71", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x72", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xc15b5e714cddcca7760a228f4ad1ba81fd23fec313a8f5b87ac5a930f210edbe", + "transactionIndex": "0x71", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x13afe4210b6340723883be07618d3a4f019c2adc", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x93be147952abbc57f97b12417a9cea9b3a00e7a8052799ae9a5871027c19dae1", + "transactionIndex": "0x72", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x73", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x93be147952abbc57f97b12417a9cea9b3a00e7a8052799ae9a5871027c19dae1", + "transactionIndex": "0x72", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x0407b8f788fbd763280212be6f7a672351009487", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x6bd12222c28b39dafd5070ec1fd577157be3e2ae8ade13a8aa742ac88b909bd1", + "transactionIndex": "0x73", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x74", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x6bd12222c28b39dafd5070ec1fd577157be3e2ae8ade13a8aa742ac88b909bd1", + "transactionIndex": "0x73", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x2f86476faa31c3f5a3d5b9376282e1b02b4dfa00", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x7ce8627fcd2a509f3b17653690227be2bb4a76fe204fa0d452253713bb6fc5f8", + "transactionIndex": "0x74", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x75", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x7ce8627fcd2a509f3b17653690227be2bb4a76fe204fa0d452253713bb6fc5f8", + "transactionIndex": "0x74", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xf38f7402de55c5c7cf7a5a29244148b817d7bca3", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x6a6e49c71218e65f3b4294d433365b926e79bf214ffa122bd105129e4360c0db", + "transactionIndex": "0x75", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x76", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x6a6e49c71218e65f3b4294d433365b926e79bf214ffa122bd105129e4360c0db", + "transactionIndex": "0x75", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x051572edba4a8290bf45dd2d7ab80eb6cd56ccc6", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x8a99e3e8304ded37d80d8e77a62158e4adc8b3d59249c734fa90b174217a052b", + "transactionIndex": "0x76", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x77", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x8a99e3e8304ded37d80d8e77a62158e4adc8b3d59249c734fa90b174217a052b", + "transactionIndex": "0x76", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xc02aed857b01b4d60b378096221db3b60afadc37", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x8d089e13f59fbf262b34d7ebd95f6c5ebff00edddb2bf860afd8b28611a99e90", + "transactionIndex": "0x77", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x78", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x8d089e13f59fbf262b34d7ebd95f6c5ebff00edddb2bf860afd8b28611a99e90", + "transactionIndex": "0x77", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x19e945a26b15e4d6f96386a4f8596b6313311b7e", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xaa297ca336b04194c0d986081e1162fae232adabd802cfaf79f2a8934c2b50e2", + "transactionIndex": "0x78", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x79", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xaa297ca336b04194c0d986081e1162fae232adabd802cfaf79f2a8934c2b50e2", + "transactionIndex": "0x78", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x8eeeeafaca49e507bc9bba121dac97ec75774ff2", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x141cfd9601dfe6ab30d7d2d55cc164afdf75c6ac88c9bfcde65022c1256f2053", + "transactionIndex": "0x79", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x7a", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x141cfd9601dfe6ab30d7d2d55cc164afdf75c6ac88c9bfcde65022c1256f2053", + "transactionIndex": "0x79", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x5651290bdd3a952357066b324f9334b544100140", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xe99d87e122680ba1851c24a39ee98f16f2f9d23a054f0137061b41c6798a80ad", + "transactionIndex": "0x7a", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x7b", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xe99d87e122680ba1851c24a39ee98f16f2f9d23a054f0137061b41c6798a80ad", + "transactionIndex": "0x7a", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xfe5b2f3e7fb6fc3b8c65f2af4d3f4cabe024bce9", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xc2cb9d1d9d97c2fcd6ecf0bdcc3cc8959f1cb476558d61ce688ecaf081af3407", + "transactionIndex": "0x7b", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x7c", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xc2cb9d1d9d97c2fcd6ecf0bdcc3cc8959f1cb476558d61ce688ecaf081af3407", + "transactionIndex": "0x7b", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xb594c78a71763d543d10358b2dde579ff041319a", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x037cd08bb86fc532897771abcbf50f9d9232788314a2e88435c072ca4fc3bd16", + "transactionIndex": "0x7c", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x7d", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x037cd08bb86fc532897771abcbf50f9d9232788314a2e88435c072ca4fc3bd16", + "transactionIndex": "0x7c", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x619f838ea2a12cdb508e759c3e0697e021d52ceb", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xee50ea4343bd9f9e9baa521c1b08665f26e6d61a7bc3378ad1284bdd7e6a3885", + "transactionIndex": "0x7d", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x7e", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xee50ea4343bd9f9e9baa521c1b08665f26e6d61a7bc3378ad1284bdd7e6a3885", + "transactionIndex": "0x7d", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xe8e8194c0a8e5a32306c7a86052a4e8ca4b8729d", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x569b4ba6e3fcd5da7f70ae2f6a7b2c7997bd0bfa3d0d70ffde05b00106e93f82", + "transactionIndex": "0x7e", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x7f", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x569b4ba6e3fcd5da7f70ae2f6a7b2c7997bd0bfa3d0d70ffde05b00106e93f82", + "transactionIndex": "0x7e", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x7b03e5e7912b0ce65f8be7549e23cb08392e369c", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x947613f8a6d08633b1c00a8de67b0357610e445b99c3685d57f1ff4619caa32c", + "transactionIndex": "0x7f", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x80", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x947613f8a6d08633b1c00a8de67b0357610e445b99c3685d57f1ff4619caa32c", + "transactionIndex": "0x7f", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x346ada489c70c85ca665428389f1a971abbee960", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x77bf27bef384ad4e1919fc2add74f8cb3047186804125f52370a3d90046fb2b6", + "transactionIndex": "0x80", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x81", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x77bf27bef384ad4e1919fc2add74f8cb3047186804125f52370a3d90046fb2b6", + "transactionIndex": "0x80", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xa4657c02208797985adedcbd048efc82291dbdb2", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x578bead9ddcbddf37db5ebe811a3d1b18b9fa3cfd6c8d916f0a4e959b4fa81de", + "transactionIndex": "0x81", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x82", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x578bead9ddcbddf37db5ebe811a3d1b18b9fa3cfd6c8d916f0a4e959b4fa81de", + "transactionIndex": "0x81", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xbbd2d417a8b6f1b1d7a267cd1d7402b443f35cfe", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xcc6dda1b89f07db4c0881f1d947299a1fa4a6270c97447c932c9ab204f069539", + "transactionIndex": "0x82", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x83", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xcc6dda1b89f07db4c0881f1d947299a1fa4a6270c97447c932c9ab204f069539", + "transactionIndex": "0x82", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x08d53a08b1d46ecb45bc3a299af9abdde9035338", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xade1eac5b80d815cea54644fcdc545d20d94728a22f71addbbee5461d5e5db47", + "transactionIndex": "0x83", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x84", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xade1eac5b80d815cea54644fcdc545d20d94728a22f71addbbee5461d5e5db47", + "transactionIndex": "0x83", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x19a1e02fec5d52be689f59b22d9c0f1765bd7052", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xf7fd59153c455d3b878c7313417239dec57b80c176b035d8cdb70df5713ed5ea", + "transactionIndex": "0x84", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x85", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xf7fd59153c455d3b878c7313417239dec57b80c176b035d8cdb70df5713ed5ea", + "transactionIndex": "0x84", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x391f3d21d9062ebbdd958e436b26d4b40928658c", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x5f80f33fded6f1cc64969a851636c8aa660c73008636dcd4148fab003f6973f5", + "transactionIndex": "0x85", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x86", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x5f80f33fded6f1cc64969a851636c8aa660c73008636dcd4148fab003f6973f5", + "transactionIndex": "0x85", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x3cc8e30f8be48e57dbac01d8c7b05fb18ef1f7c8", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xe6cdce042c5615e08523a58099ad24e26bdd9ea722e2cabea706dde11f77a9ff", + "transactionIndex": "0x86", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x87", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xe6cdce042c5615e08523a58099ad24e26bdd9ea722e2cabea706dde11f77a9ff", + "transactionIndex": "0x86", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xfc5fea016be9ac2d23dfe18e16d3be79547e5466", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x7e812ae1e13a5c887c9e1582e326bc86374da53cfdb97d41f9c336a21f6247bd", + "transactionIndex": "0x87", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x88", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x7e812ae1e13a5c887c9e1582e326bc86374da53cfdb97d41f9c336a21f6247bd", + "transactionIndex": "0x87", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x1c908c36c4470c3f66860e7c5152cc17e480ff54", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x81a1fd4703153b89f4c1e8708263dd11ce2f28583562fa1fd0de67772ef42a5d", + "transactionIndex": "0x88", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x89", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x81a1fd4703153b89f4c1e8708263dd11ce2f28583562fa1fd0de67772ef42a5d", + "transactionIndex": "0x88", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x1e0103ba7665d15328b3886927d4f0a85f8b2299", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x1e3f3517daed1f5e89b3eabc76712cd941ab550877eb7cc38480ff6bd44c88ce", + "transactionIndex": "0x89", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x8a", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x1e3f3517daed1f5e89b3eabc76712cd941ab550877eb7cc38480ff6bd44c88ce", + "transactionIndex": "0x89", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x7b0704722600979fd7da53afb1618aab3b9ddeb4", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x6e1acfc7ed8d5bafd8739c967c1ca1cc253c66a8cedba886348fc6168b546a57", + "transactionIndex": "0x8a", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x8b", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x6e1acfc7ed8d5bafd8739c967c1ca1cc253c66a8cedba886348fc6168b546a57", + "transactionIndex": "0x8a", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xfc2f29a87a63e07a341d0bb9462e9a14af013a6c", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xfde4d440189df66603ea8341b27fc0e82852aabaa7ecd35406b8b1f909b6e5b3", + "transactionIndex": "0x8b", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x8c", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xfde4d440189df66603ea8341b27fc0e82852aabaa7ecd35406b8b1f909b6e5b3", + "transactionIndex": "0x8b", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x7af6aedf3382bb3de2dba61769d96444bf660494", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x44dd4f7b51798e82703da30ee8beb044e645adf00172c8ea63ef4cae6a007c13", + "transactionIndex": "0x8c", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x8d", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x44dd4f7b51798e82703da30ee8beb044e645adf00172c8ea63ef4cae6a007c13", + "transactionIndex": "0x8c", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x3396803b0cb3b5790911bb51b6c5193e9940793f", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xa94c20a32fc50e505ae175dd64bea347306f9814ca6285bdfb6015c481755f82", + "transactionIndex": "0x8d", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x8e", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xa94c20a32fc50e505ae175dd64bea347306f9814ca6285bdfb6015c481755f82", + "transactionIndex": "0x8d", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xcb67c6c9ea422e33feef44aa5564bdf89997f57b", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xaed4032e2923fd215dfdcc949ebf60d0a231ea462dd6ed6a107a9ec9f86fb205", + "transactionIndex": "0x8e", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x8f", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xaed4032e2923fd215dfdcc949ebf60d0a231ea462dd6ed6a107a9ec9f86fb205", + "transactionIndex": "0x8e", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xb2610a596e2e34cf25adda2f05d867b3dc96b47d", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x711fd22dab8e26a5ad53126aa51b6cd7527879b2080545849ee3fe493f0ba35e", + "transactionIndex": "0x8f", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x90", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x711fd22dab8e26a5ad53126aa51b6cd7527879b2080545849ee3fe493f0ba35e", + "transactionIndex": "0x8f", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xfa9a1f2ec3d92428fc6105a4e05832ae74170ac4", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x06257f3619b9af4b8e4e1102dcf0c1f70233721ebd6b920726b8f41e642cc4d5", + "transactionIndex": "0x90", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x91", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x06257f3619b9af4b8e4e1102dcf0c1f70233721ebd6b920726b8f41e642cc4d5", + "transactionIndex": "0x90", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xfce02e190f722e790be06b3a6ec43e2f606dba65", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xfa228aa3acd9a111ea3190f698f4497108e8a436c7cdeb52f98abc469b74c522", + "transactionIndex": "0x91", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x92", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xfa228aa3acd9a111ea3190f698f4497108e8a436c7cdeb52f98abc469b74c522", + "transactionIndex": "0x91", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x9a3787688fd210ec8f8d0224c6c50b8178d75bc0", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x47cfacc0cde99d828f67ba79b3abda23dc5578fe83af244cc374ef83d4a9d0e8", + "transactionIndex": "0x92", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x93", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x47cfacc0cde99d828f67ba79b3abda23dc5578fe83af244cc374ef83d4a9d0e8", + "transactionIndex": "0x92", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x29a66147543707ef83d5d15e0a1d9f65cbe90e7c", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x06d442561932a2e4887c887a7e7c3e02ce022a15ea266cc4ab15319a16aca27b", + "transactionIndex": "0x93", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x94", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x06d442561932a2e4887c887a7e7c3e02ce022a15ea266cc4ab15319a16aca27b", + "transactionIndex": "0x93", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x9bbf9e3af8a473124a17656f0e84d99aa8b51864", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x5ba652fea7333bebe4261306efaba3e21f23bb315559ac534f11aaa4329ad5ae", + "transactionIndex": "0x94", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x95", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x5ba652fea7333bebe4261306efaba3e21f23bb315559ac534f11aaa4329ad5ae", + "transactionIndex": "0x94", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xd5384163e03481b8b1c13e8da611e05e2612586c", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x8768c26cd428337dfef2ef155e5f57e51963aeee22e5f31da239d602e3829873", + "transactionIndex": "0x95", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x96", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x8768c26cd428337dfef2ef155e5f57e51963aeee22e5f31da239d602e3829873", + "transactionIndex": "0x95", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x934a05866a7a44b212b55484f201e0ada955ef41", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xb8765753de6b0a0e0cd7a8cc5007b7dc7e074be07ffd45cf86e897cf9890ca1f", + "transactionIndex": "0x96", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x97", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xb8765753de6b0a0e0cd7a8cc5007b7dc7e074be07ffd45cf86e897cf9890ca1f", + "transactionIndex": "0x96", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x2759e5176992c834e7c0da762ae6178de6e7e711", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xec5538a2ab4fc05f0f37db2a237a336a44a6066d5d009689040279728fda6aa8", + "transactionIndex": "0x97", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x98", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xec5538a2ab4fc05f0f37db2a237a336a44a6066d5d009689040279728fda6aa8", + "transactionIndex": "0x97", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x2e32b4db98ae68ea725212040f5f29abc61ce18f", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x3a5bbf980e86a72c5a96339ed89eacca070f0d02e32fe831d6d0964fe6082aca", + "transactionIndex": "0x98", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x99", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x3a5bbf980e86a72c5a96339ed89eacca070f0d02e32fe831d6d0964fe6082aca", + "transactionIndex": "0x98", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x785076b971f2a90b029b680f90d4d609060c01d5", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x3de333b05496dfee715fbeaa9a2b3de00c65e840c781e9ec5f072b50d46b82ec", + "transactionIndex": "0x99", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x9a", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x3de333b05496dfee715fbeaa9a2b3de00c65e840c781e9ec5f072b50d46b82ec", + "transactionIndex": "0x99", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xf04f32c46f1a16663bc7f6409b35b33f3daa9a03", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x30c200c9e290c9810a46674ad9f423698164cf805889c9f40f8115ab81e75cc4", + "transactionIndex": "0x9a", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x9b", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x30c200c9e290c9810a46674ad9f423698164cf805889c9f40f8115ab81e75cc4", + "transactionIndex": "0x9a", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xe02ca8d829b3e0185d168c62aeef3960e6c0882e", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x34dd48433c9748c4713ff2b97ffb95d589a7e4857df724edc9a888cdd2338906", + "transactionIndex": "0x9b", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x9c", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x34dd48433c9748c4713ff2b97ffb95d589a7e4857df724edc9a888cdd2338906", + "transactionIndex": "0x9b", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x5a39debded5481a5e5b73a1551fd31208b88da4e", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x53135cb3117543aabe53d99d6bd18567b68c188e0a9c4c4c2d606a0ccf7facce", + "transactionIndex": "0x9c", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x9d", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x53135cb3117543aabe53d99d6bd18567b68c188e0a9c4c4c2d606a0ccf7facce", + "transactionIndex": "0x9c", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xfcbddd58be4616042543637a84ad18cb065adba4", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xf1fc5ac35e5f8e06dce05b05164c66e8b97cfb6c1de12a66be2a65f9fc09e57f", + "transactionIndex": "0x9d", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x9e", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xf1fc5ac35e5f8e06dce05b05164c66e8b97cfb6c1de12a66be2a65f9fc09e57f", + "transactionIndex": "0x9d", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x4288545139bb238d1671b96e8f8016b0b3793ad4", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xdb7d83d1b473643394330c7e7e1473a6cd7b2bacba651b2c744b529baf09de49", + "transactionIndex": "0x9e", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0x9f", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xdb7d83d1b473643394330c7e7e1473a6cd7b2bacba651b2c744b529baf09de49", + "transactionIndex": "0x9e", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x1aff171caa8c1ea93bac4c27676f356d054412b4", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x97998a8fb071dde94fc8f011e15fb0ae276c6c45c36a1b6290f9d3f3dccf3a2b", + "transactionIndex": "0x9f", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xa0", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x97998a8fb071dde94fc8f011e15fb0ae276c6c45c36a1b6290f9d3f3dccf3a2b", + "transactionIndex": "0x9f", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x83e12760c1e324b16fe68bc23ffc69b37d17ee23", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x4e4632a06bde687d211caa55fb29f651cf035c6f28b4efacea0c972b49db3f27", + "transactionIndex": "0xa0", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xa1", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x4e4632a06bde687d211caa55fb29f651cf035c6f28b4efacea0c972b49db3f27", + "transactionIndex": "0xa0", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xef7ce03b7fdea2d0bf2ad6e0a1e9b0f2ed547447", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x4f293ccffb9e0af48ed0429f70a661f1645bf13165b0f12931b3a8d32fba9cdc", + "transactionIndex": "0xa1", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xa2", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x4f293ccffb9e0af48ed0429f70a661f1645bf13165b0f12931b3a8d32fba9cdc", + "transactionIndex": "0xa1", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xc7f52a1c275d470ff92718dfe27be7800f7bb697", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xd5249f5ab9bd4fd0bbccadcdab475202f36df4486c56b2f3c43c546d99732efd", + "transactionIndex": "0xa2", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xa3", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xd5249f5ab9bd4fd0bbccadcdab475202f36df4486c56b2f3c43c546d99732efd", + "transactionIndex": "0xa2", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x9043fafbe8833adafb449b559cef300a9632763f", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x886d756a405e6d3ead518edabc0063bd568073840168978cf0bc32e060038d72", + "transactionIndex": "0xa3", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xa4", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x886d756a405e6d3ead518edabc0063bd568073840168978cf0bc32e060038d72", + "transactionIndex": "0xa3", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xd438128b57cf71ab2168a263f24708263775c54f", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xe0682426bd66fa71589fa3712ce75f2fb38269bee0dbedc362efa2f165233682", + "transactionIndex": "0xa4", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xa5", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xe0682426bd66fa71589fa3712ce75f2fb38269bee0dbedc362efa2f165233682", + "transactionIndex": "0xa4", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x4466ca98bdcd08d54a9672d5ca76a69909c4b59e", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x75e9244e72e4e5faf7e4f1aee8ab24776ffb1dc47a9df438fa97c5a4cc0ea2e3", + "transactionIndex": "0xa5", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xa6", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x75e9244e72e4e5faf7e4f1aee8ab24776ffb1dc47a9df438fa97c5a4cc0ea2e3", + "transactionIndex": "0xa5", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x7bda7752b3533b3b71346ff02f6314b8fe77ec43", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xe5b334a187902e3bf4588e2ff3631990635ad0905d39711d267a29b08d7ea12b", + "transactionIndex": "0xa6", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xa7", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xe5b334a187902e3bf4588e2ff3631990635ad0905d39711d267a29b08d7ea12b", + "transactionIndex": "0xa6", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xb653aa2df1b710894bc1b94b3bd06799701d6d6b", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x19fe86bd47ada823e9270e3a37ba506b9e227e235180c1ced2d38dcb02540518", + "transactionIndex": "0xa7", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xa8", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x19fe86bd47ada823e9270e3a37ba506b9e227e235180c1ced2d38dcb02540518", + "transactionIndex": "0xa7", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x449bed0b27afe708a30a481329733bcbcba2bc21", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x5e3ea8c5fabf408ab42f34af2fd916c965e78c0bc7e24e6d73c53e74b70fdee2", + "transactionIndex": "0xa8", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xa9", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x5e3ea8c5fabf408ab42f34af2fd916c965e78c0bc7e24e6d73c53e74b70fdee2", + "transactionIndex": "0xa8", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xa65010026b83368ca05df6e8b467985d6de3eac5", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x9e8eac4b534715ef5e1123854bd2e3a7a40cba181973685281babd5b45050920", + "transactionIndex": "0xa9", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xaa", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x9e8eac4b534715ef5e1123854bd2e3a7a40cba181973685281babd5b45050920", + "transactionIndex": "0xa9", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x0278c350152e15fa6ffc712a5a73d704ce73e2e1", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x02f71eddacd7d62a816edad8fae33028e0c4e77e474e4cb60b3e75464aa08b55", + "transactionIndex": "0xaa", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xab", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x02f71eddacd7d62a816edad8fae33028e0c4e77e474e4cb60b3e75464aa08b55", + "transactionIndex": "0xaa", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xcfccdea1006a5cfa7d9484b5b293b46964c265c0", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x172190dcdb0b24ed8691af1b0a93ac16013f5668178afec29ff351ea5c31e9d3", + "transactionIndex": "0xab", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xac", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x172190dcdb0b24ed8691af1b0a93ac16013f5668178afec29ff351ea5c31e9d3", + "transactionIndex": "0xab", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xe230905c99aaa7b68402af8611b89ceda743191e", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xef726c0ea62a5df930539635406c799d82e11054cab622cd068eafd9102b3512", + "transactionIndex": "0xac", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xad", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xef726c0ea62a5df930539635406c799d82e11054cab622cd068eafd9102b3512", + "transactionIndex": "0xac", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x25c65b4b379ac37cf78357c4915f73677022eaff", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x205b5192e52fb72981f2b09fa4d4503ba0abdc838f6e4c19047e1505b54e65ed", + "transactionIndex": "0xad", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xae", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x205b5192e52fb72981f2b09fa4d4503ba0abdc838f6e4c19047e1505b54e65ed", + "transactionIndex": "0xad", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xfab275bfc83c3bc8aa17c16ed5a0b4e60caca299", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xac0e1dff8f3217b51eb5e6de18179cc2a06df14c16f0710d2f15183a532600f7", + "transactionIndex": "0xae", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xaf", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xac0e1dff8f3217b51eb5e6de18179cc2a06df14c16f0710d2f15183a532600f7", + "transactionIndex": "0xae", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x74f297c0197bab5ecf21add9ad9ced96ad42b61f", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x38ea179905ca6b4f0f6bc069460c994f9d3c99f2aa1a9861a8c57fc445ab71a3", + "transactionIndex": "0xaf", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xb0", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x38ea179905ca6b4f0f6bc069460c994f9d3c99f2aa1a9861a8c57fc445ab71a3", + "transactionIndex": "0xaf", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xb95d3439a7d3654e7871e72213caaad472ec8325", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xb72ed17d5c9270081d73267837c34338362e0ec14390434878a5baad6a183477", + "transactionIndex": "0xb0", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xb1", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xb72ed17d5c9270081d73267837c34338362e0ec14390434878a5baad6a183477", + "transactionIndex": "0xb0", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x6f356f6a7ff84c46f59fee691a2a161494871eec", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x3eaf7be02366bcfadbae05f40f92a0aec630143bd4dab32785b04e1a2cca6448", + "transactionIndex": "0xb1", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xb2", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x3eaf7be02366bcfadbae05f40f92a0aec630143bd4dab32785b04e1a2cca6448", + "transactionIndex": "0xb1", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x90c87c9ff588e9268a1c7c79a5986886e98c2f04", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x01955ebceae11919c7acf88822bfbca43650edfec821ae2309c4d4271b3d8015", + "transactionIndex": "0xb2", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xb3", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x01955ebceae11919c7acf88822bfbca43650edfec821ae2309c4d4271b3d8015", + "transactionIndex": "0xb2", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xe495a6242b78fe35211116839ad1882e7c4fc564", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xeb55c059c620022d61ae7c146fcc6be6a1a2c9bad27ad53b7b097d9c633aba32", + "transactionIndex": "0xb3", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xb4", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xeb55c059c620022d61ae7c146fcc6be6a1a2c9bad27ad53b7b097d9c633aba32", + "transactionIndex": "0xb3", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xcac04ac16876a65d3bf797679f34fc8272a1f6b4", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x8e1346d05d9cc96e889c361bc77a0ce7ce08c2767d992229ba434df82196d6d9", + "transactionIndex": "0xb4", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xb5", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x8e1346d05d9cc96e889c361bc77a0ce7ce08c2767d992229ba434df82196d6d9", + "transactionIndex": "0xb4", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x079d87904cd707143dd39c8be595bbe7a2181fb4", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xd97b863b73c68f05d7954bed064c5ac50d18fd23f00ae860d68d6f2e281c55ea", + "transactionIndex": "0xb5", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xb6", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xd97b863b73c68f05d7954bed064c5ac50d18fd23f00ae860d68d6f2e281c55ea", + "transactionIndex": "0xb5", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x1a1a8229e4a2fa06f73a564092976ba2dfe6aab8", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xc600b67ba70b33330d531a7b7937e8925ea4ea56d511b32ddd6942a1f493fe24", + "transactionIndex": "0xb6", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xb7", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xc600b67ba70b33330d531a7b7937e8925ea4ea56d511b32ddd6942a1f493fe24", + "transactionIndex": "0xb6", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x4bcdd234c20da32ec34a7ff85d6c1e6c832604d4", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x3d9131e9b1de0ed0dfc8ec743a436b338e7d8eda76575a289dabe54620099c5e", + "transactionIndex": "0xb7", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xb8", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x3d9131e9b1de0ed0dfc8ec743a436b338e7d8eda76575a289dabe54620099c5e", + "transactionIndex": "0xb7", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xa828c2381bb91fc96cc269de73b99a4314ac4b5b", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xc3d97a947f90a550e33f60b89dec3627e15423f62cef96229955f700e3dd5cd5", + "transactionIndex": "0xb8", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xb9", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xc3d97a947f90a550e33f60b89dec3627e15423f62cef96229955f700e3dd5cd5", + "transactionIndex": "0xb8", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x555ff7828a0b435432308a4721e4d9f110324025", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x1f29034db0c9ab5484416602b041ad74a4f6f93766420bd6f91c63265411bb9c", + "transactionIndex": "0xb9", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xba", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x1f29034db0c9ab5484416602b041ad74a4f6f93766420bd6f91c63265411bb9c", + "transactionIndex": "0xb9", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x251aca934009f4dda1d904e28ad7f20b3da4d888", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xafd422e2ae116d9dd01ae1b9ec619c051d8000ba34a8cb7b1290332259b6738b", + "transactionIndex": "0xba", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xbb", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xafd422e2ae116d9dd01ae1b9ec619c051d8000ba34a8cb7b1290332259b6738b", + "transactionIndex": "0xba", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xd4ff534569c5bfd12d2280b8bd27aa8876f6b5fa", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xed64104329db396d2c1b26bc3cb40ac224d0aa074086e1b6f450999d8ef2c20d", + "transactionIndex": "0xbb", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xbc", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xed64104329db396d2c1b26bc3cb40ac224d0aa074086e1b6f450999d8ef2c20d", + "transactionIndex": "0xbb", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x58d877f1f8a61cf99192e3161429c8a78d7f1243", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x91c77431061cc23eef0d1f6bc37d09652b333196e2161b50816768cd3864f00e", + "transactionIndex": "0xbc", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xbd", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x91c77431061cc23eef0d1f6bc37d09652b333196e2161b50816768cd3864f00e", + "transactionIndex": "0xbc", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x4e52755f091c4fb826b994666a3e207fdf3a0cc5", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x2c1aaa905b13f3a96adee7251453db1e40ad5a2189d4bc41fd6da6d50c43cbd7", + "transactionIndex": "0xbd", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xbe", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x2c1aaa905b13f3a96adee7251453db1e40ad5a2189d4bc41fd6da6d50c43cbd7", + "transactionIndex": "0xbd", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x06fb5e6a7abcc241729f591ac96ee41a9f10decf", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xff6271ff56f2135a2aeb3c44ebe4b66729cf87021b0e53f254327d1826e596bb", + "transactionIndex": "0xbe", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xbf", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xff6271ff56f2135a2aeb3c44ebe4b66729cf87021b0e53f254327d1826e596bb", + "transactionIndex": "0xbe", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xcd52996e7a6c75ddf85baab529af6c55f254ac15", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xbb8c3c694a4c053a2a1a8d8f596e689e72ae37690505927029d231aa6503f1d7", + "transactionIndex": "0xbf", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xc0", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xbb8c3c694a4c053a2a1a8d8f596e689e72ae37690505927029d231aa6503f1d7", + "transactionIndex": "0xbf", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x09bae325e54edf4dc8b79a8bb29f90deb90e8fe7", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x471cd2515c316bdc20a613b1221cdb9b45192372361d85d5054ee263335af2c6", + "transactionIndex": "0xc0", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xc1", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x471cd2515c316bdc20a613b1221cdb9b45192372361d85d5054ee263335af2c6", + "transactionIndex": "0xc0", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xd6e9161fad50d2e697cda2b960fd26bf52a5d169", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xde5a47784dcf0c58216d57aa90277d8a904bbbb88f5d161b7c0166d6f2a3cc79", + "transactionIndex": "0xc1", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xc2", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xde5a47784dcf0c58216d57aa90277d8a904bbbb88f5d161b7c0166d6f2a3cc79", + "transactionIndex": "0xc1", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x7c1f132c335f04002178d0d29fe785ad329bdfb1", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xefd12b314cdf802e7ee3dcff0ca59d3059ea66308c98e28bbbc3f5d8cd0fd4eb", + "transactionIndex": "0xc2", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xc3", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xefd12b314cdf802e7ee3dcff0ca59d3059ea66308c98e28bbbc3f5d8cd0fd4eb", + "transactionIndex": "0xc2", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x844a6c40b34e2335fc6887db2975d55183082c0d", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x60cb0a83f7b973e5911a599651b1ee5ec242fc13c266707210ad1b816d82dfca", + "transactionIndex": "0xc3", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xc4", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x60cb0a83f7b973e5911a599651b1ee5ec242fc13c266707210ad1b816d82dfca", + "transactionIndex": "0xc3", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xb2e8a55ea7fccdd8cdfb1af8e497a6f793ddf63e", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x3920fa5fe3a66fc5b203aa01efc29cf3849d593a4ac31c1de7c049034b4cbf35", + "transactionIndex": "0xc4", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xc5", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x3920fa5fe3a66fc5b203aa01efc29cf3849d593a4ac31c1de7c049034b4cbf35", + "transactionIndex": "0xc4", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x935a34962ed8237d9700191320e3e0b66741133d", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x375ffbcf9f0d7ae2b7b16c993a8d0728df730c15dd4063edf8a122831f61383d", + "transactionIndex": "0xc5", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xc6", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x375ffbcf9f0d7ae2b7b16c993a8d0728df730c15dd4063edf8a122831f61383d", + "transactionIndex": "0xc5", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xa478633e8aba4188c25159e1103206eeca98bced", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xd6704909ea92a7bd634a2b503eea5c35d90f6ed21d162770a93d8f671f4cf284", + "transactionIndex": "0xc6", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xc7", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xd6704909ea92a7bd634a2b503eea5c35d90f6ed21d162770a93d8f671f4cf284", + "transactionIndex": "0xc6", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xec5273989dd0e18d658f037cae2eff6803369c5c", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xdbc0f1e8eb8b7ceac99a2a128a8328bdf63a679a5506361661f91e74f26f65e7", + "transactionIndex": "0xc7", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xc8", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xdbc0f1e8eb8b7ceac99a2a128a8328bdf63a679a5506361661f91e74f26f65e7", + "transactionIndex": "0xc7", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xac95f4af1e9efbc914895695e232fb8dbaa66275", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x51132d22f9b53ea9fdb89fe7bdd78e475fc264d9eac9116801b60c6f7984a6b1", + "transactionIndex": "0xc8", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xc9", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x51132d22f9b53ea9fdb89fe7bdd78e475fc264d9eac9116801b60c6f7984a6b1", + "transactionIndex": "0xc8", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x3bddd35ddf0945c0151a4ccd547d9e7a0b1fa4cd", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xf6b77f179d98ad32c5caec7fd1fc63141a9d6fca163f284ae7aa84494f6c38a0", + "transactionIndex": "0xc9", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xca", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xf6b77f179d98ad32c5caec7fd1fc63141a9d6fca163f284ae7aa84494f6c38a0", + "transactionIndex": "0xc9", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x82c85801a8b18c4b2701e552727cea8494bbe9ea", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x770c59b9ad7021bd190b3cc6f17352ed3a39ed574c24b0d9297a3d73da0edf88", + "transactionIndex": "0xca", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xcb", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x770c59b9ad7021bd190b3cc6f17352ed3a39ed574c24b0d9297a3d73da0edf88", + "transactionIndex": "0xca", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xe05e3146327d8fb775f50fd8d8f943dbe200ef4b", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x2547275272f3fedbf54013e2d875fd57759af737549bac4db122fea189638e3a", + "transactionIndex": "0xcb", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xcc", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x2547275272f3fedbf54013e2d875fd57759af737549bac4db122fea189638e3a", + "transactionIndex": "0xcb", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x61ddae7aefa4d69c868379416504b1537d1fd558", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xf5365d93cadd22d1ba5f9f449f8a17191d5136911b759b5c92061a82a22c96f6", + "transactionIndex": "0xcc", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xcd", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xf5365d93cadd22d1ba5f9f449f8a17191d5136911b759b5c92061a82a22c96f6", + "transactionIndex": "0xcc", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x7b6b545279bc9e262a9dc224ab724ad629c75b63", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xc599a13fd8ae4c629728ff8460ee1b91bf2c64dc159450a9780778a2ccd8264d", + "transactionIndex": "0xcd", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xce", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xc599a13fd8ae4c629728ff8460ee1b91bf2c64dc159450a9780778a2ccd8264d", + "transactionIndex": "0xcd", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xf2a1d535f4bda9e810c067975d08dd8724f9066a", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x37e0842011b731d049f38f0a6b6c197752205f2da2981ecd5f16b0597571bc00", + "transactionIndex": "0xce", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xcf", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x37e0842011b731d049f38f0a6b6c197752205f2da2981ecd5f16b0597571bc00", + "transactionIndex": "0xce", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x48378844ab9486410ebf01d058a434e6a42e2ca5", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x9ad121c64cd937525bd3bb0b832919de7b7add9449f7a4c6eb0d901a3b5d75ee", + "transactionIndex": "0xcf", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xd0", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x9ad121c64cd937525bd3bb0b832919de7b7add9449f7a4c6eb0d901a3b5d75ee", + "transactionIndex": "0xcf", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xe4710a854b24062ff37ab6636bd9a456e24c1635", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x3f6b63f06c693631f13df9483e7b1a2b6c97ca044724bb949660dcb57b0a7653", + "transactionIndex": "0xd0", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xd1", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x3f6b63f06c693631f13df9483e7b1a2b6c97ca044724bb949660dcb57b0a7653", + "transactionIndex": "0xd0", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x51aa6a6b6a738d44e6a4e00d6e02faa991cf44be", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x49103e1d115e006199d373c3d32b0910550a8ece8bfa887ff18ba6f545e21e83", + "transactionIndex": "0xd1", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xd2", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x49103e1d115e006199d373c3d32b0910550a8ece8bfa887ff18ba6f545e21e83", + "transactionIndex": "0xd1", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xcc8247cfaed1950dfd6dd4bc23a0ecab014c3b6c", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xf2d742804326bf94c91f334e36a00d25158df10a013ee404f2a4ed24d9c8aaf2", + "transactionIndex": "0xd2", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xd3", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xf2d742804326bf94c91f334e36a00d25158df10a013ee404f2a4ed24d9c8aaf2", + "transactionIndex": "0xd2", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x84620482d52b71cb18bf84cd34f0cc0dcfd940cd", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xf37e29eea9154aa7078c9c4de71de39cebd6e3d35b85168e7bbab276b41c56e5", + "transactionIndex": "0xd3", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xd4", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xf37e29eea9154aa7078c9c4de71de39cebd6e3d35b85168e7bbab276b41c56e5", + "transactionIndex": "0xd3", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x783f0724f9dabd1bb52c7331bce7041804221d1b", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x8a96ddce81c5da5560e1f4ddde1546259ba2732fbd6ddfba0991e45af8fa47cc", + "transactionIndex": "0xd4", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xd5", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x8a96ddce81c5da5560e1f4ddde1546259ba2732fbd6ddfba0991e45af8fa47cc", + "transactionIndex": "0xd4", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xe8b4fd78437831cb9a182771bef485b619cef31f", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x22fdd7c5bc93f8ee2c048103538c025d3e1ec930e1bcbc0659bcf64c59524aad", + "transactionIndex": "0xd5", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xd6", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x22fdd7c5bc93f8ee2c048103538c025d3e1ec930e1bcbc0659bcf64c59524aad", + "transactionIndex": "0xd5", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x966f1f7e10f9bd531e31ab6bba0936944e00ebf9", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x5a71fdc541328b15f59f0ae3b2f07317807c4e575f69744606e65ebb3e231f53", + "transactionIndex": "0xd6", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xd7", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x5a71fdc541328b15f59f0ae3b2f07317807c4e575f69744606e65ebb3e231f53", + "transactionIndex": "0xd6", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x78fb8980d122c902ad1abeac523a92e9c24e75c4", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x6b087cc538eeb374eff46de3285afaa94f8c51f716a9217ce2842bea1c87702b", + "transactionIndex": "0xd7", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xd8", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x6b087cc538eeb374eff46de3285afaa94f8c51f716a9217ce2842bea1c87702b", + "transactionIndex": "0xd7", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x0e26a54bf70c51460cb13f4823027678672e4a0a", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xdd4d634ca6611e157a024eba7d08929c89b765b18ab0da15797bfa4b86d9e318", + "transactionIndex": "0xd8", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xd9", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xdd4d634ca6611e157a024eba7d08929c89b765b18ab0da15797bfa4b86d9e318", + "transactionIndex": "0xd8", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x43bb2e3bb47d0a12d45c87dcdbd6d16a47e1000a", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xd327b948d4272e5f4163101a1ff1554765feb6c8f151c46860b4528ce8a48b1e", + "transactionIndex": "0xd9", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xda", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xd327b948d4272e5f4163101a1ff1554765feb6c8f151c46860b4528ce8a48b1e", + "transactionIndex": "0xd9", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x7b94fcbd37f865892874e315c954062f936460fc", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xe34addc0176be08c4e3f3325c3f150535259816980e3d13f38e56810f7b416ee", + "transactionIndex": "0xda", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xdb", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xe34addc0176be08c4e3f3325c3f150535259816980e3d13f38e56810f7b416ee", + "transactionIndex": "0xda", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x9d38187eccc49419c99af4b99dbb1494592b8a56", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xc189f23c6facb666b2fa36444f95930b86e9c88624d827a5ec39027461ff057b", + "transactionIndex": "0xdb", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xdc", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xc189f23c6facb666b2fa36444f95930b86e9c88624d827a5ec39027461ff057b", + "transactionIndex": "0xdb", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x4cfd9048cfe93e02e30a84c7538c726e980c1d78", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x7f247cc255798aad9ad22d7b865ee86549b6e2e42b94d18c359358bb79458404", + "transactionIndex": "0xdc", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xdd", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x7f247cc255798aad9ad22d7b865ee86549b6e2e42b94d18c359358bb79458404", + "transactionIndex": "0xdc", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xa59318ba345b293f4ac5acb9f59a47365987b7da", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x023f23f12d12c3cfe7cb3154e410201b5fd2b8fb9a4a411e4145451504bd1456", + "transactionIndex": "0xdd", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xde", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x023f23f12d12c3cfe7cb3154e410201b5fd2b8fb9a4a411e4145451504bd1456", + "transactionIndex": "0xdd", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x66bb8c2724ed2dc09ece6024045e90e65c29eaff", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x0b23cae2b1f5700f6083853187b1ba93c51697554f135b9fed8a8199eac38fdc", + "transactionIndex": "0xde", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xdf", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x0b23cae2b1f5700f6083853187b1ba93c51697554f135b9fed8a8199eac38fdc", + "transactionIndex": "0xde", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x4eaff58c4a66839c6bbe2bca1dbd52a4d328aa5c", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x208f5f1bdef67ffaa6405d73756bb0be9d7e3f58b54326a6d6f788c9531bff4f", + "transactionIndex": "0xdf", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xe0", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x208f5f1bdef67ffaa6405d73756bb0be9d7e3f58b54326a6d6f788c9531bff4f", + "transactionIndex": "0xdf", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x7f82ddbd91c5fafe6d5fdf417c681eed211fefec", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x58e9c822002176ba6ffe45d3f2370c0228ede17e6b2f94fb0d670144a2414e7b", + "transactionIndex": "0xe0", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xe1", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x58e9c822002176ba6ffe45d3f2370c0228ede17e6b2f94fb0d670144a2414e7b", + "transactionIndex": "0xe0", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x52c21a9daa75e6eb91d449cad9649013903b7a73", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xd7d8a880ca069e3d44126353663f32280ad9a3f525ff9b87be096d8329cee36b", + "transactionIndex": "0xe1", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xe2", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xd7d8a880ca069e3d44126353663f32280ad9a3f525ff9b87be096d8329cee36b", + "transactionIndex": "0xe1", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x6e5bbbf0d9d1851599a21676c99b1a8cc012753d", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x435699fcf67be2c4f24c10c2ff4087db6be9fefff83c03439a43c14b49d45bac", + "transactionIndex": "0xe2", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xe3", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x435699fcf67be2c4f24c10c2ff4087db6be9fefff83c03439a43c14b49d45bac", + "transactionIndex": "0xe2", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x32e494f6f737bd419169a837c35e195a851bcb8d", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xd335b912999955653fe263e99cf3afaedc0e99f1009de94068362e749b3a1d99", + "transactionIndex": "0xe3", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xe4", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xd335b912999955653fe263e99cf3afaedc0e99f1009de94068362e749b3a1d99", + "transactionIndex": "0xe3", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x26179a252e9de28c29a37fbeb60df72be5e3e27d", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xd888a93fb75d2bbcd12a7adbf23bb0a64351251f778ff00873560752bebdf1c8", + "transactionIndex": "0xe4", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xe5", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xd888a93fb75d2bbcd12a7adbf23bb0a64351251f778ff00873560752bebdf1c8", + "transactionIndex": "0xe4", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x8b9654195b7c9a56ae20deb36a29834763800b03", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xa43383a1a8524a3bb3d7c8e9da62177f23bed8ce994a40d0b5c9a9ef5f64787c", + "transactionIndex": "0xe5", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xe6", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xa43383a1a8524a3bb3d7c8e9da62177f23bed8ce994a40d0b5c9a9ef5f64787c", + "transactionIndex": "0xe5", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xc6b903af2816a2423a3300ed853e5e7d26ea0cf0", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x5ad71cc2962c852d9927b0be9caad42345a0c9bcc23c5289de1f0dad3fb04a63", + "transactionIndex": "0xe6", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xe7", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x5ad71cc2962c852d9927b0be9caad42345a0c9bcc23c5289de1f0dad3fb04a63", + "transactionIndex": "0xe6", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x76e9285b4a804033a1d87b21c4e9d4e7028ce944", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xe824aef053b9f9e143b046a9e1d6c81675b7043bae561f558eaf0584b0ed39e9", + "transactionIndex": "0xe7", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xe8", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xe824aef053b9f9e143b046a9e1d6c81675b7043bae561f558eaf0584b0ed39e9", + "transactionIndex": "0xe7", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xf7ff86c0d2c2795dbd2731ca122a7d13a802b7b8", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x61ec68e2e7db733c04bf6d2029855c6980097a000bafe86c5af365509a07c7f3", + "transactionIndex": "0xe8", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xe9", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x61ec68e2e7db733c04bf6d2029855c6980097a000bafe86c5af365509a07c7f3", + "transactionIndex": "0xe8", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xab5d74a461bb0f2231abcc5341ba7d89b24f0926", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xf5e0f8f09c32ab8ad8f29c23009c9da5aedaa2c3f4626153a5e237bfb9277ecb", + "transactionIndex": "0xe9", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xea", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xf5e0f8f09c32ab8ad8f29c23009c9da5aedaa2c3f4626153a5e237bfb9277ecb", + "transactionIndex": "0xe9", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x97c1117aec1b18a6b70a103eff30d2c55adf7bc0", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xb29e7962a17005aa8375f40c65352cabc5e07b36b8f594f8c1c379df456d84ab", + "transactionIndex": "0xea", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xeb", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xb29e7962a17005aa8375f40c65352cabc5e07b36b8f594f8c1c379df456d84ab", + "transactionIndex": "0xea", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xf0dee298ac62b7e351148b4fbde1d45d7d9b1560", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x02b1408a8476dc6bb985fb0bee7e7f4fddee9227f103991753405b334473611c", + "transactionIndex": "0xeb", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xec", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x02b1408a8476dc6bb985fb0bee7e7f4fddee9227f103991753405b334473611c", + "transactionIndex": "0xeb", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x1390a610e22f9ee1c0fc92c341a2b0c6f3f9d08a", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x47eeaa6ed735d82647f1c609d906808669330a63b431c94ea77ed71aad770ea9", + "transactionIndex": "0xec", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xed", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x47eeaa6ed735d82647f1c609d906808669330a63b431c94ea77ed71aad770ea9", + "transactionIndex": "0xec", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xb1693d224d4fd70ad6c9c9bdc44faa3ce21fb40d", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xb514c68bbcb17579716ad39aec76ae3b8b9af7dcce66f3338847b792488e0ae0", + "transactionIndex": "0xed", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xee", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xb514c68bbcb17579716ad39aec76ae3b8b9af7dcce66f3338847b792488e0ae0", + "transactionIndex": "0xed", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x2d881b373edf297b495e8deedd9108e3d6870dee", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xb308a9eb9e721ddc7fe7504a222b6c9beadbf2625f59a560a09f3b1649f223ba", + "transactionIndex": "0xee", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xef", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xb308a9eb9e721ddc7fe7504a222b6c9beadbf2625f59a560a09f3b1649f223ba", + "transactionIndex": "0xee", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x200f1c0b9411dd0f1fad9a76cc47cf8d56e0a19d", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x46af35f9f4097a43125ce30cda2854a1f346f0326985b87daf53ad368570570b", + "transactionIndex": "0xef", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xf0", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x46af35f9f4097a43125ce30cda2854a1f346f0326985b87daf53ad368570570b", + "transactionIndex": "0xef", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0xba96294248d34b90f5b893ef82fd736cc1cc00ad", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0xea7eb99bb297ecfef59faf9d84237f0f9a5f9851e3f4270bbf8bf12707269f5a", + "transactionIndex": "0xf0", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xf1", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0xea7eb99bb297ecfef59faf9d84237f0f9a5f9851e3f4270bbf8bf12707269f5a", + "transactionIndex": "0xf0", + "type": "0x0" + }, + { + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "blockNumber": "0x57e7ed1", + "contractAddress": null, + "cumulativeGasUsed": "0x5f6c6", + "from": "0x3b8a906602422fe9f316e6fa0c1728cfaa238766", + "gasUsed": "0x0", + "logs": [ + { + "address": "0x0000000000000000000000000000000000000089", + "topics": [], + "data": "0x", + "blockNumber": "0x57e7ed1", + "transactionHash": "0x5bd3cec136afd3789a4f4f308a92ec0c205b2a817415c97849f860ae2185b4ae", + "transactionIndex": "0xf1", + "blockHash": "0x5fa763b50ffc96d5c6d3c1c2c98d746ee7f416d8ba1eeac5ff35bb775a3cda95", + "logIndex": "0xf2", + "removed": false + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x0000000000000000000000000000000000000089", + "transactionHash": "0x5bd3cec136afd3789a4f4f308a92ec0c205b2a817415c97849f860ae2185b4ae", + "transactionIndex": "0xf1", + "type": "0x0" + } + ] +} diff --git a/docs/XDPoSChain/eth/eth_getCode_response.json b/docs/XDPoSChain/eth/eth_getCode_response.json new file mode 100644 index 0000000..690f499 --- /dev/null +++ b/docs/XDPoSChain/eth/eth_getCode_response.json @@ -0,0 +1,5 @@ +{ + "jsonrpc": "2.0", + "id": 1004, + "result": "0x606060405260043610610196576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063012679511461019b578063025e7c27146101c957806302aa9be21461022c57806306a49fce1461026e5780630db02622146102d85780630e3e4fb81461030157806315febd68146103715780632a3640b1146103a85780632d15cc041461042a5780632f9c4bba146104b8578063302b687214610522578063326586521461058e5780633477ee2e14610640578063441a3e70146106a357806358e7525f146106cf5780635b860d271461071c5780635b9cd8cc146107695780636dd7d8ea1461082457806372e44a3814610852578063a9a981a31461089f578063a9ff959e146108c8578063ae6e43f5146108f1578063b642facd1461092a578063c45607df146109a3578063d09f1ab4146109f0578063d161c76714610a19578063d51b9e9314610a42578063d55b7dff14610a93578063ef18374a14610abc578063f2ee3c7d14610ae5578063f5c9512514610b1e578063f8ac9dd514610b4c575b600080fd5b6101c7600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610b75565b005b34156101d457600080fd5b6101ea60048080359060200190919050506111fc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561023757600080fd5b61026c600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061123b565b005b341561027957600080fd5b610281611796565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156102c45780820151818401526020810190506102a9565b505050509050019250505060405180910390f35b34156102e357600080fd5b6102eb61182a565b6040518082815260200191505060405180910390f35b341561030c57600080fd5b610357600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611830565b604051808215151515815260200191505060405180910390f35b341561037c57600080fd5b610392600480803590602001909190505061185f565b6040518082815260200191505060405180910390f35b34156103b357600080fd5b6103e8600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506118bb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561043557600080fd5b610461600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611909565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156104a4578082015181840152602081019050610489565b505050509050019250505060405180910390f35b34156104c357600080fd5b6104cb6119dc565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561050e5780820151818401526020810190506104f3565b505050509050019250505060405180910390f35b341561052d57600080fd5b610578600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611a79565b6040518082815260200191505060405180910390f35b341561059957600080fd5b6105c5600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611b03565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106055780820151818401526020810190506105ea565b50505050905090810190601f1680156106325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561064b57600080fd5b6106616004808035906020019091905050611da2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156106ae57600080fd5b6106cd6004808035906020019091908035906020019091905050611de1565b005b34156106da57600080fd5b610706600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061208d565b6040518082815260200191505060405180910390f35b341561072757600080fd5b610753600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506120d9565b6040518082815260200191505060405180910390f35b341561077457600080fd5b6107a9600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506121a1565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107e95780820151818401526020810190506107ce565b50505050905090810190601f1680156108165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610850600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061226a565b005b341561085d57600080fd5b610889600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050612653565b6040518082815260200191505060405180910390f35b34156108aa57600080fd5b6108b261266b565b6040518082815260200191505060405180910390f35b34156108d357600080fd5b6108db612671565b6040518082815260200191505060405180910390f35b34156108fc57600080fd5b610928600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050612677565b005b341561093557600080fd5b610961600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050612c36565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156109ae57600080fd5b6109da600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050612ca2565b6040518082815260200191505060405180910390f35b34156109fb57600080fd5b610a03612cee565b6040518082815260200191505060405180910390f35b3415610a2457600080fd5b610a2c612cf4565b6040518082815260200191505060405180910390f35b3415610a4d57600080fd5b610a79600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050612cfa565b604051808215151515815260200191505060405180910390f35b3415610a9e57600080fd5b610aa6612d53565b6040518082815260200191505060405180910390f35b3415610ac757600080fd5b610acf612d59565b6040518082815260200191505060405180910390f35b3415610af057600080fd5b610b1c600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050612d63565b005b3415610b2957600080fd5b610b4a600480803590602001908201803590602001919091929050506134f1565b005b3415610b5757600080fd5b610b5f6135f0565b6040518082815260200191505060405180910390f35b6000600b543410151515610b8857600080fd5b6000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050141580610c1c57506000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050115b1515610c2757600080fd5b81600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff16151515610c8457600080fd5b610cd934600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546135f690919063ffffffff16565b915060088054806001018281610cef919061362d565b9160005260206000209001600085909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506060604051908101604052803373ffffffffffffffffffffffffffffffffffffffff16815260200160011515815260200183815250600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548160ff02191690831515021790555060408201518160010155905050610eb834600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f690919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f5160016009546135f690919063ffffffff16565b6009819055506000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905014156110185760078054806001018281610fb6919061362d565b9160005260206000209001600033909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050600a600081548092919060010191905055505b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806001018281611069919061362d565b9160005260206000209001600085909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806001018281611109919061362d565b9160005260206000209001600033909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550507f7635f1d87b47fba9f2b09e56eb4be75cca030e0cb179c1602ac9261d39a8f5c1338434604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a1505050565b60078181548110151561120b57fe5b90600052602060002090016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000828280600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101515156112cd57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff16600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561140657600b546113f882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461361490919063ffffffff16565b1015151561140557600080fd5b5b61145b84600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461361490919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555061153384600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461361490919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115cb43600f546135f690919063ffffffff16565b9250611632846000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000868152602001908152602001600020546135f690919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000858152602001908152602001600020819055506000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010180548060010182816116db9190613659565b9160005260206000209001600085909190915055507faa0e554f781c3c3b2be110a0557f260f11af9a8aa2c64bc1e7a31dbb21e32fa2338686604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a15050505050565b61179e613685565b600880548060200260200160405190810160405280929190818152602001828054801561182057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116117d6575b5050505050905090565b600a5481565b60056020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000838152602001908152602001600020549050919050565b6006602052816000526040600020818154811015156118d657fe5b90600052602060002090016000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611911613685565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156119d057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611986575b50505050509050919050565b6119e4613699565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101805480602002602001604051908101604052809291908181526020018280548015611a6f57602002820191906000526020600020905b815481526020019060010190808311611a5b575b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611b0b6136ad565b611b1482612cfa565b15611c655760036000611b2684612c36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600160036000611b6f86612c36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905003815481101515611bba57fe5b90600052602060002090018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c595780601f10611c2e57610100808354040283529160200191611c59565b820191906000526020600020905b815481529060010190602001808311611c3c57829003601f168201915b50505050509050611d9d565b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905003815481101515611cf657fe5b90600052602060002090018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d955780601f10611d6a57610100808354040283529160200191611d95565b820191906000526020600020905b815481529060010190602001808311611d7857829003601f168201915b505050505090505b919050565b600881815481101515611db157fe5b90600052602060002090016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008282600082111515611df457600080fd5b814310151515611e0357600080fd5b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600084815260200190815260200160002054111515611e6457600080fd5b816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010182815481101515611eb357fe5b906000526020600020900154141515611ecb57600080fd5b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008681526020019081526020016000205492506000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000868152602001908152602001600020600090556000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010184815481101515611fc457fe5b9060005260206000209001600090553373ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050151561201357600080fd5b7ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568338685604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001935050505060405180910390a15050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050919050565b60008082600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff16151561213857600080fd5b61214184612c36565b915061214b612d59565b6064600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540281151561219757fe5b0492505050919050565b6003602052816000526040600020818154811015156121bc57fe5b9060005260206000209001600091509150508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122625780601f1061223757610100808354040283529160200191612262565b820191906000526020600020905b81548152906001019060200180831161224557829003601f168201915b505050505081565b600c54341015151561227b57600080fd5b80600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff1615156122d757600080fd5b61232c34600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546135f690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561249b57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480600101828161244b919061362d565b9160005260206000209001600033909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b61252d34600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f66a9138482c99e9baf08860110ef332cc0c23b4a199a53593d8db0fc8f96fbfc338334604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a15050565b60046020528060005260406000206000915090505481565b60095481565b600f5481565b6000806000833373ffffffffffffffffffffffffffffffffffffffff16600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614151561271957600080fd5b84600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff16151561277557600080fd5b6000600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160146101000a81548160ff0219169083151502179055506127e6600160095461361490919063ffffffff16565b600981905550600094505b6008805490508510156128bb578573ffffffffffffffffffffffffffffffffffffffff1660088681548110151561282457fe5b906000526020600020900160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128ae5760088581548110151561287b57fe5b906000526020600020900160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556128bb565b84806001019550506127f1565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054935061299284600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461361490919063ffffffff16565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a7243600e546135f690919063ffffffff16565b9250612ad9846000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000868152602001908152602001600020546135f690919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000858152602001908152602001600020819055506000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018054806001018281612b829190613659565b9160005260206000209001600085909190915055507f4edf3e325d0063213a39f9085522994a1c44bea5f39e7d63ef61260a1e58c6d33387604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a1505050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b600d5481565b600e5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff169050919050565b600b5481565b6000600a54905090565b600080612d6e613685565b600080600033600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff161515612dcf57600080fd5b87600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff161515612e2b57600080fd5b612e3433612c36565b9750612e3f89612c36565b9650600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151515612ed757600080fd5b6001600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550604b612fc4612d59565b6064600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540281151561301057fe5b041015156134e65760016008805490500360405180591061302e5750595b9080825280602002602001820160405250955060009450600093505b600880549050841015613357578673ffffffffffffffffffffffffffffffffffffffff166130b160088681548110151561308057fe5b906000526020600020900160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612c36565b73ffffffffffffffffffffffffffffffffffffffff16141561334a576130e3600160095461361490919063ffffffff16565b6009819055506008848154811015156130f857fe5b906000526020600020900160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16868680600101975081518110151561313857fe5b9060200190602002019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060088481548110151561318357fe5b906000526020600020900160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160006008868154811015156131c457fe5b906000526020600020900160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a81549060ff021916905560018201600090555050600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006132bb91906136c1565b600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061330691906136e2565b600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090555b838060010194505061304a565b600092505b600780549050831015613439578673ffffffffffffffffffffffffffffffffffffffff1660078481548110151561338f57fe5b906000526020600020900160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561342c576007838154811015156133e657fe5b906000526020600020900160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600a6000815480929190600190039190505550613439565b828060010193505061335c565b7fe18d61a5bf4aa2ab40afc88aa9039d27ae17ff4ec1c65f5f414df6f02ce8b35e8787604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019060200280838360005b838110156134d15780820151818401526020810190506134b6565b50505050905001935050505060405180910390a15b505050505050505050565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060010182816135429190613703565b91600052602060002090016000848490919290919250919061356592919061372f565b50507f949360d814b28a3b393a68909efe1fee120ee09cac30f360a0f80ab5415a611a338383604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018281038252848482818152602001925080828437820191505094505050505060405180910390a15050565b600c5481565b600080828401905083811015151561360a57fe5b8091505092915050565b600082821115151561362257fe5b818303905092915050565b8154818355818115116136545781836000526020600020918201910161365391906137af565b5b505050565b8154818355818115116136805781836000526020600020918201910161367f91906137af565b5b505050565b602060405190810160405280600081525090565b602060405190810160405280600081525090565b602060405190810160405280600081525090565b50805460008255906000526020600020908101906136df91906137d4565b50565b508054600082559060005260206000209081019061370091906137af565b50565b81548183558181151161372a5781836000526020600020918201910161372991906137d4565b5b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061377057803560ff191683800117855561379e565b8280016001018555821561379e579182015b8281111561379d578235825591602001919060010190613782565b5b5090506137ab91906137af565b5090565b6137d191905b808211156137cd5760008160009055506001016137b5565b5090565b90565b6137fd91905b808211156137f957600081816137f09190613800565b506001016137da565b5090565b90565b50805460018160011615610100020316600290046000825580601f106138265750613845565b601f01602090049060005260206000209081019061384491906137af565b5b505600a165627a7a72305820f5bbb127b52ce86c873faef85cff176563476a5e49a3d88eaa9a06a8f432c9080029" +} diff --git a/docs/XDPoSChain/eth/eth_getTransactionByHash_response.json b/docs/XDPoSChain/eth/eth_getTransactionByHash_response.json new file mode 100644 index 0000000..8ad6460 --- /dev/null +++ b/docs/XDPoSChain/eth/eth_getTransactionByHash_response.json @@ -0,0 +1,21 @@ +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "blockHash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "blockNumber": "0x548f4f1", + "from": "0xd844d373f4ef676665fcc18d9b6c89464a36f2d2", + "gas": "0xf4240", + "gasPrice": "0x37e11d600", + "hash": "0xbf83342ccdd6592eff8e2acfed87e23e852d684a4e2cfade89ba3b304c2b66a9", + "input": "0x414bf3890000000000000000000000003fb46c4db76d8e9f69f3f8388f43a7ca7e140807000000000000000000000000951857744785e80e2de051c32ee7b25f9c458c420000000000000000000000000000000000000000000000000000000000000064000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d20000000000000000000000000000000000000000000000000000000068254fab000000000000000000000000000000000000000000000fccf103db7d22e000000000000000000000000000000000000000000000000000acee08ed426a20ae840000000000000000000000000000000000000000000000000000000000000000", + "nonce": "0x5e8f", + "to": "0xecf4ea7907e779b8a7d0f90cb95fe06f43b610fb", + "transactionIndex": "0x0", + "value": "0x0", + "type": "0x0", + "v": "0x88", + "r": "0x5b1d0e4565493e5f815e26d622c6b9f5c7f23e269eac6ed950446ff7a10e3197", + "s": "0x25df537fe481c63c7defaaaccdd91105a0088f720789ecf5728460a4c3c0fc2" + } +} diff --git a/docs/XDPoSChain/eth/eth_getTransactionReceipt_response.json b/docs/XDPoSChain/eth/eth_getTransactionReceipt_response.json new file mode 100644 index 0000000..afe4881 --- /dev/null +++ b/docs/XDPoSChain/eth/eth_getTransactionReceipt_response.json @@ -0,0 +1,95 @@ +{ + "jsonrpc": "2.0", + "id": 5002, + "result": { + "blockHash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "blockNumber": "0x548f4f1", + "contractAddress": null, + "cumulativeGasUsed": "0x256ba", + "from": "0xd844d373f4ef676665fcc18d9b6c89464a36f2d2", + "gasUsed": "0x256ba", + "logs": [ + { + "address": "0x3fb46c4db76d8e9f69f3f8388f43a7ca7e140807", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000712d30c0975386b043e09224433f400ea87cab7d", + "0x00000000000000000000000061b7b0009fced05695ee811b7f8f78ba37c38344" + ], + "data": "0x0000000000000000000000000000000000000000000000000a5ae491119b0000", + "blockNumber": "0x548f4f1", + "transactionHash": "0xbf83342ccdd6592eff8e2acfed87e23e852d684a4e2cfade89ba3b304c2b66a9", + "transactionIndex": "0x0", + "blockHash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "logIndex": "0x0", + "removed": false + }, + { + "address": "0x951857744785e80e2de051c32ee7b25f9c458c42", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000712d30c0975386b043e09224433f400ea87cab7d", + "0x000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d2" + ], + "data": "0x0000000000000000000000000000000000000000000000b593895f85bc3bea71", + "blockNumber": "0x548f4f1", + "transactionHash": "0xbf83342ccdd6592eff8e2acfed87e23e852d684a4e2cfade89ba3b304c2b66a9", + "transactionIndex": "0x0", + "blockHash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "logIndex": "0x1", + "removed": false + }, + { + "address": "0x3fb46c4db76d8e9f69f3f8388f43a7ca7e140807", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d2", + "0x000000000000000000000000712d30c0975386b043e09224433f400ea87cab7d" + ], + "data": "0x000000000000000000000000000000000000000000000fccf103db7d22e00000", + "blockNumber": "0x548f4f1", + "transactionHash": "0xbf83342ccdd6592eff8e2acfed87e23e852d684a4e2cfade89ba3b304c2b66a9", + "transactionIndex": "0x0", + "blockHash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "logIndex": "0x2", + "removed": false + }, + { + "address": "0x3fb46c4db76d8e9f69f3f8388f43a7ca7e140807", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d2", + "0x000000000000000000000000ecf4ea7907e779b8a7d0f90cb95fe06f43b610fb" + ], + "data": "0x000000000000000000000000000000000000314dc3a0f41e5c923c6637280000", + "blockNumber": "0x548f4f1", + "transactionHash": "0xbf83342ccdd6592eff8e2acfed87e23e852d684a4e2cfade89ba3b304c2b66a9", + "transactionIndex": "0x0", + "blockHash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "logIndex": "0x3", + "removed": false + }, + { + "address": "0x712d30c0975386b043e09224433f400ea87cab7d", + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x000000000000000000000000ecf4ea7907e779b8a7d0f90cb95fe06f43b610fb", + "0x000000000000000000000000d844d373f4ef676665fcc18d9b6c89464a36f2d2" + ], + "data": "0x000000000000000000000000000000000000000000000fccf103db7d22e00000ffffffffffffffffffffffffffffffffffffffffffffff4a6c76a07a43c4158f0000000000000000000000000000000000000000363decaa6e4099f6e686ca910000000000000000000000000000000000000000220948b5cb625b7056562c32ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff86c3", + "blockNumber": "0x548f4f1", + "transactionHash": "0xbf83342ccdd6592eff8e2acfed87e23e852d684a4e2cfade89ba3b304c2b66a9", + "transactionIndex": "0x0", + "blockHash": "0xb6fbeabaa5682445b825c5bb02faf9290a38be44d9a47834b65224478923ebce", + "logIndex": "0x4", + "removed": false + } + ], + "logsBloom": "0x00000020000000002000000000000000000000000000000000000000000000000080000008020000000000800200000000000000000420000000000000200000000000000000000800000008000008010000000000000000000000000000080000000000000000100000000000000000000000000000000000000010000800000000001000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000480000000040000000002000000000004000000000000000000000040000000000000000000000030000000000000000000000000000000000000000000040000000000000010", + "status": "0x1", + "to": "0xecf4ea7907e779b8a7d0f90cb95fe06f43b610fb", + "transactionHash": "0xbf83342ccdd6592eff8e2acfed87e23e852d684a4e2cfade89ba3b304c2b66a9", + "transactionIndex": "0x0", + "type": "0x0" + } +} diff --git a/docs/XDPoSChain/miner/miner.md b/docs/XDPoSChain/miner/miner.md new file mode 100644 index 0000000..ac78b5a --- /dev/null +++ b/docs/XDPoSChain/miner/miner.md @@ -0,0 +1,278 @@ + +# Module miner + +The `miner` API is now deprecated because mining was switched off at the transition to proof-of-stake. It existed to provide remote control the node's mining operation and set various mining specific settings. It is provided here for historical interest! + +## Method miner_setEtherbase + +The `setEtherbase` method sets the etherbase (mining reward recipient) account. + +Parameters: + +- etherbase: address, required + +Returns: + +result: bool + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "miner_setEtherbase", + "params": [ + "0xD4CE02705041F04135f1949Bc835c1Fe0885513c" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": true +} +``` + +## Method miner_setExtra + +The `setExtra` method sets the extra data a miner can include when miner blocks. This is capped at 32 bytes. + +Parameters: + +- extra: string, required + +Returns: + +result: bool + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "miner_setExtra", + "params": [ + "string" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": true +} +``` + +## Method miner_setGasPrice + +The `setGasPrice` method sets the minimal accepted gas price when mining transactions. Any transactions that are below this limit are excluded from the mining process. + +Parameters: + +- gasPrice: big.Int, required + +Returns: + +result: bool + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "miner_setGasPrice", + "params": [ + "0x1" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": true +} +``` + +## Method miner_start + +The `start` method start the miner with the given number of threads. If threads is nil the number of workers started is equal to the number of logical CPUs that are usable by this process. If mining is already running, this method adjust the number of threads allowed to use. + +Parameters: + +- threads: int, optional + +Returns: + +result: bool + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "miner_start", + "params": [ + 1 + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": true +} +``` + +## Method miner_stop + +The `stop` method stop the CPU mining operation. + +Parameters: + +None + +Returns: + +result: bool + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "miner_stop" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": true +} +``` + +## Method miner_getHashrate + +The `getHashrate` method returns the current mining hashrate in H/s. + +Parameters: + +None + +Returns: + +result: uint64 + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "miner_getHashrate" +}' | jq +``` + +## Method miner_getWork + +The `getWork` method returns current mining work package. + +Parameters: + +None + +Returns: + +result: array of string, `[pow-hash, seed-hash, target]` + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "miner_getWork" +}' | jq +``` + +## Method miner_submitWork + +The `submitWork` method submits a mined nonce solution. + +Parameters: + +- nonce: string, required, 8-byte hex nonce +- powHash: string, required, 32-byte work identifier (the `pow-hash` value returned by `miner_getWork`) +- mixDigest: string, required, 32-byte mix digest for the submitted nonce + +Use `miner_getWork` result as `[pow-hash, seed-hash, target]` and pass only `pow-hash` as the second parameter here. The third parameter must be the computed mix digest (not `seed-hash`). + +Returns: + +result: bool + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "miner_submitWork", + "params": [ + "0x0000000000000001", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ] +}' | jq +``` + +## Method miner_submitHashrate + +The `submitHashrate` method submits the miner's hashrate estimate. + +Parameters: + +- hashrate: uint64, required, hexadecimal quantity +- id: string, required, miner identifier hash + +Returns: + +result: bool + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "miner_submitHashrate", + "params": [ + "0x1", + "0x0000000000000000000000000000000000000000000000000000000000000001" + ] +}' | jq +``` diff --git a/docs/XDPoSChain/net/net.md b/docs/XDPoSChain/net/net.md new file mode 100644 index 0000000..b251f01 --- /dev/null +++ b/docs/XDPoSChain/net/net.md @@ -0,0 +1,100 @@ + +# Module net + +The `net` API provides insight about the networking aspect of the client. + +## Method net_listening + +The `listening` method returns an indication if the node is listening for network connections. + +Parameters: + +None + +Returns: + +result: bool, always listening + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "net_listening" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": true +} +``` + +## Method net_peerCount + +The `peerCount` method returns the number of connected peers. + +Parameters: + +None + +Returns: + +result: uint + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "net_peerCount" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x10" +} +``` + +## Method net_version + +The `version` method returns the devp2p network ID + +Parameters: + +None + +Returns: + +result: string + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "net_version" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "50" +} +``` diff --git a/docs/XDPoSChain/rpc/rpc.md b/docs/XDPoSChain/rpc/rpc.md new file mode 100644 index 0000000..96a432f --- /dev/null +++ b/docs/XDPoSChain/rpc/rpc.md @@ -0,0 +1,45 @@ + +# Module rpc + +## Method rpc_modules + +The `modules` returns the list of RPC services with their version number. + +Parameters: + +None + +Returns: + +result: ojbect + +Example: + +Request: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "rpc_modules" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "XDPoS": "1.0", + "debug": "1.0", + "eth": "1.0", + "net": "1.0", + "personal": "1.0", + "rpc": "1.0", + "txpool": "1.0", + "web3": "1.0" + } +} +``` diff --git a/docs/XDPoSChain/txpool/txpool.md b/docs/XDPoSChain/txpool/txpool.md new file mode 100644 index 0000000..4ace9d2 --- /dev/null +++ b/docs/XDPoSChain/txpool/txpool.md @@ -0,0 +1,183 @@ + +# Module txpool + +## Method txpool_content + +The `content` method lists the exact details of all the transactions currently pending for inclusion in the next block(s), as well as the ones that are being scheduled for future execution only. + +The result is an object with two fields pending and queued. Each of these fields are associative arrays, in which each entry maps an origin-address to a batch of scheduled transactions. These batches themselves are maps associating nonces with actual transactions. + +Please note, there may be multiple transactions associated with the same account and nonce. This can happen if the user broadcast multiple ones with varying gas allowances (or even completely different transactions). + +Parameters: + +None + +Returns: + +result: ojbect + +Example: + +Request: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "txpool_content" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "pending": { + "xdc6a7B501F6Becea116623eF1C85304d0983a42FA0": { + "257783": { + "blockHash": null, + "blockNumber": null, + "from": "0x6a7b501f6becea116623ef1c85304d0983a42fa0", + "gas": "0x7362", + "gasPrice": "0x2e90edd00", + "hash": "0x63cb7582191467f9ea0f91e56033185be96374625e28565b3e34cab4ba4f4739", + "input": "0xafb91b2e000000000000000000000000d4b0e654a0b07d522b28fb1f20a8ba3c07617db30000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000277b22726f6c65223a2275736572222c2267616d654964223a322c226576656e744964223a34347d00000000000000000000000000000000000000000000000000", + "nonce": "0x3eef7", + "to": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "transactionIndex": null, + "value": "0x0", + "type": "0x0", + "v": "0x88", + "r": "0x87b1fa4d4e23f61fb503f1cdf7791a0ccd76ae8fd8c9b5c8e74f3f9a62913f9a", + "s": "0x45dfee63317820545d85e9001fdb8f1561bc63c44f7bf4d19726c4fb4d4259e5" + } + } + }, + "queued": {} + } +} +``` + +## Method txpool_contentFrom + +The `contentFrom` method retrieves the transactions contained within the txpool, returning pending as well as queued transactions of this address, grouped by nonce. + +Parameters: + +- addr: addrress, required + +Returns: + +result: ojbect + +Example: + +Request: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "txpool_contentFrom", + "params": [ + "0xD4CE02705041F04135f1949Bc835c1Fe0885513c" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "pending": {}, + "queued": {} + } +} +``` + +## Method txpool_inspect + +The `inspect` lists a textual summary of all the transactions currently pending for inclusion in the next block(s), as well as the ones that are being scheduled for future execution only. This is a method specifically tailored to developers to quickly see the transactions in the pool and find any potential issues. + +The result is an object with two fields pending and queued. Each of these fields are associative arrays, in which each entry maps an origin-address to a batch of scheduled transactions. These batches themselves are maps associating nonces with transactions summary strings. + +Please note, there may be multiple transactions associated with the same account and nonce. This can happen if the user broadcast multiple ones with varying gas allowances (or even completely different transactions). + +Parameters: + +None + +Returns: + +result: ojbect + +Example: + +Request: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "txpool_inspect" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "pending": {}, + "queued": {} + } +} +``` + +## Method txpool_status + +The `status` method returns the number of pending and queued transaction in the pool. + +The result is an object with two fields pending and queued, each of which is a counter representing the number of transactions in that particular state. + +Parameters: + +None + +Returns: + +result: ojbect + +Example: + +Request: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "txpool_status" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "pending": "0x3", + "queued": "0x0" + } +} +``` diff --git a/docs/XDPoSChain/txpool/txpool_content.json b/docs/XDPoSChain/txpool/txpool_content.json new file mode 100644 index 0000000..5c96365 --- /dev/null +++ b/docs/XDPoSChain/txpool/txpool_content.json @@ -0,0 +1,28 @@ +{ + "jsonrpc": "2.0", + "id": 1001, + "result": { + "pending": { + "xdc6a7B501F6Becea116623eF1C85304d0983a42FA0": { + "257783": { + "blockHash": null, + "blockNumber": null, + "from": "0x6a7b501f6becea116623ef1c85304d0983a42fa0", + "gas": "0x7362", + "gasPrice": "0x2e90edd00", + "hash": "0x63cb7582191467f9ea0f91e56033185be96374625e28565b3e34cab4ba4f4739", + "input": "0xafb91b2e000000000000000000000000d4b0e654a0b07d522b28fb1f20a8ba3c07617db30000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000277b22726f6c65223a2275736572222c2267616d654964223a322c226576656e744964223a34347d00000000000000000000000000000000000000000000000000", + "nonce": "0x3eef7", + "to": "0x30632a3c801031a5d6a1b3589966b60ee2fbc301", + "transactionIndex": null, + "value": "0x0", + "type": "0x0", + "v": "0x88", + "r": "0x87b1fa4d4e23f61fb503f1cdf7791a0ccd76ae8fd8c9b5c8e74f3f9a62913f9a", + "s": "0x45dfee63317820545d85e9001fdb8f1561bc63c44f7bf4d19726c4fb4d4259e5" + } + } + }, + "queued": {} + } +} diff --git a/docs/XDPoSChain/web3/web3.md b/docs/XDPoSChain/web3/web3.md new file mode 100644 index 0000000..fec2d8c --- /dev/null +++ b/docs/XDPoSChain/web3/web3.md @@ -0,0 +1,68 @@ +# Module web3 + +## Method web3_clientVersion + +The `clientVersion` method returns the current client version string. + +Parameters: + +None + +Returns: + +result: string + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "web3_clientVersion" +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "XDC/v2.7.0-devnet-abbf357e-20260327/linux-amd64/go1.25.8" +} +``` + +## Method web3_sha3 + +The `sha3` method calculates Keccak-256 of the given data. + +Parameters: + +- data: DATA, required, hex-encoded bytes + +Returns: + +result: DATA, 32-byte hash + +Example: + +```shell +curl -s -X POST -H "Content-Type: application/json" ${RPC} -d '{ + "jsonrpc": "2.0", + "id": 1001, + "method": "web3_sha3", + "params": [ + "0x68656c6c6f20776f726c64" + ] +}' | jq +``` + +Response: + +```json +{ + "jsonrpc": "2.0", + "id": 1001, + "result": "0x47173285a8d7341e5e972fc677286384f802f8ef42a5ec5f03bbfa254cb01fad" +} +``` diff --git a/docs/index.md b/docs/index.md index ba24134..77285ee 100644 --- a/docs/index.md +++ b/docs/index.md @@ -92,10 +92,14 @@ The XDC protocol serves as a messaging and confirmation layer for global payment
XDC Chain

Get started with XDC Network: Unlock the power of decentralized finance and global trade.

- +
White Paper

Technical and Business White Paper of the XDC Network

+ +
XDPoSChain documents
+

JSONRPC documents from XDPoSChain

+
XDC Network: RPC Endpoints

Obtain the RPC Endpoint for XDC Network