diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index cd7e140e..311faaea 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -21,7 +21,7 @@ jobs: - name: Bootstrap poetry shell: bash run: | - curl -sL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py \ + curl -sSL https://install.python-poetry.org \ | python - -y - name: Update PATH diff --git a/.gitignore b/.gitignore index a7765926..3082874d 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,6 @@ cache # pycharm .idea + +.env +.python-version diff --git a/MONOLITHIC.md b/MONOLITHIC.md new file mode 100644 index 00000000..89db8667 --- /dev/null +++ b/MONOLITHIC.md @@ -0,0 +1,126 @@ + +# Running mev-inspect-py without kubernetes ('monolithic mode') + +Running mev-inspect-py outside of kubernetes can be useful for debug purposes. In this case, the steps for installation are: +1. Install dependencies (pyenv, poetry, postgres) +1. Set up python virtual environment using matching python version (3.9.x) and install required python modules using poetry +1. Create postgres database +1. Run database migrations + +The database credentials and archive node address used by mev-inspect-py need to be loaded into environment variables (both for database migrations and to run mev-inspect-py). + +## Ubuntu install instructions + +So, starting from a clean Ubuntu 22.04 installation, the prerequisites for pyenv, psycopg2 (python3-dev libpq-dev) can be installed with + +`sudo apt install -y make build-essential git libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev liblzma-dev python3-dev libpq-dev` + +### pyenv +Install pyenv using the web installer + +`curl https://pyenv.run | bash` + +and add the following to `~/.bashrc` (if running locally) or `~/.profile` (if running over ssh). + +``` +export PYENV_ROOT="$HOME/.pyenv" +command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH" +eval "$(pyenv init -)" +``` + +Then update the current shell by running `source ~/.bashrc` or `source ~/.profile` as appropriate. + +### Poetry + +Install Poetry using the web installer + +`curl -sSL https://install.python-poetry.org | python3 -` + +add the following to `~/.bashrc` (if running locally) or `~/.profile` (if running over ssh) + +`export PATH="/home/user/.local/bin:$PATH"` + +If running over ssh you should also add the following to `~/.profile` to prevent [Poetry errors](https://github.com/python-poetry/poetry/issues/1917) from a lack of active keyring: + +`export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring` + +Again update current shell by running `source ~/.bashrc` or `source ~/.profile` as appropriate. + +### postgres +We have tested two alternatives for postgres - installing locally or as a container. + +#### Option 1: Installing locally + +To install locally from a clean Ubuntu 22.04 installation, run: +`sudo apt install postgresql postgresql-contrib` + +Note: You may need to reconfigure your pg-hba.conf to allow local access. + +#### Option 2: Installing docker + +To avoid interfering with your local postgres instance, you may prefer to run postgres within a docker container. +For docker installation instructions, please refer to https://docs.docker.com/engine/install/ubuntu/ + +### mev-inspect-py + +With all dependencies now installed, clone the mev-inspec-py repo +``` +git clone https://github.com/flashbots/mev-inspect-py.git +cd mev-inspect-py +``` +We now install the required pythn version and use Poetry to install the required python modules into a virtual environment. + +``` +pyenv install 3.9.16 +pyenv local 3.9.16 +poetry env use 3.9.16 +poetry install +``` + +### Create database +mev-inspect-py outputs to a postgres database, so we need to set this up. There are various ways of doing this, two options are presented here. + +#### Option 1 — Run postgres locally +``` +sudo -u postgres psql +\password +postgres +create database mev_inspect; +\q +``` + +#### Option 2 — Use postgres docker image +To avoid interfering with your local postgres instance, you may prefer to run postgres within a docker container. First ensure that postgres is not currently running to ensure port `5432` is available: +`sudo systemctl stop postgresql` +and then start a containerised postgres instance: +`sudo docker run -d -p 5432:5432 -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=mev_inspect postgres` + +### Environment variables +We will need to set a few environment variables to use mev-inspect-py. **These will be required every time mev-inspect-py runs**, so again you may wish to add these to your `~/.bashrc` and/or `~/.profile` as appropriate. Note that you need to substitute the correct URL for your archive node below if you are not running Erigon locally. +``` +export POSTGRES_USER=postgres +export POSTGRES_PASSWORD=postgres +export POSTGRES_HOST=localhost +export RPC_URL="http://127.0.0.1:8545" +``` +### Database migrations +Finally run the database migrations and fetch price information: + +``` +poetry run alembic upgrade head +poetry run fetch-all-prices +``` + +## Usage instructions +The same functionality available through kubernetes can be run in 'monolithic mode', but the relevant functions now need to be invoked by Poetry directly. So to inspect a single block, run for example: + +`poetry run inspect-block 16379706` + +Or to inspect a range of blocks: + +`poetry run inspect-many-blocks 16379606 16379706` + +Or to run the test suite: + +`poetry run pytest tests` + diff --git a/README.md b/README.md index 4cfa3c72..14db7c40 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,10 @@ And load prices data ./mev prices fetch-all ``` +## Monolithic (non-kubernetes) install instructions + +For an alternative means of running mev-inspect-py for smaller set-ups or debug purposes see the [monolithic install instructions](MONOLITHIC.md). + ## Usage ### Inspect a single block diff --git a/mev_inspect/block.py b/mev_inspect/block.py index cf80fa54..69b11edc 100644 --- a/mev_inspect/block.py +++ b/mev_inspect/block.py @@ -34,8 +34,7 @@ async def create_from_block_number( _find_or_fetch_block_traces(w3, block_number, trace_db_session), _find_or_fetch_base_fee_per_gas(w3, block_number, trace_db_session), ) - - miner_address = _get_miner_address_from_traces(traces) + miner_address = await _find_or_fetch_miner_address(w3, block_number, traces) return Block( block_number=block_number, @@ -180,11 +179,27 @@ def _find_base_fee_per_gas( return base_fee +async def _find_or_fetch_miner_address( + w3, + block_number: int, + traces: List[Trace], +) -> Optional[str]: + # eth1 blocks + miner_address = _get_miner_address_from_traces(traces) + if miner_address is not None: + return miner_address + return await _fetch_miner_eth2(w3, block_number) + + +async def _fetch_miner_eth2(w3, block_number: int) -> Optional[str]: + block_json = await w3.eth.get_block(block_number) + return block_json["miner"] + + def _get_miner_address_from_traces(traces: List[Trace]) -> Optional[str]: for trace in traces: if trace.type == TraceType.reward: return trace.action["author"] - return None diff --git a/mev_inspect/schemas/blocks.py b/mev_inspect/schemas/blocks.py index c3dd3d75..228d0908 100644 --- a/mev_inspect/schemas/blocks.py +++ b/mev_inspect/schemas/blocks.py @@ -13,7 +13,7 @@ class CallResult(CamelModel): gas_used: int @validator("gas_used", pre=True) - def maybe_hex_to_int(v): + def maybe_hex_to_int(cls, v): if isinstance(v, str): return hex_to_int(v) return v @@ -27,7 +27,7 @@ class CallAction(Web3Model): gas: int @validator("value", "gas", pre=True) - def maybe_hex_to_int(v): + def maybe_hex_to_int(cls, v): if isinstance(v, str): return hex_to_int(v) return v diff --git a/mev_inspect/schemas/receipts.py b/mev_inspect/schemas/receipts.py index a5772b03..40814703 100644 --- a/mev_inspect/schemas/receipts.py +++ b/mev_inspect/schemas/receipts.py @@ -24,7 +24,7 @@ class Receipt(CamelModel): "cumulative_gas_used", pre=True, ) - def maybe_hex_to_int(v): + def maybe_hex_to_int(cls, v): if isinstance(v, str): return hex_to_int(v) return v diff --git a/poetry.lock b/poetry.lock index 60c73997..0f6fc116 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,10 +1,85 @@ +# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. + [[package]] name = "aiohttp" version = "3.8.0" description = "Async http client/server framework (asyncio)" -category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "aiohttp-3.8.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:48f218a5257b6bc16bcf26a91d97ecea0c7d29c811a90d965f3dd97c20f016d6"}, + {file = "aiohttp-3.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a2fee4d656a7cc9ab47771b2a9e8fad8a9a33331c1b59c3057ecf0ac858f5bfe"}, + {file = "aiohttp-3.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:688a1eb8c1a5f7e795c7cb67e0fe600194e6723ba35f138dfae0db20c0cb8f94"}, + {file = "aiohttp-3.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ba09bb3dcb0b7ec936a485db2b64be44fe14cdce0a5eac56f50e55da3627385"}, + {file = "aiohttp-3.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d7715daf84f10bcebc083ad137e3eced3e1c8e7fa1f096ade9a8d02b08f0d91c"}, + {file = "aiohttp-3.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e3f81fbbc170418e22918a9585fd7281bbc11d027064d62aa4b507552c92671"}, + {file = "aiohttp-3.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:1fa9f50aa1f114249b7963c98e20dc35c51be64096a85bc92433185f331de9cc"}, + {file = "aiohttp-3.8.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8a50150419b741ee048b53146c39c47053f060cb9d98e78be08fdbe942eaa3c4"}, + {file = "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:a84c335337b676d832c1e2bc47c3a97531b46b82de9f959dafb315cbcbe0dfcd"}, + {file = "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:88d4917c30fcd7f6404fb1dc713fa21de59d3063dcc048f4a8a1a90e6bbbd739"}, + {file = "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b76669b7c058b8020b11008283c3b8e9c61bfd978807c45862956119b77ece45"}, + {file = "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:84fe1732648c1bc303a70faa67cbc2f7f2e810c8a5bca94f6db7818e722e4c0a"}, + {file = "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:730b7c2b7382194d9985ffdc32ab317e893bca21e0665cb1186bdfbb4089d990"}, + {file = "aiohttp-3.8.0-cp310-cp310-win32.whl", hash = "sha256:0a96473a1f61d7920a9099bc8e729dc8282539d25f79c12573ee0fdb9c8b66a8"}, + {file = "aiohttp-3.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:764c7c6aa1f78bd77bd9674fc07d1ec44654da1818d0eef9fb48aa8371a3c847"}, + {file = "aiohttp-3.8.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:9951c2696c4357703001e1fe6edc6ae8e97553ac630492ea1bf64b429cb712a3"}, + {file = "aiohttp-3.8.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0af379221975054162959e00daf21159ff69a712fc42ed0052caddbd70d52ff4"}, + {file = "aiohttp-3.8.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9689af0f0a89e5032426c143fa3683b0451f06c83bf3b1e27902bd33acfae769"}, + {file = "aiohttp-3.8.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe4a327da0c6b6e59f2e474ae79d6ee7745ac3279fd15f200044602fa31e3d79"}, + {file = "aiohttp-3.8.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ecb314e59bedb77188017f26e6b684b1f6d0465e724c3122a726359fa62ca1ba"}, + {file = "aiohttp-3.8.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a5399a44a529083951b55521cf4ecbf6ad79fd54b9df57dbf01699ffa0549fc9"}, + {file = "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:09754a0d5eaab66c37591f2f8fac8f9781a5f61d51aa852a3261c4805ca6b984"}, + {file = "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:adf0cb251b1b842c9dee5cfcdf880ba0aae32e841b8d0e6b6feeaef002a267c5"}, + {file = "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:a4759e85a191de58e0ea468ab6fd9c03941986eee436e0518d7a9291fab122c8"}, + {file = "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:28369fe331a59d80393ec82df3d43307c7461bfaf9217999e33e2acc7984ff7c"}, + {file = "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:2f44d1b1c740a9e2275160d77c73a11f61e8a916191c572876baa7b282bcc934"}, + {file = "aiohttp-3.8.0-cp36-cp36m-win32.whl", hash = "sha256:e27cde1e8d17b09730801ce97b6e0c444ba2a1f06348b169fd931b51d3402f0d"}, + {file = "aiohttp-3.8.0-cp36-cp36m-win_amd64.whl", hash = "sha256:15a660d06092b7c92ed17c1dbe6c1eab0a02963992d60e3e8b9d5fa7fa81f01e"}, + {file = "aiohttp-3.8.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:257f4fad1714d26d562572095c8c5cd271d5a333252795cb7a002dca41fdbad7"}, + {file = "aiohttp-3.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a6074a3b2fa2d0c9bf0963f8dfc85e1e54a26114cc8594126bc52d3fa061c40e"}, + {file = "aiohttp-3.8.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7a315ceb813208ef32bdd6ec3a85cbe3cb3be9bbda5fd030c234592fa9116993"}, + {file = "aiohttp-3.8.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9a52b141ff3b923a9166595de6e3768a027546e75052ffba267d95b54267f4ab"}, + {file = "aiohttp-3.8.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6a038cb1e6e55b26bb5520ccffab7f539b3786f5553af2ee47eb2ec5cbd7084e"}, + {file = "aiohttp-3.8.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98b1ea2763b33559dd9ec621d67fc17b583484cb90735bfb0ec3614c17b210e4"}, + {file = "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9e8723c3256641e141cd18f6ce478d54a004138b9f1a36e41083b36d9ecc5fc5"}, + {file = "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:14a6f026eca80dfa3d52e86be89feb5cd878f6f4a6adb34457e2c689fd85229b"}, + {file = "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:c62d4791a8212c885b97a63ef5f3974b2cd41930f0cd224ada9c6ee6654f8150"}, + {file = "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:90a97c2ed2830e7974cbe45f0838de0aefc1c123313f7c402e21c29ec063fbb4"}, + {file = "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:dcc4d5dd5fba3affaf4fd08f00ef156407573de8c63338787614ccc64f96b321"}, + {file = "aiohttp-3.8.0-cp37-cp37m-win32.whl", hash = "sha256:de42f513ed7a997bc821bddab356b72e55e8396b1b7ba1bf39926d538a76a90f"}, + {file = "aiohttp-3.8.0-cp37-cp37m-win_amd64.whl", hash = "sha256:7d76e8a83396e06abe3df569b25bd3fc88bf78b7baa2c8e4cf4aaf5983af66a3"}, + {file = "aiohttp-3.8.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5d79174d96446a02664e2bffc95e7b6fa93b9e6d8314536c5840dff130d0878b"}, + {file = "aiohttp-3.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4a6551057a846bf72c7a04f73de3fcaca269c0bd85afe475ceb59d261c6a938c"}, + {file = "aiohttp-3.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:871d4fdc56288caa58b1094c20f2364215f7400411f76783ea19ad13be7c8e19"}, + {file = "aiohttp-3.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ba08a71caa42eef64357257878fb17f3fba3fba6e81a51d170e32321569e079"}, + {file = "aiohttp-3.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f90dabd9933b1621260b32c2f0d05d36923c7a5a909eb823e429dba0fd2f3e"}, + {file = "aiohttp-3.8.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f348ebd20554e8bc26e8ef3ed8a134110c0f4bf015b3b4da6a4ddf34e0515b19"}, + {file = "aiohttp-3.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d5f8c04574efa814a24510122810e3a3c77c0552f9f6ff65c9862f1f046be2c3"}, + {file = "aiohttp-3.8.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5ecffdc748d3b40dd3618ede0170e4f5e1d3c9647cfb410d235d19e62cb54ee0"}, + {file = "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:577cc2c7b807b174814dac2d02e673728f2e46c7f90ceda3a70ea4bb6d90b769"}, + {file = "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:6b79f6c31e68b6dafc0317ec453c83c86dd8db1f8f0c6f28e97186563fca87a0"}, + {file = "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:2bdd655732e38b40f8a8344d330cfae3c727fb257585df923316aabbd489ccb8"}, + {file = "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:63fa57a0708573d3c059f7b5527617bd0c291e4559298473df238d502e4ab98c"}, + {file = "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d3f90ee275b1d7c942e65b5c44c8fb52d55502a0b9a679837d71be2bd8927661"}, + {file = "aiohttp-3.8.0-cp38-cp38-win32.whl", hash = "sha256:fa818609357dde5c4a94a64c097c6404ad996b1d38ca977a72834b682830a722"}, + {file = "aiohttp-3.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:097ecf52f6b9859b025c1e36401f8aa4573552e887d1b91b4b999d68d0b5a3b3"}, + {file = "aiohttp-3.8.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:be03a7483ad9ea60388f930160bb3728467dd0af538aa5edc60962ee700a0bdc"}, + {file = "aiohttp-3.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:78d51e35ed163783d721b6f2ce8ce3f82fccfe471e8e50a10fba13a766d31f5a"}, + {file = "aiohttp-3.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:bda75d73e7400e81077b0910c9a60bf9771f715420d7e35fa7739ae95555f195"}, + {file = "aiohttp-3.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:707adc30ea6918fba725c3cb3fe782d271ba352b22d7ae54a7f9f2e8a8488c41"}, + {file = "aiohttp-3.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f58aa995b905ab82fe228acd38538e7dc1509e01508dcf307dad5046399130f"}, + {file = "aiohttp-3.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c996eb91bfbdab1e01e2c02e7ff678c51e2b28e3a04e26e41691991cc55795"}, + {file = "aiohttp-3.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d6a1a66bb8bac9bc2892c2674ea363486bfb748b86504966a390345a11b1680e"}, + {file = "aiohttp-3.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dafc01a32b4a1d7d3ef8bfd3699406bb44f7b2e0d3eb8906d574846e1019b12f"}, + {file = "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:949a605ef3907254b122f845baa0920407080cdb1f73aa64f8d47df4a7f4c4f9"}, + {file = "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:0d7b056fd3972d353cb4bc305c03f9381583766b7f8c7f1c44478dba69099e33"}, + {file = "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f1d39a744101bf4043fa0926b3ead616607578192d0a169974fb5265ab1e9d2"}, + {file = "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:67ca7032dfac8d001023fadafc812d9f48bf8a8c3bb15412d9cdcf92267593f4"}, + {file = "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:cb751ef712570d3bda9a73fd765ff3e1aba943ec5d52a54a0c2e89c7eef9da1e"}, + {file = "aiohttp-3.8.0-cp39-cp39-win32.whl", hash = "sha256:6d3e027fe291b77f6be9630114a0200b2c52004ef20b94dc50ca59849cd623b3"}, + {file = "aiohttp-3.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:3c5e9981e449d54308c6824f172ec8ab63eb9c5f922920970249efee83f7e919"}, + {file = "aiohttp-3.8.0.tar.gz", hash = "sha256:d3b19d8d183bcfd68b25beebab8dc3308282fe2ca3d6ea3cb4cd101b3c279f8d"}, +] [package.dependencies] aiosignal = ">=1.1.2" @@ -16,15 +91,18 @@ multidict = ">=4.5,<7.0" yarl = ">=1.0,<2.0" [package.extras] -speedups = ["aiodns", "brotli", "cchardet"] +speedups = ["Brotli", "aiodns", "cchardet"] [[package]] name = "aiohttp-retry" version = "2.4.6" description = "Simple retry client for aiohttp" -category = "main" optional = false python-versions = "*" +files = [ + {file = "aiohttp_retry-2.4.6-py3-none-any.whl", hash = "sha256:4c478be0f54a0e1bbe8ee3128122ff42c26ed2e1e16c13ca601a087004ec8bb7"}, + {file = "aiohttp_retry-2.4.6.tar.gz", hash = "sha256:288c1a0d93b4b3ad92910c56a0326c6b055c7e1345027b26f173ac18594a97da"}, +] [package.dependencies] aiohttp = "*" @@ -33,9 +111,12 @@ aiohttp = "*" name = "aiosignal" version = "1.2.0" description = "aiosignal: a list of registered asynchronous callbacks" -category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "aiosignal-1.2.0-py3-none-any.whl", hash = "sha256:26e62109036cd181df6e6ad646f91f0dcfd05fe16d0cb924138ff2ab75d64e3a"}, + {file = "aiosignal-1.2.0.tar.gz", hash = "sha256:78ed67db6c7b7ced4f98e495e572106d5c432a93e1ddd1bf475e1dc05f5b7df2"}, +] [package.dependencies] frozenlist = ">=1.1.0" @@ -44,9 +125,12 @@ frozenlist = ">=1.1.0" name = "alembic" version = "1.6.5" description = "A database migration tool for SQLAlchemy." -category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "alembic-1.6.5-py2.py3-none-any.whl", hash = "sha256:e78be5b919f5bb184e3e0e2dd1ca986f2362e29a2bc933c446fe89f39dbe4e9c"}, + {file = "alembic-1.6.5.tar.gz", hash = "sha256:a21fedebb3fb8f6bbbba51a11114f08c78709377051384c9c5ead5705ee93a51"}, +] [package.dependencies] Mako = "*" @@ -58,21 +142,28 @@ SQLAlchemy = ">=1.3.0" name = "astroid" version = "2.7.2" description = "An abstract syntax tree for Python with inference support." -category = "dev" optional = false python-versions = "~=3.6" +files = [ + {file = "astroid-2.7.2-py3-none-any.whl", hash = "sha256:ecc50f9b3803ebf8ea19aa2c6df5622d8a5c31456a53c741d3be044d96ff0948"}, + {file = "astroid-2.7.2.tar.gz", hash = "sha256:b6c2d75cd7c2982d09e7d41d70213e863b3ba34d3bd4014e08f167cee966e99e"}, +] [package.dependencies] lazy-object-proxy = ">=1.4.0" +setuptools = ">=20.0" wrapt = ">=1.11,<1.13" [[package]] name = "async-timeout" version = "4.0.0" description = "Timeout context manager for asyncio programs" -category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "async-timeout-4.0.0.tar.gz", hash = "sha256:7d87a4e8adba8ededb52e579ce6bc8276985888913620c935094c2276fd83382"}, + {file = "async_timeout-4.0.0-py3-none-any.whl", hash = "sha256:f3303dddf6cafa748a92747ab6c2ecf60e0aeca769aee4c151adfce243a05d9b"}, +] [package.dependencies] typing-extensions = ">=3.6.5" @@ -81,62 +172,79 @@ typing-extensions = ">=3.6.5" name = "atomicwrites" version = "1.4.0" description = "Atomic file writes." -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"}, + {file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"}, +] [[package]] name = "attrs" version = "21.2.0" description = "Classes Without Boilerplate" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "attrs-21.2.0-py2.py3-none-any.whl", hash = "sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1"}, + {file = "attrs-21.2.0.tar.gz", hash = "sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb"}, +] [package.extras] -dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit"] -docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"] -tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface"] -tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins"] +dev = ["coverage[toml] (>=5.0.2)", "furo", "hypothesis", "mypy", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "six", "sphinx", "sphinx-notfound-page", "zope.interface"] +docs = ["furo", "sphinx", "sphinx-notfound-page", "zope.interface"] +tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "mypy", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "six", "zope.interface"] +tests-no-zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "mypy", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "six"] [[package]] name = "backports.entry-points-selectable" version = "1.1.0" description = "Compatibility shim providing selectable entry points for older implementations" -category = "dev" optional = false python-versions = ">=2.7" +files = [ + {file = "backports.entry_points_selectable-1.1.0-py2.py3-none-any.whl", hash = "sha256:a6d9a871cde5e15b4c4a53e3d43ba890cc6861ec1332c9c2428c92f977192acc"}, + {file = "backports.entry_points_selectable-1.1.0.tar.gz", hash = "sha256:988468260ec1c196dab6ae1149260e2f5472c9110334e5d51adcb77867361f6a"}, +] [package.extras] -docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"] -testing = ["pytest (>=4.6)", "pytest-flake8", "pytest-cov", "pytest-black (>=0.3.7)", "pytest-mypy", "pytest-checkdocs (>=2.4)", "pytest-enabler (>=1.0.1)"] +docs = ["jaraco.packaging (>=8.2)", "rst.linker (>=1.9)", "sphinx"] +testing = ["pytest (>=4.6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-flake8", "pytest-mypy"] [[package]] name = "base58" version = "2.1.0" description = "Base58 and Base58Check implementation." -category = "main" optional = false python-versions = ">=3.5" +files = [ + {file = "base58-2.1.0-py3-none-any.whl", hash = "sha256:8225891d501b68c843ffe30b86371f844a21c6ba00da76f52f9b998ba771fb48"}, + {file = "base58-2.1.0.tar.gz", hash = "sha256:171a547b4a3c61e1ae3807224a6f7aec75e364c4395e7562649d7335768001a2"}, +] [package.extras] -tests = ["pytest (>=4.6)", "pytest-flake8", "pytest-cov", "PyHamcrest (>=2.0.2)", "coveralls", "pytest-benchmark"] +tests = ["PyHamcrest (>=2.0.2)", "coveralls", "pytest (>=4.6)", "pytest-benchmark", "pytest-cov", "pytest-flake8"] [[package]] name = "bitarray" version = "1.2.2" description = "efficient arrays of booleans -- C extension" -category = "main" optional = false python-versions = "*" +files = [ + {file = "bitarray-1.2.2.tar.gz", hash = "sha256:27a69ffcee3b868abab3ce8b17c69e02b63e722d4d64ffd91d659f81e9984954"}, +] [[package]] name = "boto3" version = "1.20.48" description = "The AWS SDK for Python" -category = "main" optional = false python-versions = ">= 3.6" +files = [ + {file = "boto3-1.20.48-py3-none-any.whl", hash = "sha256:1c6301d9676cb18f2b0feddec393e52b9d5fa8147e6fe9a1665e39fd9739efc3"}, + {file = "boto3-1.20.48.tar.gz", hash = "sha256:6a8111492a571aeefbac2e4b6df5ce38bdbc16c7d8326f2a60a61c86032c49b0"}, +] [package.dependencies] botocore = ">=1.23.48,<1.24.0" @@ -150,9 +258,12 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] name = "botocore" version = "1.23.48" description = "Low-level, data-driven core of boto 3." -category = "main" optional = false python-versions = ">= 3.6" +files = [ + {file = "botocore-1.23.48-py3-none-any.whl", hash = "sha256:768acb9a2247155b974a4184b29be321242ef8f61827f4bb958e60f00e476e90"}, + {file = "botocore-1.23.48.tar.gz", hash = "sha256:8652c11ff05d11d6cea7096aca8df7f8eb87980469860036ff47e196e4625c96"}, +] [package.dependencies] jmespath = ">=0.7.1,<1.0.0" @@ -166,44 +277,59 @@ crt = ["awscrt (==0.12.5)"] name = "bottle" version = "0.12.19" description = "Fast and simple WSGI-framework for small web-applications." -category = "dev" optional = false python-versions = "*" +files = [ + {file = "bottle-0.12.19-py3-none-any.whl", hash = "sha256:f6b8a34fe9aa406f9813c02990db72ca69ce6a158b5b156d2c41f345016a723d"}, + {file = "bottle-0.12.19.tar.gz", hash = "sha256:a9d73ffcbc6a1345ca2d7949638db46349f5b2b77dac65d6494d45c23628da2c"}, +] [[package]] name = "certifi" version = "2021.5.30" description = "Python package for providing Mozilla's CA Bundle." -category = "main" optional = false python-versions = "*" +files = [ + {file = "certifi-2021.5.30-py2.py3-none-any.whl", hash = "sha256:50b1e4f8446b06f41be7dd6338db18e0990601dce795c2b1686458aa7e8fa7d8"}, + {file = "certifi-2021.5.30.tar.gz", hash = "sha256:2bbf76fd432960138b3ef6dda3dde0544f27cbf8546c458e60baf371917ba9ee"}, +] [[package]] name = "cfgv" version = "3.3.1" description = "Validate configuration and produce human readable error messages." -category = "dev" optional = false python-versions = ">=3.6.1" +files = [ + {file = "cfgv-3.3.1-py2.py3-none-any.whl", hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426"}, + {file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"}, +] [[package]] name = "charset-normalizer" version = "2.0.4" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -category = "main" optional = false python-versions = ">=3.5.0" +files = [ + {file = "charset-normalizer-2.0.4.tar.gz", hash = "sha256:f23667ebe1084be45f6ae0538e4a5a865206544097e4e8bbcacf42cd02a348f3"}, + {file = "charset_normalizer-2.0.4-py3-none-any.whl", hash = "sha256:0c8911edd15d19223366a194a513099a302055a962bca2cec0f54b8b63175d8b"}, +] [package.extras] -unicode_backport = ["unicodedata2"] +unicode-backport = ["unicodedata2"] [[package]] name = "click" version = "8.0.1" description = "Composable command line interface toolkit" -category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "click-8.0.1-py3-none-any.whl", hash = "sha256:fba402a4a47334742d782209a7c79bc448911afe1149d07bdabdf480b3e2f4b6"}, + {file = "click-8.0.1.tar.gz", hash = "sha256:8c04c11192119b1ef78ea049e0a6f0463e4c48ef00a30160c704337586f3ad7a"}, +] [package.dependencies] colorama = {version = "*", markers = "platform_system == \"Windows\""} @@ -212,17 +338,73 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "colorama" version = "0.4.4" description = "Cross-platform colored terminal text." -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"}, + {file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"}, +] [[package]] name = "coverage" version = "5.5" description = "Code coverage measurement for Python" -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" +files = [ + {file = "coverage-5.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:b6d534e4b2ab35c9f93f46229363e17f63c53ad01330df9f2d6bd1187e5eaacf"}, + {file = "coverage-5.5-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:b7895207b4c843c76a25ab8c1e866261bcfe27bfaa20c192de5190121770672b"}, + {file = "coverage-5.5-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:c2723d347ab06e7ddad1a58b2a821218239249a9e4365eaff6649d31180c1669"}, + {file = "coverage-5.5-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:900fbf7759501bc7807fd6638c947d7a831fc9fdf742dc10f02956ff7220fa90"}, + {file = "coverage-5.5-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:004d1880bed2d97151facef49f08e255a20ceb6f9432df75f4eef018fdd5a78c"}, + {file = "coverage-5.5-cp27-cp27m-win32.whl", hash = "sha256:06191eb60f8d8a5bc046f3799f8a07a2d7aefb9504b0209aff0b47298333302a"}, + {file = "coverage-5.5-cp27-cp27m-win_amd64.whl", hash = "sha256:7501140f755b725495941b43347ba8a2777407fc7f250d4f5a7d2a1050ba8e82"}, + {file = "coverage-5.5-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:372da284cfd642d8e08ef606917846fa2ee350f64994bebfbd3afb0040436905"}, + {file = "coverage-5.5-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:8963a499849a1fc54b35b1c9f162f4108017b2e6db2c46c1bed93a72262ed083"}, + {file = "coverage-5.5-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:869a64f53488f40fa5b5b9dcb9e9b2962a66a87dab37790f3fcfb5144b996ef5"}, + {file = "coverage-5.5-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:4a7697d8cb0f27399b0e393c0b90f0f1e40c82023ea4d45d22bce7032a5d7b81"}, + {file = "coverage-5.5-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:8d0a0725ad7c1a0bcd8d1b437e191107d457e2ec1084b9f190630a4fb1af78e6"}, + {file = "coverage-5.5-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:51cb9476a3987c8967ebab3f0fe144819781fca264f57f89760037a2ea191cb0"}, + {file = "coverage-5.5-cp310-cp310-win_amd64.whl", hash = "sha256:c0891a6a97b09c1f3e073a890514d5012eb256845c451bd48f7968ef939bf4ae"}, + {file = "coverage-5.5-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:3487286bc29a5aa4b93a072e9592f22254291ce96a9fbc5251f566b6b7343cdb"}, + {file = "coverage-5.5-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:deee1077aae10d8fa88cb02c845cfba9b62c55e1183f52f6ae6a2df6a2187160"}, + {file = "coverage-5.5-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:f11642dddbb0253cc8853254301b51390ba0081750a8ac03f20ea8103f0c56b6"}, + {file = "coverage-5.5-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:6c90e11318f0d3c436a42409f2749ee1a115cd8b067d7f14c148f1ce5574d701"}, + {file = "coverage-5.5-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:30c77c1dc9f253283e34c27935fded5015f7d1abe83bc7821680ac444eaf7793"}, + {file = "coverage-5.5-cp35-cp35m-win32.whl", hash = "sha256:9a1ef3b66e38ef8618ce5fdc7bea3d9f45f3624e2a66295eea5e57966c85909e"}, + {file = "coverage-5.5-cp35-cp35m-win_amd64.whl", hash = "sha256:972c85d205b51e30e59525694670de6a8a89691186012535f9d7dbaa230e42c3"}, + {file = "coverage-5.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:af0e781009aaf59e25c5a678122391cb0f345ac0ec272c7961dc5455e1c40066"}, + {file = "coverage-5.5-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:74d881fc777ebb11c63736622b60cb9e4aee5cace591ce274fb69e582a12a61a"}, + {file = "coverage-5.5-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:92b017ce34b68a7d67bd6d117e6d443a9bf63a2ecf8567bb3d8c6c7bc5014465"}, + {file = "coverage-5.5-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:d636598c8305e1f90b439dbf4f66437de4a5e3c31fdf47ad29542478c8508bbb"}, + {file = "coverage-5.5-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:41179b8a845742d1eb60449bdb2992196e211341818565abded11cfa90efb821"}, + {file = "coverage-5.5-cp36-cp36m-win32.whl", hash = "sha256:040af6c32813fa3eae5305d53f18875bedd079960822ef8ec067a66dd8afcd45"}, + {file = "coverage-5.5-cp36-cp36m-win_amd64.whl", hash = "sha256:5fec2d43a2cc6965edc0bb9e83e1e4b557f76f843a77a2496cbe719583ce8184"}, + {file = "coverage-5.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:18ba8bbede96a2c3dde7b868de9dcbd55670690af0988713f0603f037848418a"}, + {file = "coverage-5.5-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:2910f4d36a6a9b4214bb7038d537f015346f413a975d57ca6b43bf23d6563b53"}, + {file = "coverage-5.5-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:f0b278ce10936db1a37e6954e15a3730bea96a0997c26d7fee88e6c396c2086d"}, + {file = "coverage-5.5-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:796c9c3c79747146ebd278dbe1e5c5c05dd6b10cc3bcb8389dfdf844f3ead638"}, + {file = "coverage-5.5-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:53194af30d5bad77fcba80e23a1441c71abfb3e01192034f8246e0d8f99528f3"}, + {file = "coverage-5.5-cp37-cp37m-win32.whl", hash = "sha256:184a47bbe0aa6400ed2d41d8e9ed868b8205046518c52464fde713ea06e3a74a"}, + {file = "coverage-5.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2949cad1c5208b8298d5686d5a85b66aae46d73eec2c3e08c817dd3513e5848a"}, + {file = "coverage-5.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:217658ec7187497e3f3ebd901afdca1af062b42cfe3e0dafea4cced3983739f6"}, + {file = "coverage-5.5-cp38-cp38-manylinux1_i686.whl", hash = "sha256:1aa846f56c3d49205c952d8318e76ccc2ae23303351d9270ab220004c580cfe2"}, + {file = "coverage-5.5-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:24d4a7de75446be83244eabbff746d66b9240ae020ced65d060815fac3423759"}, + {file = "coverage-5.5-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:d1f8bf7b90ba55699b3a5e44930e93ff0189aa27186e96071fac7dd0d06a1873"}, + {file = "coverage-5.5-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:970284a88b99673ccb2e4e334cfb38a10aab7cd44f7457564d11898a74b62d0a"}, + {file = "coverage-5.5-cp38-cp38-win32.whl", hash = "sha256:01d84219b5cdbfc8122223b39a954820929497a1cb1422824bb86b07b74594b6"}, + {file = "coverage-5.5-cp38-cp38-win_amd64.whl", hash = "sha256:2e0d881ad471768bf6e6c2bf905d183543f10098e3b3640fc029509530091502"}, + {file = "coverage-5.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d1f9ce122f83b2305592c11d64f181b87153fc2c2bbd3bb4a3dde8303cfb1a6b"}, + {file = "coverage-5.5-cp39-cp39-manylinux1_i686.whl", hash = "sha256:13c4ee887eca0f4c5a247b75398d4114c37882658300e153113dafb1d76de529"}, + {file = "coverage-5.5-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:52596d3d0e8bdf3af43db3e9ba8dcdaac724ba7b5ca3f6358529d56f7a166f8b"}, + {file = "coverage-5.5-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:2cafbbb3af0733db200c9b5f798d18953b1a304d3f86a938367de1567f4b5bff"}, + {file = "coverage-5.5-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:44d654437b8ddd9eee7d1eaee28b7219bec228520ff809af170488fd2fed3e2b"}, + {file = "coverage-5.5-cp39-cp39-win32.whl", hash = "sha256:d314ed732c25d29775e84a960c3c60808b682c08d86602ec2c3008e1202e3bb6"}, + {file = "coverage-5.5-cp39-cp39-win_amd64.whl", hash = "sha256:13034c4409db851670bc9acd836243aeee299949bd5673e11844befcb0149f03"}, + {file = "coverage-5.5-pp36-none-any.whl", hash = "sha256:f030f8873312a16414c0d8e1a1ddff2d3235655a2174e3648b4fa66b3f2f1079"}, + {file = "coverage-5.5-pp37-none-any.whl", hash = "sha256:2a3859cb82dcbda1cfd3e6f71c27081d18aa251d20a17d87d26d4cd216fb0af4"}, + {file = "coverage-5.5.tar.gz", hash = "sha256:ebe78fe9a0e874362175b02371bdfbee64d8edc42a044253ddf4ee7d3c15212c"}, +] [package.extras] toml = ["toml"] @@ -231,9 +413,11 @@ toml = ["toml"] name = "cprofilev" version = "1.0.7" description = "An easier way to use cProfile" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "CProfileV-1.0.7.tar.gz", hash = "sha256:8791748b1f3d3468c2c927c3fd5f905080b84d8f2d217ca764b7d9d7a1fb9a77"}, +] [package.dependencies] bottle = "*" @@ -242,9 +426,31 @@ bottle = "*" name = "cytoolz" version = "0.11.0" description = "Cython implementation of Toolz: High performance functional utilities" -category = "main" optional = false python-versions = "*" +files = [ + {file = "cytoolz-0.11.0-cp35-cp35m-macosx_10_6_x86_64.whl", hash = "sha256:c50051c02b23823209d6b0e8f7b2b37371312da50ca78165871dc6fed7bd37df"}, + {file = "cytoolz-0.11.0-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:140eaadcd86216d4a185db3a37396ee80dd2edc6e490ba37a3d7c1b17a124078"}, + {file = "cytoolz-0.11.0-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:c183237f4f0bac53238588e3567c0287130dd9ed6b6b880579a5cca960a89f54"}, + {file = "cytoolz-0.11.0-cp35-cp35m-manylinux2014_x86_64.whl", hash = "sha256:6cba0572e3ad187e0ea0ddd20bb9c6aad794c23d997ed2b2aa2bbd109fe61f9f"}, + {file = "cytoolz-0.11.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:c7ed490f7f5c069a5082b73803ff4595f12ed0eb6b52ffa5ffe15d532acb71ed"}, + {file = "cytoolz-0.11.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2e7cbfec2681e8acfd0013e9581905f251455d411457a6f475ba1870d1685fc"}, + {file = "cytoolz-0.11.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:596a40ce920dd6cdab42d3dec5a4e8bb0bf258bb79426a4ed7658a27c214941b"}, + {file = "cytoolz-0.11.0-cp36-cp36m-win_amd64.whl", hash = "sha256:477f71b8b2c6fdd97aa3a421ba0cfd04b22ffed1b22dda3fea06db2756ee7097"}, + {file = "cytoolz-0.11.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5692a100d657f9bc2fede44ff41649c0c577f251bc0bd06c699c177235a0f81c"}, + {file = "cytoolz-0.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8893b54f8d8d1bbc5a22dc4989d9b3eb269dd5ee1247993158e1f9ae0fbb9c88"}, + {file = "cytoolz-0.11.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:84519cf4f63308b0ce39162b7a341367338953cd9fbf7edd335cbc44dcd321e9"}, + {file = "cytoolz-0.11.0-cp37-cp37m-win_amd64.whl", hash = "sha256:2f9963114029e78ddb626140cbb15b79ad0fd1563484b73fb29403a3d5bf3ed4"}, + {file = "cytoolz-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c65635ad93bac9002e36d42603bd87514e8ea932910158054b409ceee05ff4fe"}, + {file = "cytoolz-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a6e95de2fe891075f71edb0a56701eeaae04d43f44470c24d45e89f1ea801e85"}, + {file = "cytoolz-0.11.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b4a3eb96eda360b14fa6c7d2ce6faf684319c051f9ea620b009cb28a2878ed32"}, + {file = "cytoolz-0.11.0-cp38-cp38-win_amd64.whl", hash = "sha256:d0fdf0186201f882274db95fc5644ef34bfb0593d9db23b7343b0e6c8c000a0a"}, + {file = "cytoolz-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f85a8e164ebbe75e77a9c8a0b91bd2a3ceb5beeb0f1c180affe75318a41df98c"}, + {file = "cytoolz-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1b6bb4dee54fe62306d7330639f57a0dbb612520516b97b1c9dea5bc506634"}, + {file = "cytoolz-0.11.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3159da30eaf214746215293fdba19b6b54af59b3b2ba979eb9e184c6c7a854d2"}, + {file = "cytoolz-0.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:b61f23e9fa7cd5a87a503ab659f816858e2235926cd95b0c7e37403530d4a2d6"}, + {file = "cytoolz-0.11.0.tar.gz", hash = "sha256:c64f3590c3eb40e1548f0d3c6b2ccde70493d0b8dc6cc7f9f3fec0bb3dcd4222"}, +] [package.dependencies] toolz = ">=0.8.0" @@ -256,39 +462,48 @@ cython = ["cython"] name = "deprecated" version = "1.2.13" description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "Deprecated-1.2.13-py2.py3-none-any.whl", hash = "sha256:64756e3e14c8c5eea9795d93c524551432a0be75629f8f29e67ab8caf076c76d"}, + {file = "Deprecated-1.2.13.tar.gz", hash = "sha256:43ac5335da90c31c24ba028af536a91d41d53f9e6901ddb021bcc572ce44e38d"}, +] [package.dependencies] wrapt = ">=1.10,<2" [package.extras] -dev = ["tox", "bump2version (<1)", "sphinx (<2)", "importlib-metadata (<3)", "importlib-resources (<4)", "configparser (<5)", "sphinxcontrib-websupport (<2)", "zipp (<2)", "PyTest (<5)", "PyTest-Cov (<2.6)", "pytest", "pytest-cov"] +dev = ["PyTest", "PyTest (<5)", "PyTest-Cov", "PyTest-Cov (<2.6)", "bump2version (<1)", "configparser (<5)", "importlib-metadata (<3)", "importlib-resources (<4)", "sphinx (<2)", "sphinxcontrib-websupport (<2)", "tox", "zipp (<2)"] [[package]] name = "distlib" version = "0.3.2" description = "Distribution utilities" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "distlib-0.3.2-py2.py3-none-any.whl", hash = "sha256:23e223426b28491b1ced97dc3bbe183027419dfc7982b4fa2f05d5f3ff10711c"}, + {file = "distlib-0.3.2.zip", hash = "sha256:106fef6dc37dd8c0e2c0a60d3fca3e77460a48907f335fa28420463a6f799736"}, +] [[package]] name = "dramatiq" version = "1.12.3" description = "Background Processing for Python 3." -category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "dramatiq-1.12.3-py3-none-any.whl", hash = "sha256:eccb0f54d44ebd9e2c79e00d67b808397589a1a621ba7c5fd58df5fb6204a0a8"}, + {file = "dramatiq-1.12.3.tar.gz", hash = "sha256:380bd77b6b19d642f417b642935049ff71ddf4b4e57d821e4f55b92541430f21"}, +] [package.dependencies] prometheus-client = ">=0.2" redis = {version = ">=2.0,<5.0", optional = true, markers = "extra == \"redis\""} [package.extras] -all = ["gevent (>=1.1)", "redis (>=2.0,<5.0)", "watchdog", "pika (>=1.0,<2.0)", "watchdog-gevent", "pylibmc (>=1.5,<2.0)"] -dev = ["gevent (>=1.1)", "redis (>=2.0,<5.0)", "watchdog", "pika (>=1.0,<2.0)", "watchdog-gevent", "pylibmc (>=1.5,<2.0)", "alabaster", "sphinx (<1.8)", "sphinxcontrib-napoleon", "flake8", "flake8-bugbear", "flake8-quotes", "isort", "bumpversion", "hiredis", "twine", "wheel", "pytest", "pytest-benchmark", "pytest-cov", "tox"] +all = ["gevent (>=1.1)", "pika (>=1.0,<2.0)", "pylibmc (>=1.5,<2.0)", "redis (>=2.0,<5.0)", "watchdog", "watchdog-gevent"] +dev = ["alabaster", "bumpversion", "flake8", "flake8-bugbear", "flake8-quotes", "gevent (>=1.1)", "hiredis", "isort", "pika (>=1.0,<2.0)", "pylibmc (>=1.5,<2.0)", "pytest", "pytest-benchmark[histogram]", "pytest-cov", "redis (>=2.0,<5.0)", "sphinx (<1.8)", "sphinxcontrib-napoleon", "tox", "twine", "watchdog", "watchdog-gevent", "wheel"] gevent = ["gevent (>=1.1)"] memcached = ["pylibmc (>=1.5,<2.0)"] rabbitmq = ["pika (>=1.0,<2.0)"] @@ -299,9 +514,12 @@ watch = ["watchdog", "watchdog-gevent"] name = "eth-abi" version = "2.1.1" description = "eth_abi: Python utilities for working with Ethereum ABI definitions, especially encoding and decoding" -category = "main" optional = false python-versions = ">=3.6, <4" +files = [ + {file = "eth_abi-2.1.1-py3-none-any.whl", hash = "sha256:78df5d2758247a8f0766a7cfcea4575bcfe568c34a33e6d05a72c328a9040444"}, + {file = "eth_abi-2.1.1.tar.gz", hash = "sha256:4bb1d87bb6605823379b07f6c02c8af45df01a27cc85bd6abb7cf1446ce7d188"}, +] [package.dependencies] eth-typing = ">=2.0.0,<3.0.0" @@ -309,19 +527,22 @@ eth-utils = ">=1.2.0,<2.0.0" parsimonious = ">=0.8.0,<0.9.0" [package.extras] -dev = ["bumpversion (>=0.5.3,<1)", "pytest-watch (>=4.1.0,<5)", "wheel", "twine", "ipython", "pytest (==4.4.1)", "pytest-pythonpath (>=0.7.1)", "pytest-xdist (==1.22.3)", "tox (>=2.9.1,<3)", "eth-hash", "hypothesis (>=3.6.1,<4)", "flake8 (==3.4.1)", "isort (>=4.2.15,<5)", "mypy (==0.701)", "pydocstyle (>=3.0.0,<4)", "Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9)", "towncrier (>=19.2.0,<20)"] +dev = ["Sphinx (>=1.6.5,<2)", "bumpversion (>=0.5.3,<1)", "eth-hash[pycryptodome]", "flake8 (==3.4.1)", "hypothesis (>=3.6.1,<4)", "ipython", "isort (>=4.2.15,<5)", "mypy (==0.701)", "pydocstyle (>=3.0.0,<4)", "pytest (==4.4.1)", "pytest-pythonpath (>=0.7.1)", "pytest-watch (>=4.1.0,<5)", "pytest-xdist (==1.22.3)", "sphinx-rtd-theme (>=0.1.9)", "towncrier (>=19.2.0,<20)", "tox (>=2.9.1,<3)", "twine", "wheel"] doc = ["Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9)", "towncrier (>=19.2.0,<20)"] lint = ["flake8 (==3.4.1)", "isort (>=4.2.15,<5)", "mypy (==0.701)", "pydocstyle (>=3.0.0,<4)"] -test = ["pytest (==4.4.1)", "pytest-pythonpath (>=0.7.1)", "pytest-xdist (==1.22.3)", "tox (>=2.9.1,<3)", "eth-hash", "hypothesis (>=3.6.1,<4)"] +test = ["eth-hash[pycryptodome]", "hypothesis (>=3.6.1,<4)", "pytest (==4.4.1)", "pytest-pythonpath (>=0.7.1)", "pytest-xdist (==1.22.3)", "tox (>=2.9.1,<3)"] tools = ["hypothesis (>=3.6.1,<4)"] [[package]] name = "eth-account" version = "0.5.5" description = "eth-account: Sign Ethereum transactions and messages with local private keys" -category = "main" optional = false python-versions = ">=3.6, <4" +files = [ + {file = "eth-account-0.5.5.tar.gz", hash = "sha256:60396fedde2546bb23d3b1a4f28a959387738c9906090d2fdd01b9e663eaa829"}, + {file = "eth_account-0.5.5-py3-none-any.whl", hash = "sha256:e579a898a976ad3436e328036a0ac4bb36573561dd0773f717dba6a72c137a2c"}, +] [package.dependencies] bitarray = ">=1.2.1,<1.3.0" @@ -334,7 +555,7 @@ hexbytes = ">=0.1.0,<1" rlp = ">=1.0.0,<3" [package.extras] -dev = ["bumpversion (>=0.5.3,<1)", "pytest-watch (>=4.1.0,<5)", "wheel", "twine", "ipython", "hypothesis (>=4.18.0,<5)", "pytest (==5.4.1)", "pytest-xdist", "tox (==3.14.6)", "flake8 (==3.7.9)", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=5.0.0,<6)", "Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9,<1)", "towncrier (>=19.2.0,<20)"] +dev = ["Sphinx (>=1.6.5,<2)", "bumpversion (>=0.5.3,<1)", "flake8 (==3.7.9)", "hypothesis (>=4.18.0,<5)", "ipython", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=5.0.0,<6)", "pytest (==5.4.1)", "pytest-watch (>=4.1.0,<5)", "pytest-xdist", "sphinx-rtd-theme (>=0.1.9,<1)", "towncrier (>=19.2.0,<20)", "tox (==3.14.6)", "twine", "wheel"] doc = ["Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9,<1)", "towncrier (>=19.2.0,<20)"] lint = ["flake8 (==3.7.9)", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=5.0.0,<6)"] test = ["hypothesis (>=4.18.0,<5)", "pytest (==5.4.1)", "pytest-xdist", "tox (==3.14.6)"] @@ -343,16 +564,19 @@ test = ["hypothesis (>=4.18.0,<5)", "pytest (==5.4.1)", "pytest-xdist", "tox (== name = "eth-hash" version = "0.3.1" description = "eth-hash: The Ethereum hashing function, keccak256, sometimes (erroneously) called sha3" -category = "main" optional = false python-versions = ">=3.5, <4" +files = [ + {file = "eth-hash-0.3.1.tar.gz", hash = "sha256:aee46d9c43b98ac6d4ddf957cf75d4d0a5174ee814cc6b53dd6134dcedb459bf"}, + {file = "eth_hash-0.3.1-py3-none-any.whl", hash = "sha256:a3bc7f1c12eb086525999de7f83b9e7ad39740b31f0f4eccb17377ed70de24dd"}, +] [package.dependencies] eth-utils = ">=1,<2" pycryptodome = {version = ">=3.6.6,<4", optional = true, markers = "extra == \"pycryptodome\""} [package.extras] -dev = ["bumpversion (>=0.5.3,<1)", "pytest-watch (>=4.1.0,<5)", "wheel", "twine", "ipython", "pytest (==5.4.1)", "pytest-xdist", "tox (==3.14.6)", "flake8 (==3.7.9)", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=5.0.0,<6)", "Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9,<1)", "towncrier (>=19.2.0,<20)"] +dev = ["Sphinx (>=1.6.5,<2)", "bumpversion (>=0.5.3,<1)", "flake8 (==3.7.9)", "ipython", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=5.0.0,<6)", "pytest (==5.4.1)", "pytest-watch (>=4.1.0,<5)", "pytest-xdist", "sphinx-rtd-theme (>=0.1.9,<1)", "towncrier (>=19.2.0,<20)", "tox (==3.14.6)", "twine", "wheel"] doc = ["Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9,<1)", "towncrier (>=19.2.0,<20)"] lint = ["flake8 (==3.7.9)", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=5.0.0,<6)"] pycryptodome = ["pycryptodome (>=3.6.6,<4)"] @@ -363,9 +587,12 @@ test = ["pytest (==5.4.1)", "pytest-xdist", "tox (==3.14.6)"] name = "eth-keyfile" version = "0.5.1" description = "A library for handling the encrypted keyfiles used to store ethereum private keys." -category = "main" optional = false python-versions = "*" +files = [ + {file = "eth-keyfile-0.5.1.tar.gz", hash = "sha256:939540efb503380bc30d926833e6a12b22c6750de80feef3720d79e5a79de47d"}, + {file = "eth_keyfile-0.5.1-py3-none-any.whl", hash = "sha256:70d734af17efdf929a90bb95375f43522be4ed80c3b9e0a8bca575fb11cd1159"}, +] [package.dependencies] cytoolz = ">=0.9.0,<1.0.0" @@ -377,9 +604,12 @@ pycryptodome = ">=3.4.7,<4.0.0" name = "eth-keys" version = "0.3.3" description = "Common API for Ethereum key operations." -category = "main" optional = false python-versions = "*" +files = [ + {file = "eth-keys-0.3.3.tar.gz", hash = "sha256:a9a1e83e443bd369265b1a1b66dc30f6841bdbb3577ecd042e037b7b405b6cb0"}, + {file = "eth_keys-0.3.3-py3-none-any.whl", hash = "sha256:412dd5c9732b8e92af40c9c77597f4661c57eba3897aaa55e527af56a8c5ab47"}, +] [package.dependencies] eth-typing = ">=2.2.1,<3.0.0" @@ -387,18 +617,21 @@ eth-utils = ">=1.3.0,<2.0.0" [package.extras] coincurve = ["coincurve (>=7.0.0,<13.0.0)"] -dev = ["tox (==2.7.0)", "bumpversion (==0.5.3)", "twine", "eth-utils (>=1.3.0,<2.0.0)", "eth-typing (>=2.2.1,<3.0.0)", "flake8 (==3.0.4)", "mypy (==0.701)", "asn1tools (>=0.146.2,<0.147)", "pyasn1 (>=0.4.5,<0.5)", "pytest (==3.2.2)", "hypothesis (>=4.56.1,<5.0.0)", "eth-hash", "eth-hash"] -eth-keys = ["eth-utils (>=1.3.0,<2.0.0)", "eth-typing (>=2.2.1,<3.0.0)"] +dev = ["asn1tools (>=0.146.2,<0.147)", "bumpversion (==0.5.3)", "eth-hash[pycryptodome]", "eth-hash[pysha3]", "eth-typing (>=2.2.1,<3.0.0)", "eth-utils (>=1.3.0,<2.0.0)", "flake8 (==3.0.4)", "hypothesis (>=4.56.1,<5.0.0)", "mypy (==0.701)", "pyasn1 (>=0.4.5,<0.5)", "pytest (==3.2.2)", "tox (==2.7.0)", "twine"] +eth-keys = ["eth-typing (>=2.2.1,<3.0.0)", "eth-utils (>=1.3.0,<2.0.0)"] lint = ["flake8 (==3.0.4)", "mypy (==0.701)"] -test = ["asn1tools (>=0.146.2,<0.147)", "pyasn1 (>=0.4.5,<0.5)", "pytest (==3.2.2)", "hypothesis (>=4.56.1,<5.0.0)", "eth-hash", "eth-hash"] +test = ["asn1tools (>=0.146.2,<0.147)", "eth-hash[pycryptodome]", "eth-hash[pysha3]", "hypothesis (>=4.56.1,<5.0.0)", "pyasn1 (>=0.4.5,<0.5)", "pytest (==3.2.2)"] [[package]] name = "eth-rlp" version = "0.2.1" description = "eth-rlp: RLP definitions for common Ethereum objects in Python" -category = "main" optional = false python-versions = ">=3.6, <4" +files = [ + {file = "eth-rlp-0.2.1.tar.gz", hash = "sha256:f016f980b0ed42ee7650ba6e4e4d3c4e9aa06d8b9c6825a36d3afe5aa0187a8b"}, + {file = "eth_rlp-0.2.1-py3-none-any.whl", hash = "sha256:cc389ef8d7b6f76a98f90bcdbff1b8684b3a78f53d47e871191b50d4d6aee5a1"}, +] [package.dependencies] eth-utils = ">=1.0.1,<2" @@ -406,21 +639,24 @@ hexbytes = ">=0.1.0,<1" rlp = ">=0.6.0,<3" [package.extras] -dev = ["Sphinx (>=1.6.5,<2)", "bumpversion (>=0.5.3,<1)", "eth-hash", "flake8 (==3.7.9)", "ipython", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=3.0.0,<4)", "pytest-watch (>=4.1.0,<5)", "pytest-xdist", "pytest (==5.4.1)", "sphinx-rtd-theme (>=0.1.9)", "towncrier (>=19.2.0,<20)", "tox (==3.14.6)", "twine", "wheel"] +dev = ["Sphinx (>=1.6.5,<2)", "bumpversion (>=0.5.3,<1)", "eth-hash[pycryptodome]", "flake8 (==3.7.9)", "ipython", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=3.0.0,<4)", "pytest (==5.4.1)", "pytest-watch (>=4.1.0,<5)", "pytest-xdist", "sphinx-rtd-theme (>=0.1.9)", "towncrier (>=19.2.0,<20)", "tox (==3.14.6)", "twine", "wheel"] doc = ["Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9)", "towncrier (>=19.2.0,<20)"] lint = ["flake8 (==3.7.9)", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=3.0.0,<4)"] -test = ["eth-hash", "pytest-xdist", "pytest (==5.4.1)", "tox (==3.14.6)"] +test = ["eth-hash[pycryptodome]", "pytest (==5.4.1)", "pytest-xdist", "tox (==3.14.6)"] [[package]] name = "eth-typing" version = "2.2.2" description = "eth-typing: Common type annotations for ethereum python packages" -category = "main" optional = false python-versions = ">=3.5, <4" +files = [ + {file = "eth-typing-2.2.2.tar.gz", hash = "sha256:97ba0f83da7cf1d3668f6ed54983f21168076c552762bf5e06d4a20921877f3f"}, + {file = "eth_typing-2.2.2-py3-none-any.whl", hash = "sha256:1140c7592321dbf10d6663c46f7e43eb0e6410b011b03f14b3df3eb1f76aa9bb"}, +] [package.extras] -dev = ["bumpversion (>=0.5.3,<1)", "pytest-watch (>=4.1.0,<5)", "wheel", "twine", "ipython", "pytest (>=4.4,<4.5)", "pytest-xdist", "tox (>=2.9.1,<3)", "flake8 (==3.8.3)", "isort (>=4.2.15,<5)", "mypy (==0.782)", "pydocstyle (>=3.0.0,<4)", "Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9)"] +dev = ["Sphinx (>=1.6.5,<2)", "bumpversion (>=0.5.3,<1)", "flake8 (==3.8.3)", "ipython", "isort (>=4.2.15,<5)", "mypy (==0.782)", "pydocstyle (>=3.0.0,<4)", "pytest (>=4.4,<4.5)", "pytest-watch (>=4.1.0,<5)", "pytest-xdist", "sphinx-rtd-theme (>=0.1.9)", "tox (>=2.9.1,<3)", "twine", "wheel"] doc = ["Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9)"] lint = ["flake8 (==3.8.3)", "isort (>=4.2.15,<5)", "mypy (==0.782)", "pydocstyle (>=3.0.0,<4)"] test = ["pytest (>=4.4,<4.5)", "pytest-xdist", "tox (>=2.9.1,<3)"] @@ -429,9 +665,12 @@ test = ["pytest (>=4.4,<4.5)", "pytest-xdist", "tox (>=2.9.1,<3)"] name = "eth-utils" version = "1.10.0" description = "eth-utils: Common utility functions for python code that interacts with Ethereum" -category = "main" optional = false python-versions = ">=3.5,!=3.5.2,<4" +files = [ + {file = "eth-utils-1.10.0.tar.gz", hash = "sha256:bf82762a46978714190b0370265a7148c954d3f0adaa31c6f085ea375e4c61af"}, + {file = "eth_utils-1.10.0-py3-none-any.whl", hash = "sha256:74240a8c6f652d085ed3c85f5f1654203d2f10ff9062f83b3bad0a12ff321c7a"}, +] [package.dependencies] cytoolz = {version = ">=0.10.1,<1.0.0", markers = "implementation_name == \"cpython\""} @@ -440,7 +679,7 @@ eth-typing = ">=2.2.1,<3.0.0" toolz = {version = ">0.8.2,<1", markers = "implementation_name == \"pypy\""} [package.extras] -dev = ["bumpversion (>=0.5.3,<1)", "pytest-watch (>=4.1.0,<5)", "wheel (>=0.30.0,<1.0.0)", "twine (>=1.13,<2)", "ipython", "hypothesis (>=4.43.0,<5.0.0)", "pytest (==5.4.1)", "pytest-xdist", "tox (==3.14.6)", "black (>=18.6b4,<19)", "flake8 (==3.7.9)", "isort (>=4.2.15,<5)", "mypy (==0.720)", "pydocstyle (>=5.0.0,<6)", "pytest (>=3.4.1,<4.0.0)", "Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9,<2)", "towncrier (>=19.2.0,<20)"] +dev = ["Sphinx (>=1.6.5,<2)", "black (>=18.6b4,<19)", "bumpversion (>=0.5.3,<1)", "flake8 (==3.7.9)", "hypothesis (>=4.43.0,<5.0.0)", "ipython", "isort (>=4.2.15,<5)", "mypy (==0.720)", "pydocstyle (>=5.0.0,<6)", "pytest (==5.4.1)", "pytest (>=3.4.1,<4.0.0)", "pytest-watch (>=4.1.0,<5)", "pytest-xdist", "sphinx-rtd-theme (>=0.1.9,<2)", "towncrier (>=19.2.0,<20)", "tox (==3.14.6)", "twine (>=1.13,<2)", "wheel (>=0.30.0,<1.0.0)"] doc = ["Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9,<2)", "towncrier (>=19.2.0,<20)"] lint = ["black (>=18.6b4,<19)", "flake8 (==3.7.9)", "isort (>=4.2.15,<5)", "mypy (==0.720)", "pydocstyle (>=5.0.0,<6)", "pytest (>=3.4.1,<4.0.0)"] test = ["hypothesis (>=4.43.0,<5.0.0)", "pytest (==5.4.1)", "pytest-xdist", "tox (==3.14.6)"] @@ -449,1026 +688,20 @@ test = ["hypothesis (>=4.43.0,<5.0.0)", "pytest (==5.4.1)", "pytest-xdist", "tox name = "filelock" version = "3.0.12" description = "A platform independent file lock." -category = "dev" optional = false python-versions = "*" +files = [ + {file = "filelock-3.0.12-py3-none-any.whl", hash = "sha256:929b7d63ec5b7d6b71b0fa5ac14e030b3f70b75747cef1b10da9b879fef15836"}, + {file = "filelock-3.0.12.tar.gz", hash = "sha256:18d82244ee114f543149c66a6e0c14e9c4f8a1044b5cdaadd0f82159d6a6ff59"}, +] [[package]] name = "frozenlist" version = "1.2.0" description = "A list-like structure which implements collections.abc.MutableSequence" -category = "main" optional = false python-versions = ">=3.6" - -[[package]] -name = "gprof2dot" -version = "2021.2.21" -description = "Generate a dot graph from the output of several profilers." -category = "dev" -optional = false -python-versions = "*" - -[[package]] -name = "greenlet" -version = "1.1.1" -description = "Lightweight in-process concurrent programming" -category = "dev" -optional = false -python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*" - -[package.extras] -docs = ["sphinx"] - -[[package]] -name = "hexbytes" -version = "0.2.2" -description = "hexbytes: Python `bytes` subclass that decodes hex, with a readable console output" -category = "main" -optional = false -python-versions = ">=3.6, <4" - -[package.extras] -dev = ["Sphinx (>=1.6.5,<2)", "bumpversion (>=0.5.3,<1)", "eth-utils (>=1.0.1,<2)", "flake8 (==3.7.9)", "hypothesis (>=3.44.24,<4)", "ipython", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=5.0.0,<6)", "pytest-watch (>=4.1.0,<5)", "pytest-xdist", "pytest (==5.4.1)", "sphinx-rtd-theme (>=0.1.9,<1)", "towncrier (>=19.2.0,<20)", "tox (==3.14.6)", "twine", "wheel"] -doc = ["Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9,<1)", "towncrier (>=19.2.0,<20)"] -lint = ["flake8 (==3.7.9)", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=5.0.0,<6)"] -test = ["eth-utils (>=1.0.1,<2)", "hypothesis (>=3.44.24,<4)", "pytest-xdist", "pytest (==5.4.1)", "tox (==3.14.6)"] - -[[package]] -name = "identify" -version = "2.2.13" -description = "File identification library for Python" -category = "dev" -optional = false -python-versions = ">=3.6.1" - -[package.extras] -license = ["editdistance-s"] - -[[package]] -name = "idna" -version = "3.2" -description = "Internationalized Domain Names in Applications (IDNA)" -category = "main" -optional = false -python-versions = ">=3.5" - -[[package]] -name = "iniconfig" -version = "1.1.1" -description = "iniconfig: brain-dead simple config-ini parsing" -category = "dev" -optional = false -python-versions = "*" - -[[package]] -name = "ipfshttpclient" -version = "0.7.0" -description = "Python IPFS HTTP CLIENT library" -category = "main" -optional = false -python-versions = ">=3.5.4,!=3.6.0,!=3.6.1,!=3.7.0,!=3.7.1" - -[package.dependencies] -multiaddr = ">=0.0.7" -requests = ">=2.11" - -[[package]] -name = "isort" -version = "5.9.3" -description = "A Python utility / library to sort Python imports." -category = "dev" -optional = false -python-versions = ">=3.6.1,<4.0" - -[package.extras] -pipfile_deprecated_finder = ["pipreqs", "requirementslib"] -requirements_deprecated_finder = ["pipreqs", "pip-api"] -colors = ["colorama (>=0.4.3,<0.5.0)"] -plugins = ["setuptools"] - -[[package]] -name = "jmespath" -version = "0.10.0" -description = "JSON Matching Expressions" -category = "main" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format_nongpl = ["idna", "jsonpointer (>1.13)", "webcolors", "rfc3986-validator (>0.1.0)", "rfc3339-validator"] - -[[package]] -name = "lazy-object-proxy" -version = "1.6.0" -description = "A fast and thorough lazy object proxy." -category = "dev" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" - -[[package]] -name = "lru-dict" -version = "1.1.7" -description = "An Dict like LRU container." -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "mako" -version = "1.1.5" -description = "A super-fast templating language that borrows the best ideas from the existing templating languages." -category = "dev" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - -[package.dependencies] -MarkupSafe = ">=0.9.2" - -[package.extras] -babel = ["babel"] -lingua = ["lingua"] - -[[package]] -name = "markupsafe" -version = "2.0.1" -description = "Safely add untrusted strings to HTML/XML markup." -category = "dev" -optional = false -python-versions = ">=3.6" - -[[package]] -name = "mccabe" -version = "0.6.1" -description = "McCabe checker, plugin for flake8" -category = "dev" -optional = false -python-versions = "*" - -[[package]] -name = "multiaddr" -version = "0.0.9" -description = "Python implementation of jbenet's multiaddr" -category = "main" -optional = false -python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*" - -[package.dependencies] -base58 = "*" -netaddr = "*" -six = "*" -varint = "*" - -[[package]] -name = "multidict" -version = "5.1.0" -description = "multidict implementation" -category = "main" -optional = false -python-versions = ">=3.6" - -[[package]] -name = "mypy" -version = "0.910" -description = "Optional static typing for Python" -category = "dev" -optional = false -python-versions = ">=3.5" - -[package.dependencies] -mypy-extensions = ">=0.4.3,<0.5.0" -toml = "*" -typing-extensions = ">=3.7.4" - -[package.extras] -dmypy = ["psutil (>=4.0)"] -python2 = ["typed-ast (>=1.4.0,<1.5.0)"] - -[[package]] -name = "mypy-extensions" -version = "0.4.3" -description = "Experimental type system extensions for programs checked with the mypy typechecker." -category = "dev" -optional = false -python-versions = "*" - -[[package]] -name = "netaddr" -version = "0.8.0" -description = "A network address manipulation library for Python" -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "nodeenv" -version = "1.6.0" -description = "Node.js virtual environment builder" -category = "dev" -optional = false -python-versions = "*" - -[[package]] -name = "packaging" -version = "21.0" -description = "Core utilities for Python packages" -category = "dev" -optional = false -python-versions = ">=3.6" - -[package.dependencies] -pyparsing = ">=2.0.2" - -[[package]] -name = "parsimonious" -version = "0.8.1" -description = "(Soon to be) the fastest pure-Python PEG parser I could muster" -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -six = ">=1.9.0" - -[[package]] -name = "platformdirs" -version = "2.2.0" -description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -category = "dev" -optional = false -python-versions = ">=3.6" - -[package.extras] -docs = ["Sphinx (>=4)", "furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)"] -test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"] - -[[package]] -name = "pluggy" -version = "0.13.1" -description = "plugin and hook calling mechanisms for python" -category = "dev" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - -[package.extras] -dev = ["pre-commit", "tox"] - -[[package]] -name = "pre-commit" -version = "2.14.0" -description = "A framework for managing and maintaining multi-language pre-commit hooks." -category = "dev" -optional = false -python-versions = ">=3.6.1" - -[package.dependencies] -cfgv = ">=2.0.0" -identify = ">=1.0.0" -nodeenv = ">=0.11.1" -pyyaml = ">=5.1" -toml = "*" -virtualenv = ">=20.0.8" - -[[package]] -name = "prometheus-client" -version = "0.12.0" -description = "Python client for the Prometheus monitoring system." -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - -[package.extras] -twisted = ["twisted"] - -[[package]] -name = "protobuf" -version = "3.17.3" -description = "Protocol Buffers" -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -six = ">=1.9" - -[[package]] -name = "psycopg2" -version = "2.9.1" -description = "psycopg2 - Python-PostgreSQL Database Adapter" -category = "main" -optional = false -python-versions = ">=3.6" - -[[package]] -name = "py" -version = "1.10.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -category = "dev" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - -[[package]] -name = "pycoingecko" -version = "2.2.0" -description = "Python wrapper around the CoinGecko API" -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -requests = "*" - -[[package]] -name = "pycryptodome" -version = "3.10.1" -description = "Cryptographic library for Python" -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" - -[[package]] -name = "pydantic" -version = "1.8.2" -description = "Data validation and settings management using python 3.6 type hinting" -category = "main" -optional = false -python-versions = ">=3.6.1" - -[package.dependencies] -typing-extensions = ">=3.7.4.3" - -[package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] - -[[package]] -name = "pylint" -version = "2.10.2" -description = "python code static checker" -category = "dev" -optional = false -python-versions = "~=3.6" - -[package.dependencies] -astroid = ">=2.7.2,<2.8" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -isort = ">=4.2.5,<6" -mccabe = ">=0.6,<0.7" -platformdirs = ">=2.2.0" -toml = ">=0.7.1" - -[[package]] -name = "pyparsing" -version = "2.4.7" -description = "Python parsing module" -category = "dev" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" - -[[package]] -name = "pyrsistent" -version = "0.18.0" -description = "Persistent/Functional/Immutable data structures" -category = "main" -optional = false -python-versions = ">=3.6" - -[[package]] -name = "pytest" -version = "6.2.4" -description = "pytest: simple powerful testing with Python" -category = "dev" -optional = false -python-versions = ">=3.6" - -[package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<1.0.0a1" -py = ">=1.8.2" -toml = "*" - -[package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] - -[[package]] -name = "pytest-cov" -version = "2.12.1" -description = "Pytest plugin for measuring coverage." -category = "dev" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" - -[package.dependencies] -coverage = ">=5.2.1" -pytest = ">=4.6" -toml = "*" - -[package.extras] -testing = ["fields", "hunter", "process-tests", "six", "pytest-xdist", "virtualenv"] - -[[package]] -name = "pytest-profiling" -version = "1.7.0" -description = "Profiling plugin for py.test" -category = "dev" -optional = false -python-versions = "*" - -[package.dependencies] -gprof2dot = "*" -pytest = "*" -six = "*" - -[package.extras] -tests = ["pytest-virtualenv"] - -[[package]] -name = "pytest-sugar" -version = "0.9.4" -description = "pytest-sugar is a plugin for pytest that changes the default look and feel of pytest (e.g. progressbar, show tests that fail instantly)." -category = "dev" -optional = false -python-versions = "*" - -[package.dependencies] -packaging = ">=14.1" -pytest = ">=2.9" -termcolor = ">=1.1.0" - -[[package]] -name = "python-dateutil" -version = "2.8.2" -description = "Extensions to the standard Python datetime module" -category = "main" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "python-editor" -version = "1.0.4" -description = "Programmatically open an editor, capture the result." -category = "dev" -optional = false -python-versions = "*" - -[[package]] -name = "pywin32" -version = "301" -description = "Python for Window Extensions" -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "pyyaml" -version = "5.4.1" -description = "YAML parser and emitter for Python" -category = "dev" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" - -[[package]] -name = "redis" -version = "4.0.2" -description = "Python client for Redis database and key-value store" -category = "main" -optional = false -python-versions = ">=3.6" - -[package.dependencies] -deprecated = "*" - -[package.extras] -hiredis = ["hiredis (>=1.0.0)"] - -[[package]] -name = "regex" -version = "2021.10.8" -description = "Alternative regular expression module, to replace re." -category = "dev" -optional = false -python-versions = "*" - -[[package]] -name = "requests" -version = "2.26.0" -description = "Python HTTP for Humans." -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = {version = ">=2.0.0,<2.1.0", markers = "python_version >= \"3\""} -idna = {version = ">=2.5,<4", markers = "python_version >= \"3\""} -urllib3 = ">=1.21.1,<1.27" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] -use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"] - -[[package]] -name = "rlp" -version = "2.0.1" -description = "A package for Recursive Length Prefix encoding and decoding" -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -eth-utils = ">=1.0.2,<2" - -[package.extras] -dev = ["Sphinx (>=1.6.5,<2)", "bumpversion (>=0.5.3,<1)", "flake8 (==3.4.1)", "hypothesis (==5.19.0)", "ipython", "pytest-watch (>=4.1.0,<5)", "pytest-xdist", "pytest (==5.4.3)", "setuptools (>=36.2.0)", "sphinx-rtd-theme (>=0.1.9)", "tox (>=2.9.1,<3)", "twine", "wheel"] -doc = ["Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9)"] -lint = ["flake8 (==3.4.1)"] -rust-backend = ["rusty-rlp (>=0.1.15,<0.2)"] -test = ["hypothesis (==5.19.0)", "pytest (==5.4.3)", "tox (>=2.9.1,<3)"] - -[[package]] -name = "s3transfer" -version = "0.5.1" -description = "An Amazon S3 Transfer Manager" -category = "main" -optional = false -python-versions = ">= 3.6" - -[package.dependencies] -botocore = ">=1.12.36,<2.0a.0" - -[package.extras] -crt = ["botocore[crt] (>=1.20.29,<2.0a.0)"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" - -[[package]] -name = "sqlalchemy" -version = "1.4.23" -description = "Database Abstraction Library" -category = "dev" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" - -[package.dependencies] -greenlet = {version = "!=0.4.17", markers = "python_version >= \"3\" and platform_machine in \"x86_64 X86_64 aarch64 AARCH64 ppc64le PPC64LE amd64 AMD64 win32 WIN32\""} - -[package.extras] -aiomysql = ["greenlet (!=0.4.17)", "aiomysql"] -aiosqlite = ["greenlet (!=0.4.17)", "aiosqlite"] -asyncio = ["greenlet (!=0.4.17)"] -mariadb_connector = ["mariadb (>=1.0.1)"] -mssql = ["pyodbc"] -mssql_pymssql = ["pymssql"] -mssql_pyodbc = ["pyodbc"] -mypy = ["sqlalchemy2-stubs", "mypy (>=0.910)"] -mysql = ["mysqlclient (>=1.4.0,<2)", "mysqlclient (>=1.4.0)"] -mysql_connector = ["mysqlconnector"] -oracle = ["cx_oracle (>=7,<8)", "cx_oracle (>=7)"] -postgresql = ["psycopg2 (>=2.7)"] -postgresql_asyncpg = ["greenlet (!=0.4.17)", "asyncpg"] -postgresql_pg8000 = ["pg8000 (>=1.16.6)"] -postgresql_psycopg2binary = ["psycopg2-binary"] -postgresql_psycopg2cffi = ["psycopg2cffi"] -pymysql = ["pymysql (<1)", "pymysql"] -sqlcipher = ["sqlcipher3-binary"] - -[[package]] -name = "termcolor" -version = "1.1.0" -description = "ANSII Color formatting for output in terminal." -category = "dev" -optional = false -python-versions = "*" - -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -category = "dev" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" - -[[package]] -name = "toolz" -version = "0.11.1" -description = "List processing tools and functional utilities" -category = "main" -optional = false -python-versions = ">=3.5" - -[[package]] -name = "typing-extensions" -version = "3.10.0.0" -description = "Backported and Experimental Type Hints for Python 3.5+" -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "urllib3" -version = "1.26.6" -description = "HTTP library with thread-safe connection pooling, file post, and more." -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" - -[package.extras] -brotli = ["brotlipy (>=0.6.0)"] -secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"] -socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] - -[[package]] -name = "varint" -version = "1.0.2" -description = "Simple python varint implementation" -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "virtualenv" -version = "20.7.2" -description = "Virtual Python Environment builder" -category = "dev" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" - -[package.dependencies] -"backports.entry-points-selectable" = ">=1.0.4" -distlib = ">=0.3.1,<1" -filelock = ">=3.0.0,<4" -platformdirs = ">=2,<3" -six = ">=1.9.0,<2" - -[package.extras] -docs = ["proselint (>=0.10.2)", "sphinx (>=3)", "sphinx-argparse (>=0.2.5)", "sphinx-rtd-theme (>=0.4.3)", "towncrier (>=19.9.0rc1)"] -testing = ["coverage (>=4)", "coverage-enable-subprocess (>=1)", "flaky (>=3)", "pytest (>=4)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.1)", "pytest-mock (>=2)", "pytest-randomly (>=1)", "pytest-timeout (>=1)", "packaging (>=20.0)"] - -[[package]] -name = "web3" -version = "5.23.0" -description = "Web3.py" -category = "main" -optional = false -python-versions = ">=3.6,<4" - -[package.dependencies] -aiohttp = ">=3.7.4.post0,<4" -eth-abi = ">=2.0.0b6,<3.0.0" -eth-account = ">=0.5.5,<0.6.0" -eth-hash = {version = ">=0.2.0,<1.0.0", extras = ["pycryptodome"]} -eth-typing = ">=2.0.0,<3.0.0" -eth-utils = ">=1.9.5,<2.0.0" -hexbytes = ">=0.1.0,<1.0.0" -ipfshttpclient = "0.7.0" -jsonschema = ">=3.2.0,<4.0.0" -lru-dict = ">=1.1.6,<2.0.0" -protobuf = ">=3.10.0,<4" -pywin32 = {version = ">=223", markers = "platform_system == \"Windows\""} -requests = ">=2.16.0,<3.0.0" -websockets = ">=9.1,<10" - -[package.extras] -dev = ["eth-tester[py-evm] (==v0.5.0-beta.4)", "py-geth (>=3.4.0,<4)", "flake8 (==3.8.3)", "isort (>=4.2.15,<4.3.5)", "mypy (==0.812)", "mock", "sphinx-better-theme (>=0.1.4)", "click (>=5.1)", "configparser (==3.5.0)", "contextlib2 (>=0.5.4)", "py-solc (>=0.4.0)", "pytest (>=4.4.0,<5.0.0)", "sphinx (>=3.0,<4)", "sphinx-rtd-theme (>=0.1.9)", "toposort (>=1.4)", "towncrier (>=19.2.0,<20)", "urllib3", "wheel", "bumpversion", "flaky (>=3.7.0,<4)", "hypothesis (>=3.31.2,<6)", "pytest-asyncio (>=0.10.0,<0.11)", "pytest-mock (>=1.10,<2)", "pytest-pythonpath (>=0.3)", "pytest-watch (>=4.2,<5)", "pytest-xdist (>=1.29,<2)", "setuptools (>=38.6.0)", "tox (>=1.8.0)", "tqdm (>4.32,<5)", "twine (>=1.13,<2)", "pluggy (==0.13.1)", "when-changed (>=0.3.0,<0.4)"] -docs = ["mock", "sphinx-better-theme (>=0.1.4)", "click (>=5.1)", "configparser (==3.5.0)", "contextlib2 (>=0.5.4)", "py-geth (>=3.4.0,<4)", "py-solc (>=0.4.0)", "pytest (>=4.4.0,<5.0.0)", "sphinx (>=3.0,<4)", "sphinx-rtd-theme (>=0.1.9)", "toposort (>=1.4)", "towncrier (>=19.2.0,<20)", "urllib3", "wheel"] -linter = ["flake8 (==3.8.3)", "isort (>=4.2.15,<4.3.5)", "mypy (==0.812)"] -tester = ["eth-tester[py-evm] (==v0.5.0-beta.4)", "py-geth (>=3.4.0,<4)"] - -[[package]] -name = "websockets" -version = "9.1" -description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" -category = "main" -optional = false -python-versions = ">=3.6.1" - -[[package]] -name = "wrapt" -version = "1.12.1" -description = "Module for decorators, wrappers and monkey patching." -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "yarl" -version = "1.6.3" -description = "Yet another URL library" -category = "main" -optional = false -python-versions = ">=3.6" - -[package.dependencies] -idna = ">=2.0" -multidict = ">=4.0" - -[metadata] -lock-version = "1.1" -python-versions = "^3.9" -content-hash = "a96cd942b973a1d8214788d968ab3fda29e1bf470030524207529c06194b2f70" - -[metadata.files] -aiohttp = [ - {file = "aiohttp-3.8.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:48f218a5257b6bc16bcf26a91d97ecea0c7d29c811a90d965f3dd97c20f016d6"}, - {file = "aiohttp-3.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a2fee4d656a7cc9ab47771b2a9e8fad8a9a33331c1b59c3057ecf0ac858f5bfe"}, - {file = "aiohttp-3.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:688a1eb8c1a5f7e795c7cb67e0fe600194e6723ba35f138dfae0db20c0cb8f94"}, - {file = "aiohttp-3.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ba09bb3dcb0b7ec936a485db2b64be44fe14cdce0a5eac56f50e55da3627385"}, - {file = "aiohttp-3.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d7715daf84f10bcebc083ad137e3eced3e1c8e7fa1f096ade9a8d02b08f0d91c"}, - {file = "aiohttp-3.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e3f81fbbc170418e22918a9585fd7281bbc11d027064d62aa4b507552c92671"}, - {file = "aiohttp-3.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:1fa9f50aa1f114249b7963c98e20dc35c51be64096a85bc92433185f331de9cc"}, - {file = "aiohttp-3.8.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8a50150419b741ee048b53146c39c47053f060cb9d98e78be08fdbe942eaa3c4"}, - {file = "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:a84c335337b676d832c1e2bc47c3a97531b46b82de9f959dafb315cbcbe0dfcd"}, - {file = "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:88d4917c30fcd7f6404fb1dc713fa21de59d3063dcc048f4a8a1a90e6bbbd739"}, - {file = "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b76669b7c058b8020b11008283c3b8e9c61bfd978807c45862956119b77ece45"}, - {file = "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:84fe1732648c1bc303a70faa67cbc2f7f2e810c8a5bca94f6db7818e722e4c0a"}, - {file = "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:730b7c2b7382194d9985ffdc32ab317e893bca21e0665cb1186bdfbb4089d990"}, - {file = "aiohttp-3.8.0-cp310-cp310-win32.whl", hash = "sha256:0a96473a1f61d7920a9099bc8e729dc8282539d25f79c12573ee0fdb9c8b66a8"}, - {file = "aiohttp-3.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:764c7c6aa1f78bd77bd9674fc07d1ec44654da1818d0eef9fb48aa8371a3c847"}, - {file = "aiohttp-3.8.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:9951c2696c4357703001e1fe6edc6ae8e97553ac630492ea1bf64b429cb712a3"}, - {file = "aiohttp-3.8.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0af379221975054162959e00daf21159ff69a712fc42ed0052caddbd70d52ff4"}, - {file = "aiohttp-3.8.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9689af0f0a89e5032426c143fa3683b0451f06c83bf3b1e27902bd33acfae769"}, - {file = "aiohttp-3.8.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe4a327da0c6b6e59f2e474ae79d6ee7745ac3279fd15f200044602fa31e3d79"}, - {file = "aiohttp-3.8.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ecb314e59bedb77188017f26e6b684b1f6d0465e724c3122a726359fa62ca1ba"}, - {file = "aiohttp-3.8.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a5399a44a529083951b55521cf4ecbf6ad79fd54b9df57dbf01699ffa0549fc9"}, - {file = "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:09754a0d5eaab66c37591f2f8fac8f9781a5f61d51aa852a3261c4805ca6b984"}, - {file = "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:adf0cb251b1b842c9dee5cfcdf880ba0aae32e841b8d0e6b6feeaef002a267c5"}, - {file = "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:a4759e85a191de58e0ea468ab6fd9c03941986eee436e0518d7a9291fab122c8"}, - {file = "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:28369fe331a59d80393ec82df3d43307c7461bfaf9217999e33e2acc7984ff7c"}, - {file = "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:2f44d1b1c740a9e2275160d77c73a11f61e8a916191c572876baa7b282bcc934"}, - {file = "aiohttp-3.8.0-cp36-cp36m-win32.whl", hash = "sha256:e27cde1e8d17b09730801ce97b6e0c444ba2a1f06348b169fd931b51d3402f0d"}, - {file = "aiohttp-3.8.0-cp36-cp36m-win_amd64.whl", hash = "sha256:15a660d06092b7c92ed17c1dbe6c1eab0a02963992d60e3e8b9d5fa7fa81f01e"}, - {file = "aiohttp-3.8.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:257f4fad1714d26d562572095c8c5cd271d5a333252795cb7a002dca41fdbad7"}, - {file = "aiohttp-3.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a6074a3b2fa2d0c9bf0963f8dfc85e1e54a26114cc8594126bc52d3fa061c40e"}, - {file = "aiohttp-3.8.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7a315ceb813208ef32bdd6ec3a85cbe3cb3be9bbda5fd030c234592fa9116993"}, - {file = "aiohttp-3.8.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9a52b141ff3b923a9166595de6e3768a027546e75052ffba267d95b54267f4ab"}, - {file = "aiohttp-3.8.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6a038cb1e6e55b26bb5520ccffab7f539b3786f5553af2ee47eb2ec5cbd7084e"}, - {file = "aiohttp-3.8.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98b1ea2763b33559dd9ec621d67fc17b583484cb90735bfb0ec3614c17b210e4"}, - {file = "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9e8723c3256641e141cd18f6ce478d54a004138b9f1a36e41083b36d9ecc5fc5"}, - {file = "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:14a6f026eca80dfa3d52e86be89feb5cd878f6f4a6adb34457e2c689fd85229b"}, - {file = "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:c62d4791a8212c885b97a63ef5f3974b2cd41930f0cd224ada9c6ee6654f8150"}, - {file = "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:90a97c2ed2830e7974cbe45f0838de0aefc1c123313f7c402e21c29ec063fbb4"}, - {file = "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:dcc4d5dd5fba3affaf4fd08f00ef156407573de8c63338787614ccc64f96b321"}, - {file = "aiohttp-3.8.0-cp37-cp37m-win32.whl", hash = "sha256:de42f513ed7a997bc821bddab356b72e55e8396b1b7ba1bf39926d538a76a90f"}, - {file = "aiohttp-3.8.0-cp37-cp37m-win_amd64.whl", hash = "sha256:7d76e8a83396e06abe3df569b25bd3fc88bf78b7baa2c8e4cf4aaf5983af66a3"}, - {file = "aiohttp-3.8.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5d79174d96446a02664e2bffc95e7b6fa93b9e6d8314536c5840dff130d0878b"}, - {file = "aiohttp-3.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4a6551057a846bf72c7a04f73de3fcaca269c0bd85afe475ceb59d261c6a938c"}, - {file = "aiohttp-3.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:871d4fdc56288caa58b1094c20f2364215f7400411f76783ea19ad13be7c8e19"}, - {file = "aiohttp-3.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ba08a71caa42eef64357257878fb17f3fba3fba6e81a51d170e32321569e079"}, - {file = "aiohttp-3.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f90dabd9933b1621260b32c2f0d05d36923c7a5a909eb823e429dba0fd2f3e"}, - {file = "aiohttp-3.8.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f348ebd20554e8bc26e8ef3ed8a134110c0f4bf015b3b4da6a4ddf34e0515b19"}, - {file = "aiohttp-3.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d5f8c04574efa814a24510122810e3a3c77c0552f9f6ff65c9862f1f046be2c3"}, - {file = "aiohttp-3.8.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5ecffdc748d3b40dd3618ede0170e4f5e1d3c9647cfb410d235d19e62cb54ee0"}, - {file = "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:577cc2c7b807b174814dac2d02e673728f2e46c7f90ceda3a70ea4bb6d90b769"}, - {file = "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:6b79f6c31e68b6dafc0317ec453c83c86dd8db1f8f0c6f28e97186563fca87a0"}, - {file = "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:2bdd655732e38b40f8a8344d330cfae3c727fb257585df923316aabbd489ccb8"}, - {file = "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:63fa57a0708573d3c059f7b5527617bd0c291e4559298473df238d502e4ab98c"}, - {file = "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d3f90ee275b1d7c942e65b5c44c8fb52d55502a0b9a679837d71be2bd8927661"}, - {file = "aiohttp-3.8.0-cp38-cp38-win32.whl", hash = "sha256:fa818609357dde5c4a94a64c097c6404ad996b1d38ca977a72834b682830a722"}, - {file = "aiohttp-3.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:097ecf52f6b9859b025c1e36401f8aa4573552e887d1b91b4b999d68d0b5a3b3"}, - {file = "aiohttp-3.8.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:be03a7483ad9ea60388f930160bb3728467dd0af538aa5edc60962ee700a0bdc"}, - {file = "aiohttp-3.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:78d51e35ed163783d721b6f2ce8ce3f82fccfe471e8e50a10fba13a766d31f5a"}, - {file = "aiohttp-3.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:bda75d73e7400e81077b0910c9a60bf9771f715420d7e35fa7739ae95555f195"}, - {file = "aiohttp-3.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:707adc30ea6918fba725c3cb3fe782d271ba352b22d7ae54a7f9f2e8a8488c41"}, - {file = "aiohttp-3.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f58aa995b905ab82fe228acd38538e7dc1509e01508dcf307dad5046399130f"}, - {file = "aiohttp-3.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c996eb91bfbdab1e01e2c02e7ff678c51e2b28e3a04e26e41691991cc55795"}, - {file = "aiohttp-3.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d6a1a66bb8bac9bc2892c2674ea363486bfb748b86504966a390345a11b1680e"}, - {file = "aiohttp-3.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dafc01a32b4a1d7d3ef8bfd3699406bb44f7b2e0d3eb8906d574846e1019b12f"}, - {file = "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:949a605ef3907254b122f845baa0920407080cdb1f73aa64f8d47df4a7f4c4f9"}, - {file = "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:0d7b056fd3972d353cb4bc305c03f9381583766b7f8c7f1c44478dba69099e33"}, - {file = "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f1d39a744101bf4043fa0926b3ead616607578192d0a169974fb5265ab1e9d2"}, - {file = "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:67ca7032dfac8d001023fadafc812d9f48bf8a8c3bb15412d9cdcf92267593f4"}, - {file = "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:cb751ef712570d3bda9a73fd765ff3e1aba943ec5d52a54a0c2e89c7eef9da1e"}, - {file = "aiohttp-3.8.0-cp39-cp39-win32.whl", hash = "sha256:6d3e027fe291b77f6be9630114a0200b2c52004ef20b94dc50ca59849cd623b3"}, - {file = "aiohttp-3.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:3c5e9981e449d54308c6824f172ec8ab63eb9c5f922920970249efee83f7e919"}, - {file = "aiohttp-3.8.0.tar.gz", hash = "sha256:d3b19d8d183bcfd68b25beebab8dc3308282fe2ca3d6ea3cb4cd101b3c279f8d"}, -] -aiohttp-retry = [ - {file = "aiohttp_retry-2.4.6-py3-none-any.whl", hash = "sha256:4c478be0f54a0e1bbe8ee3128122ff42c26ed2e1e16c13ca601a087004ec8bb7"}, - {file = "aiohttp_retry-2.4.6.tar.gz", hash = "sha256:288c1a0d93b4b3ad92910c56a0326c6b055c7e1345027b26f173ac18594a97da"}, -] -aiosignal = [ - {file = "aiosignal-1.2.0-py3-none-any.whl", hash = "sha256:26e62109036cd181df6e6ad646f91f0dcfd05fe16d0cb924138ff2ab75d64e3a"}, - {file = "aiosignal-1.2.0.tar.gz", hash = "sha256:78ed67db6c7b7ced4f98e495e572106d5c432a93e1ddd1bf475e1dc05f5b7df2"}, -] -alembic = [ - {file = "alembic-1.6.5-py2.py3-none-any.whl", hash = "sha256:e78be5b919f5bb184e3e0e2dd1ca986f2362e29a2bc933c446fe89f39dbe4e9c"}, - {file = "alembic-1.6.5.tar.gz", hash = "sha256:a21fedebb3fb8f6bbbba51a11114f08c78709377051384c9c5ead5705ee93a51"}, -] -astroid = [ - {file = "astroid-2.7.2-py3-none-any.whl", hash = "sha256:ecc50f9b3803ebf8ea19aa2c6df5622d8a5c31456a53c741d3be044d96ff0948"}, - {file = "astroid-2.7.2.tar.gz", hash = "sha256:b6c2d75cd7c2982d09e7d41d70213e863b3ba34d3bd4014e08f167cee966e99e"}, -] -async-timeout = [ - {file = "async-timeout-4.0.0.tar.gz", hash = "sha256:7d87a4e8adba8ededb52e579ce6bc8276985888913620c935094c2276fd83382"}, - {file = "async_timeout-4.0.0-py3-none-any.whl", hash = "sha256:f3303dddf6cafa748a92747ab6c2ecf60e0aeca769aee4c151adfce243a05d9b"}, -] -atomicwrites = [ - {file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"}, - {file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"}, -] -attrs = [ - {file = "attrs-21.2.0-py2.py3-none-any.whl", hash = "sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1"}, - {file = "attrs-21.2.0.tar.gz", hash = "sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb"}, -] -"backports.entry-points-selectable" = [ - {file = "backports.entry_points_selectable-1.1.0-py2.py3-none-any.whl", hash = "sha256:a6d9a871cde5e15b4c4a53e3d43ba890cc6861ec1332c9c2428c92f977192acc"}, - {file = "backports.entry_points_selectable-1.1.0.tar.gz", hash = "sha256:988468260ec1c196dab6ae1149260e2f5472c9110334e5d51adcb77867361f6a"}, -] -base58 = [ - {file = "base58-2.1.0-py3-none-any.whl", hash = "sha256:8225891d501b68c843ffe30b86371f844a21c6ba00da76f52f9b998ba771fb48"}, - {file = "base58-2.1.0.tar.gz", hash = "sha256:171a547b4a3c61e1ae3807224a6f7aec75e364c4395e7562649d7335768001a2"}, -] -bitarray = [ - {file = "bitarray-1.2.2.tar.gz", hash = "sha256:27a69ffcee3b868abab3ce8b17c69e02b63e722d4d64ffd91d659f81e9984954"}, -] -boto3 = [ - {file = "boto3-1.20.48-py3-none-any.whl", hash = "sha256:1c6301d9676cb18f2b0feddec393e52b9d5fa8147e6fe9a1665e39fd9739efc3"}, - {file = "boto3-1.20.48.tar.gz", hash = "sha256:6a8111492a571aeefbac2e4b6df5ce38bdbc16c7d8326f2a60a61c86032c49b0"}, -] -botocore = [ - {file = "botocore-1.23.48-py3-none-any.whl", hash = "sha256:768acb9a2247155b974a4184b29be321242ef8f61827f4bb958e60f00e476e90"}, - {file = "botocore-1.23.48.tar.gz", hash = "sha256:8652c11ff05d11d6cea7096aca8df7f8eb87980469860036ff47e196e4625c96"}, -] -bottle = [ - {file = "bottle-0.12.19-py3-none-any.whl", hash = "sha256:f6b8a34fe9aa406f9813c02990db72ca69ce6a158b5b156d2c41f345016a723d"}, - {file = "bottle-0.12.19.tar.gz", hash = "sha256:a9d73ffcbc6a1345ca2d7949638db46349f5b2b77dac65d6494d45c23628da2c"}, -] -certifi = [ - {file = "certifi-2021.5.30-py2.py3-none-any.whl", hash = "sha256:50b1e4f8446b06f41be7dd6338db18e0990601dce795c2b1686458aa7e8fa7d8"}, - {file = "certifi-2021.5.30.tar.gz", hash = "sha256:2bbf76fd432960138b3ef6dda3dde0544f27cbf8546c458e60baf371917ba9ee"}, -] -cfgv = [ - {file = "cfgv-3.3.1-py2.py3-none-any.whl", hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426"}, - {file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"}, -] -charset-normalizer = [ - {file = "charset-normalizer-2.0.4.tar.gz", hash = "sha256:f23667ebe1084be45f6ae0538e4a5a865206544097e4e8bbcacf42cd02a348f3"}, - {file = "charset_normalizer-2.0.4-py3-none-any.whl", hash = "sha256:0c8911edd15d19223366a194a513099a302055a962bca2cec0f54b8b63175d8b"}, -] -click = [ - {file = "click-8.0.1-py3-none-any.whl", hash = "sha256:fba402a4a47334742d782209a7c79bc448911afe1149d07bdabdf480b3e2f4b6"}, - {file = "click-8.0.1.tar.gz", hash = "sha256:8c04c11192119b1ef78ea049e0a6f0463e4c48ef00a30160c704337586f3ad7a"}, -] -colorama = [ - {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"}, - {file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"}, -] -coverage = [ - {file = "coverage-5.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:b6d534e4b2ab35c9f93f46229363e17f63c53ad01330df9f2d6bd1187e5eaacf"}, - {file = "coverage-5.5-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:b7895207b4c843c76a25ab8c1e866261bcfe27bfaa20c192de5190121770672b"}, - {file = "coverage-5.5-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:c2723d347ab06e7ddad1a58b2a821218239249a9e4365eaff6649d31180c1669"}, - {file = "coverage-5.5-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:900fbf7759501bc7807fd6638c947d7a831fc9fdf742dc10f02956ff7220fa90"}, - {file = "coverage-5.5-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:004d1880bed2d97151facef49f08e255a20ceb6f9432df75f4eef018fdd5a78c"}, - {file = "coverage-5.5-cp27-cp27m-win32.whl", hash = "sha256:06191eb60f8d8a5bc046f3799f8a07a2d7aefb9504b0209aff0b47298333302a"}, - {file = "coverage-5.5-cp27-cp27m-win_amd64.whl", hash = "sha256:7501140f755b725495941b43347ba8a2777407fc7f250d4f5a7d2a1050ba8e82"}, - {file = "coverage-5.5-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:372da284cfd642d8e08ef606917846fa2ee350f64994bebfbd3afb0040436905"}, - {file = "coverage-5.5-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:8963a499849a1fc54b35b1c9f162f4108017b2e6db2c46c1bed93a72262ed083"}, - {file = "coverage-5.5-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:869a64f53488f40fa5b5b9dcb9e9b2962a66a87dab37790f3fcfb5144b996ef5"}, - {file = "coverage-5.5-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:4a7697d8cb0f27399b0e393c0b90f0f1e40c82023ea4d45d22bce7032a5d7b81"}, - {file = "coverage-5.5-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:8d0a0725ad7c1a0bcd8d1b437e191107d457e2ec1084b9f190630a4fb1af78e6"}, - {file = "coverage-5.5-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:51cb9476a3987c8967ebab3f0fe144819781fca264f57f89760037a2ea191cb0"}, - {file = "coverage-5.5-cp310-cp310-win_amd64.whl", hash = "sha256:c0891a6a97b09c1f3e073a890514d5012eb256845c451bd48f7968ef939bf4ae"}, - {file = "coverage-5.5-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:3487286bc29a5aa4b93a072e9592f22254291ce96a9fbc5251f566b6b7343cdb"}, - {file = "coverage-5.5-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:deee1077aae10d8fa88cb02c845cfba9b62c55e1183f52f6ae6a2df6a2187160"}, - {file = "coverage-5.5-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:f11642dddbb0253cc8853254301b51390ba0081750a8ac03f20ea8103f0c56b6"}, - {file = "coverage-5.5-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:6c90e11318f0d3c436a42409f2749ee1a115cd8b067d7f14c148f1ce5574d701"}, - {file = "coverage-5.5-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:30c77c1dc9f253283e34c27935fded5015f7d1abe83bc7821680ac444eaf7793"}, - {file = "coverage-5.5-cp35-cp35m-win32.whl", hash = "sha256:9a1ef3b66e38ef8618ce5fdc7bea3d9f45f3624e2a66295eea5e57966c85909e"}, - {file = "coverage-5.5-cp35-cp35m-win_amd64.whl", hash = "sha256:972c85d205b51e30e59525694670de6a8a89691186012535f9d7dbaa230e42c3"}, - {file = "coverage-5.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:af0e781009aaf59e25c5a678122391cb0f345ac0ec272c7961dc5455e1c40066"}, - {file = "coverage-5.5-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:74d881fc777ebb11c63736622b60cb9e4aee5cace591ce274fb69e582a12a61a"}, - {file = "coverage-5.5-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:92b017ce34b68a7d67bd6d117e6d443a9bf63a2ecf8567bb3d8c6c7bc5014465"}, - {file = "coverage-5.5-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:d636598c8305e1f90b439dbf4f66437de4a5e3c31fdf47ad29542478c8508bbb"}, - {file = "coverage-5.5-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:41179b8a845742d1eb60449bdb2992196e211341818565abded11cfa90efb821"}, - {file = "coverage-5.5-cp36-cp36m-win32.whl", hash = "sha256:040af6c32813fa3eae5305d53f18875bedd079960822ef8ec067a66dd8afcd45"}, - {file = "coverage-5.5-cp36-cp36m-win_amd64.whl", hash = "sha256:5fec2d43a2cc6965edc0bb9e83e1e4b557f76f843a77a2496cbe719583ce8184"}, - {file = "coverage-5.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:18ba8bbede96a2c3dde7b868de9dcbd55670690af0988713f0603f037848418a"}, - {file = "coverage-5.5-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:2910f4d36a6a9b4214bb7038d537f015346f413a975d57ca6b43bf23d6563b53"}, - {file = "coverage-5.5-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:f0b278ce10936db1a37e6954e15a3730bea96a0997c26d7fee88e6c396c2086d"}, - {file = "coverage-5.5-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:796c9c3c79747146ebd278dbe1e5c5c05dd6b10cc3bcb8389dfdf844f3ead638"}, - {file = "coverage-5.5-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:53194af30d5bad77fcba80e23a1441c71abfb3e01192034f8246e0d8f99528f3"}, - {file = "coverage-5.5-cp37-cp37m-win32.whl", hash = "sha256:184a47bbe0aa6400ed2d41d8e9ed868b8205046518c52464fde713ea06e3a74a"}, - {file = "coverage-5.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2949cad1c5208b8298d5686d5a85b66aae46d73eec2c3e08c817dd3513e5848a"}, - {file = "coverage-5.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:217658ec7187497e3f3ebd901afdca1af062b42cfe3e0dafea4cced3983739f6"}, - {file = "coverage-5.5-cp38-cp38-manylinux1_i686.whl", hash = "sha256:1aa846f56c3d49205c952d8318e76ccc2ae23303351d9270ab220004c580cfe2"}, - {file = "coverage-5.5-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:24d4a7de75446be83244eabbff746d66b9240ae020ced65d060815fac3423759"}, - {file = "coverage-5.5-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:d1f8bf7b90ba55699b3a5e44930e93ff0189aa27186e96071fac7dd0d06a1873"}, - {file = "coverage-5.5-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:970284a88b99673ccb2e4e334cfb38a10aab7cd44f7457564d11898a74b62d0a"}, - {file = "coverage-5.5-cp38-cp38-win32.whl", hash = "sha256:01d84219b5cdbfc8122223b39a954820929497a1cb1422824bb86b07b74594b6"}, - {file = "coverage-5.5-cp38-cp38-win_amd64.whl", hash = "sha256:2e0d881ad471768bf6e6c2bf905d183543f10098e3b3640fc029509530091502"}, - {file = "coverage-5.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d1f9ce122f83b2305592c11d64f181b87153fc2c2bbd3bb4a3dde8303cfb1a6b"}, - {file = "coverage-5.5-cp39-cp39-manylinux1_i686.whl", hash = "sha256:13c4ee887eca0f4c5a247b75398d4114c37882658300e153113dafb1d76de529"}, - {file = "coverage-5.5-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:52596d3d0e8bdf3af43db3e9ba8dcdaac724ba7b5ca3f6358529d56f7a166f8b"}, - {file = "coverage-5.5-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:2cafbbb3af0733db200c9b5f798d18953b1a304d3f86a938367de1567f4b5bff"}, - {file = "coverage-5.5-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:44d654437b8ddd9eee7d1eaee28b7219bec228520ff809af170488fd2fed3e2b"}, - {file = "coverage-5.5-cp39-cp39-win32.whl", hash = "sha256:d314ed732c25d29775e84a960c3c60808b682c08d86602ec2c3008e1202e3bb6"}, - {file = "coverage-5.5-cp39-cp39-win_amd64.whl", hash = "sha256:13034c4409db851670bc9acd836243aeee299949bd5673e11844befcb0149f03"}, - {file = "coverage-5.5-pp36-none-any.whl", hash = "sha256:f030f8873312a16414c0d8e1a1ddff2d3235655a2174e3648b4fa66b3f2f1079"}, - {file = "coverage-5.5-pp37-none-any.whl", hash = "sha256:2a3859cb82dcbda1cfd3e6f71c27081d18aa251d20a17d87d26d4cd216fb0af4"}, - {file = "coverage-5.5.tar.gz", hash = "sha256:ebe78fe9a0e874362175b02371bdfbee64d8edc42a044253ddf4ee7d3c15212c"}, -] -cprofilev = [ - {file = "CProfileV-1.0.7.tar.gz", hash = "sha256:8791748b1f3d3468c2c927c3fd5f905080b84d8f2d217ca764b7d9d7a1fb9a77"}, -] -cytoolz = [ - {file = "cytoolz-0.11.0-cp35-cp35m-macosx_10_6_x86_64.whl", hash = "sha256:c50051c02b23823209d6b0e8f7b2b37371312da50ca78165871dc6fed7bd37df"}, - {file = "cytoolz-0.11.0-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:140eaadcd86216d4a185db3a37396ee80dd2edc6e490ba37a3d7c1b17a124078"}, - {file = "cytoolz-0.11.0-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:c183237f4f0bac53238588e3567c0287130dd9ed6b6b880579a5cca960a89f54"}, - {file = "cytoolz-0.11.0-cp35-cp35m-manylinux2014_x86_64.whl", hash = "sha256:6cba0572e3ad187e0ea0ddd20bb9c6aad794c23d997ed2b2aa2bbd109fe61f9f"}, - {file = "cytoolz-0.11.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:c7ed490f7f5c069a5082b73803ff4595f12ed0eb6b52ffa5ffe15d532acb71ed"}, - {file = "cytoolz-0.11.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2e7cbfec2681e8acfd0013e9581905f251455d411457a6f475ba1870d1685fc"}, - {file = "cytoolz-0.11.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:596a40ce920dd6cdab42d3dec5a4e8bb0bf258bb79426a4ed7658a27c214941b"}, - {file = "cytoolz-0.11.0-cp36-cp36m-win_amd64.whl", hash = "sha256:477f71b8b2c6fdd97aa3a421ba0cfd04b22ffed1b22dda3fea06db2756ee7097"}, - {file = "cytoolz-0.11.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5692a100d657f9bc2fede44ff41649c0c577f251bc0bd06c699c177235a0f81c"}, - {file = "cytoolz-0.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8893b54f8d8d1bbc5a22dc4989d9b3eb269dd5ee1247993158e1f9ae0fbb9c88"}, - {file = "cytoolz-0.11.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:84519cf4f63308b0ce39162b7a341367338953cd9fbf7edd335cbc44dcd321e9"}, - {file = "cytoolz-0.11.0-cp37-cp37m-win_amd64.whl", hash = "sha256:2f9963114029e78ddb626140cbb15b79ad0fd1563484b73fb29403a3d5bf3ed4"}, - {file = "cytoolz-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c65635ad93bac9002e36d42603bd87514e8ea932910158054b409ceee05ff4fe"}, - {file = "cytoolz-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a6e95de2fe891075f71edb0a56701eeaae04d43f44470c24d45e89f1ea801e85"}, - {file = "cytoolz-0.11.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b4a3eb96eda360b14fa6c7d2ce6faf684319c051f9ea620b009cb28a2878ed32"}, - {file = "cytoolz-0.11.0-cp38-cp38-win_amd64.whl", hash = "sha256:d0fdf0186201f882274db95fc5644ef34bfb0593d9db23b7343b0e6c8c000a0a"}, - {file = "cytoolz-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f85a8e164ebbe75e77a9c8a0b91bd2a3ceb5beeb0f1c180affe75318a41df98c"}, - {file = "cytoolz-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1b6bb4dee54fe62306d7330639f57a0dbb612520516b97b1c9dea5bc506634"}, - {file = "cytoolz-0.11.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3159da30eaf214746215293fdba19b6b54af59b3b2ba979eb9e184c6c7a854d2"}, - {file = "cytoolz-0.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:b61f23e9fa7cd5a87a503ab659f816858e2235926cd95b0c7e37403530d4a2d6"}, - {file = "cytoolz-0.11.0.tar.gz", hash = "sha256:c64f3590c3eb40e1548f0d3c6b2ccde70493d0b8dc6cc7f9f3fec0bb3dcd4222"}, -] -deprecated = [ - {file = "Deprecated-1.2.13-py2.py3-none-any.whl", hash = "sha256:64756e3e14c8c5eea9795d93c524551432a0be75629f8f29e67ab8caf076c76d"}, - {file = "Deprecated-1.2.13.tar.gz", hash = "sha256:43ac5335da90c31c24ba028af536a91d41d53f9e6901ddb021bcc572ce44e38d"}, -] -distlib = [ - {file = "distlib-0.3.2-py2.py3-none-any.whl", hash = "sha256:23e223426b28491b1ced97dc3bbe183027419dfc7982b4fa2f05d5f3ff10711c"}, - {file = "distlib-0.3.2.zip", hash = "sha256:106fef6dc37dd8c0e2c0a60d3fca3e77460a48907f335fa28420463a6f799736"}, -] -dramatiq = [ - {file = "dramatiq-1.12.3-py3-none-any.whl", hash = "sha256:eccb0f54d44ebd9e2c79e00d67b808397589a1a621ba7c5fd58df5fb6204a0a8"}, - {file = "dramatiq-1.12.3.tar.gz", hash = "sha256:380bd77b6b19d642f417b642935049ff71ddf4b4e57d821e4f55b92541430f21"}, -] -eth-abi = [ - {file = "eth_abi-2.1.1-py3-none-any.whl", hash = "sha256:78df5d2758247a8f0766a7cfcea4575bcfe568c34a33e6d05a72c328a9040444"}, - {file = "eth_abi-2.1.1.tar.gz", hash = "sha256:4bb1d87bb6605823379b07f6c02c8af45df01a27cc85bd6abb7cf1446ce7d188"}, -] -eth-account = [ - {file = "eth-account-0.5.5.tar.gz", hash = "sha256:60396fedde2546bb23d3b1a4f28a959387738c9906090d2fdd01b9e663eaa829"}, - {file = "eth_account-0.5.5-py3-none-any.whl", hash = "sha256:e579a898a976ad3436e328036a0ac4bb36573561dd0773f717dba6a72c137a2c"}, -] -eth-hash = [ - {file = "eth-hash-0.3.1.tar.gz", hash = "sha256:aee46d9c43b98ac6d4ddf957cf75d4d0a5174ee814cc6b53dd6134dcedb459bf"}, - {file = "eth_hash-0.3.1-py3-none-any.whl", hash = "sha256:a3bc7f1c12eb086525999de7f83b9e7ad39740b31f0f4eccb17377ed70de24dd"}, -] -eth-keyfile = [ - {file = "eth-keyfile-0.5.1.tar.gz", hash = "sha256:939540efb503380bc30d926833e6a12b22c6750de80feef3720d79e5a79de47d"}, - {file = "eth_keyfile-0.5.1-py3-none-any.whl", hash = "sha256:70d734af17efdf929a90bb95375f43522be4ed80c3b9e0a8bca575fb11cd1159"}, -] -eth-keys = [ - {file = "eth-keys-0.3.3.tar.gz", hash = "sha256:a9a1e83e443bd369265b1a1b66dc30f6841bdbb3577ecd042e037b7b405b6cb0"}, - {file = "eth_keys-0.3.3-py3-none-any.whl", hash = "sha256:412dd5c9732b8e92af40c9c77597f4661c57eba3897aaa55e527af56a8c5ab47"}, -] -eth-rlp = [ - {file = "eth-rlp-0.2.1.tar.gz", hash = "sha256:f016f980b0ed42ee7650ba6e4e4d3c4e9aa06d8b9c6825a36d3afe5aa0187a8b"}, - {file = "eth_rlp-0.2.1-py3-none-any.whl", hash = "sha256:cc389ef8d7b6f76a98f90bcdbff1b8684b3a78f53d47e871191b50d4d6aee5a1"}, -] -eth-typing = [ - {file = "eth-typing-2.2.2.tar.gz", hash = "sha256:97ba0f83da7cf1d3668f6ed54983f21168076c552762bf5e06d4a20921877f3f"}, - {file = "eth_typing-2.2.2-py3-none-any.whl", hash = "sha256:1140c7592321dbf10d6663c46f7e43eb0e6410b011b03f14b3df3eb1f76aa9bb"}, -] -eth-utils = [ - {file = "eth-utils-1.10.0.tar.gz", hash = "sha256:bf82762a46978714190b0370265a7148c954d3f0adaa31c6f085ea375e4c61af"}, - {file = "eth_utils-1.10.0-py3-none-any.whl", hash = "sha256:74240a8c6f652d085ed3c85f5f1654203d2f10ff9062f83b3bad0a12ff321c7a"}, -] -filelock = [ - {file = "filelock-3.0.12-py3-none-any.whl", hash = "sha256:929b7d63ec5b7d6b71b0fa5ac14e030b3f70b75747cef1b10da9b879fef15836"}, - {file = "filelock-3.0.12.tar.gz", hash = "sha256:18d82244ee114f543149c66a6e0c14e9c4f8a1044b5cdaadd0f82159d6a6ff59"}, -] -frozenlist = [ +files = [ {file = "frozenlist-1.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:977a1438d0e0d96573fd679d291a1542097ea9f4918a8b6494b06610dfeefbf9"}, {file = "frozenlist-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a8d86547a5e98d9edd47c432f7a14b0c5592624b496ae9880fb6332f34af1edc"}, {file = "frozenlist-1.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:181754275d5d32487431a0a29add4f897968b7157204bc1eaaf0a0ce80c5ba7d"}, @@ -1542,10 +775,24 @@ frozenlist = [ {file = "frozenlist-1.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:735f386ec522e384f511614c01d2ef9cf799f051353876b4c6fb93ef67a6d1ee"}, {file = "frozenlist-1.2.0.tar.gz", hash = "sha256:68201be60ac56aff972dc18085800b6ee07973c49103a8aba669dee3d71079de"}, ] -gprof2dot = [ + +[[package]] +name = "gprof2dot" +version = "2021.2.21" +description = "Generate a dot graph from the output of several profilers." +optional = false +python-versions = "*" +files = [ {file = "gprof2dot-2021.2.21.tar.gz", hash = "sha256:1223189383b53dcc8ecfd45787ac48c0ed7b4dbc16ee8b88695d053eea1acabf"}, ] -greenlet = [ + +[[package]] +name = "greenlet" +version = "1.1.1" +description = "Lightweight in-process concurrent programming" +optional = false +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*" +files = [ {file = "greenlet-1.1.1-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:476ba9435afaead4382fbab8f1882f75e3fb2285c35c9285abb3dd30237f9142"}, {file = "greenlet-1.1.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:44556302c0ab376e37939fd0058e1f0db2e769580d340fb03b01678d1ff25f68"}, {file = "greenlet-1.1.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:40abb7fec4f6294225d2b5464bb6d9552050ded14a7516588d6f010e7e366dcc"}, @@ -1597,39 +844,134 @@ greenlet = [ {file = "greenlet-1.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:4adaf53ace289ced90797d92d767d37e7cdc29f13bd3830c3f0a561277a4ae83"}, {file = "greenlet-1.1.1.tar.gz", hash = "sha256:c0f22774cd8294078bdf7392ac73cf00bfa1e5e0ed644bd064fdabc5f2a2f481"}, ] -hexbytes = [ + +[package.extras] +docs = ["Sphinx"] + +[[package]] +name = "hexbytes" +version = "0.2.2" +description = "hexbytes: Python `bytes` subclass that decodes hex, with a readable console output" +optional = false +python-versions = ">=3.6, <4" +files = [ {file = "hexbytes-0.2.2-py3-none-any.whl", hash = "sha256:ef53c37ea9f316fff86fcb1df057b4c6ba454da348083e972031bbf7bc9c3acc"}, {file = "hexbytes-0.2.2.tar.gz", hash = "sha256:a5881304d186e87578fb263a85317c808cf130e1d4b3d37d30142ab0f7898d03"}, ] -identify = [ + +[package.extras] +dev = ["Sphinx (>=1.6.5,<2)", "bumpversion (>=0.5.3,<1)", "eth-utils (>=1.0.1,<2)", "flake8 (==3.7.9)", "hypothesis (>=3.44.24,<4)", "ipython", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=5.0.0,<6)", "pytest (==5.4.1)", "pytest-watch (>=4.1.0,<5)", "pytest-xdist", "sphinx-rtd-theme (>=0.1.9,<1)", "towncrier (>=19.2.0,<20)", "tox (==3.14.6)", "twine", "wheel"] +doc = ["Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9,<1)", "towncrier (>=19.2.0,<20)"] +lint = ["flake8 (==3.7.9)", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=5.0.0,<6)"] +test = ["eth-utils (>=1.0.1,<2)", "hypothesis (>=3.44.24,<4)", "pytest (==5.4.1)", "pytest-xdist", "tox (==3.14.6)"] + +[[package]] +name = "identify" +version = "2.2.13" +description = "File identification library for Python" +optional = false +python-versions = ">=3.6.1" +files = [ {file = "identify-2.2.13-py2.py3-none-any.whl", hash = "sha256:7199679b5be13a6b40e6e19ea473e789b11b4e3b60986499b1f589ffb03c217c"}, {file = "identify-2.2.13.tar.gz", hash = "sha256:7bc6e829392bd017236531963d2d937d66fc27cadc643ac0aba2ce9f26157c79"}, ] -idna = [ + +[package.extras] +license = ["editdistance-s"] + +[[package]] +name = "idna" +version = "3.2" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ {file = "idna-3.2-py3-none-any.whl", hash = "sha256:14475042e284991034cb48e06f6851428fb14c4dc953acd9be9a5e95c7b6dd7a"}, {file = "idna-3.2.tar.gz", hash = "sha256:467fbad99067910785144ce333826c71fb0e63a425657295239737f7ecd125f3"}, ] -iniconfig = [ + +[[package]] +name = "iniconfig" +version = "1.1.1" +description = "iniconfig: brain-dead simple config-ini parsing" +optional = false +python-versions = "*" +files = [ {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"}, {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"}, ] -ipfshttpclient = [ + +[[package]] +name = "ipfshttpclient" +version = "0.7.0" +description = "Python IPFS HTTP CLIENT library" +optional = false +python-versions = ">=3.5.4,!=3.6.0,!=3.6.1,!=3.7.0,!=3.7.1" +files = [ {file = "ipfshttpclient-0.7.0-py3-none-any.whl", hash = "sha256:161c348e91cdc194c06c8725446a51a2d758ff2cc5ea97ec98f49e2af2465405"}, {file = "ipfshttpclient-0.7.0.tar.gz", hash = "sha256:feb1033c14c3ac87ee81264176c5beefeaf386385804427160466117ccc43693"}, ] -isort = [ + +[package.dependencies] +multiaddr = ">=0.0.7" +requests = ">=2.11" + +[[package]] +name = "isort" +version = "5.9.3" +description = "A Python utility / library to sort Python imports." +optional = false +python-versions = ">=3.6.1,<4.0" +files = [ {file = "isort-5.9.3-py3-none-any.whl", hash = "sha256:e17d6e2b81095c9db0a03a8025a957f334d6ea30b26f9ec70805411e5c7c81f2"}, {file = "isort-5.9.3.tar.gz", hash = "sha256:9c2ea1e62d871267b78307fe511c0838ba0da28698c5732d54e2790bf3ba9899"}, ] -jmespath = [ + +[package.extras] +colors = ["colorama (>=0.4.3,<0.5.0)"] +pipfile-deprecated-finder = ["pipreqs", "requirementslib"] +plugins = ["setuptools"] +requirements-deprecated-finder = ["pip-api", "pipreqs"] + +[[package]] +name = "jmespath" +version = "0.10.0" +description = "JSON Matching Expressions" +optional = false +python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ {file = "jmespath-0.10.0-py2.py3-none-any.whl", hash = "sha256:cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f"}, {file = "jmespath-0.10.0.tar.gz", hash = "sha256:b85d0567b8666149a93172712e68920734333c0ce7e89b78b3e987f71e5ed4f9"}, ] -jsonschema = [ + +[[package]] +name = "jsonschema" +version = "3.2.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = "*" +files = [ {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, ] -lazy-object-proxy = [ + +[package.dependencies] +attrs = ">=17.4.0" +pyrsistent = ">=0.14.0" +setuptools = "*" +six = ">=1.11.0" + +[package.extras] +format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] +format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] + +[[package]] +name = "lazy-object-proxy" +version = "1.6.0" +description = "A fast and thorough lazy object proxy." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ {file = "lazy-object-proxy-1.6.0.tar.gz", hash = "sha256:489000d368377571c6f982fba6497f2aa13c6d1facc40660963da62f5c379726"}, {file = "lazy_object_proxy-1.6.0-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:c6938967f8528b3668622a9ed3b31d145fab161a32f5891ea7b84f6b790be05b"}, {file = "lazy_object_proxy-1.6.0-cp27-cp27m-win32.whl", hash = "sha256:ebfd274dcd5133e0afae738e6d9da4323c3eb021b3e13052d8cbd0e457b1256e"}, @@ -1653,19 +995,50 @@ lazy-object-proxy = [ {file = "lazy_object_proxy-1.6.0-cp39-cp39-win32.whl", hash = "sha256:1fee665d2638491f4d6e55bd483e15ef21f6c8c2095f235fef72601021e64f61"}, {file = "lazy_object_proxy-1.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:f5144c75445ae3ca2057faac03fda5a902eff196702b0a24daf1d6ce0650514b"}, ] -lru-dict = [ + +[[package]] +name = "lru-dict" +version = "1.1.7" +description = "An Dict like LRU container." +optional = false +python-versions = "*" +files = [ {file = "lru-dict-1.1.7.tar.gz", hash = "sha256:45b81f67d75341d4433abade799a47e9c42a9e22a118531dcb5e549864032d7c"}, ] -mako = [ + +[[package]] +name = "mako" +version = "1.1.5" +description = "A super-fast templating language that borrows the best ideas from the existing templating languages." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ {file = "Mako-1.1.5-py2.py3-none-any.whl", hash = "sha256:6804ee66a7f6a6416910463b00d76a7b25194cd27f1918500c5bd7be2a088a23"}, {file = "Mako-1.1.5.tar.gz", hash = "sha256:169fa52af22a91900d852e937400e79f535496191c63712e3b9fda5a9bed6fc3"}, ] -markupsafe = [ + +[package.dependencies] +MarkupSafe = ">=0.9.2" + +[package.extras] +babel = ["Babel"] +lingua = ["lingua"] + +[[package]] +name = "markupsafe" +version = "2.0.1" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.6" +files = [ {file = "MarkupSafe-2.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d8446c54dc28c01e5a2dbac5a25f071f6653e6e40f3a8818e8b45d790fe6ef53"}, {file = "MarkupSafe-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:36bc903cbb393720fad60fc28c10de6acf10dc6cc883f3e24ee4012371399a38"}, {file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d7d807855b419fc2ed3e631034685db6079889a1f01d5d9dac950f764da3dad"}, {file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:add36cb2dbb8b736611303cd3bfcee00afd96471b09cda130da3581cbdc56a6d"}, {file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:168cd0a3642de83558a5153c8bd34f175a9a6e7f6dc6384b9655d2697312a646"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4dc8f9fb58f7364b63fd9f85013b780ef83c11857ae79f2feda41e270468dd9b"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:20dca64a3ef2d6e4d5d615a3fd418ad3bde77a47ec8a23d984a12b5b4c74491a"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:cdfba22ea2f0029c9261a4bd07e830a8da012291fbe44dc794e488b6c9bb353a"}, {file = "MarkupSafe-2.0.1-cp310-cp310-win32.whl", hash = "sha256:99df47edb6bda1249d3e80fdabb1dab8c08ef3975f69aed437cb69d0a5de1e28"}, {file = "MarkupSafe-2.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:e0f138900af21926a02425cf736db95be9f4af72ba1bb21453432a07f6082134"}, {file = "MarkupSafe-2.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f9081981fe268bd86831e5c75f7de206ef275defcb82bc70740ae6dc507aee51"}, @@ -1677,6 +1050,9 @@ markupsafe = [ {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf5d821ffabf0ef3533c39c518f3357b171a1651c1ff6827325e4489b0e46c3c"}, {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0d4b31cc67ab36e3392bbf3862cfbadac3db12bdd8b02a2731f509ed5b829724"}, {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:baa1a4e8f868845af802979fcdbf0bb11f94f1cb7ced4c4b8a351bb60d108145"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:deb993cacb280823246a026e3b2d81c493c53de6acfd5e6bfe31ab3402bb37dd"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:63f3268ba69ace99cab4e3e3b5840b03340efed0948ab8f78d2fd87ee5442a4f"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:8d206346619592c6200148b01a2142798c989edcb9c896f9ac9722a99d4e77e6"}, {file = "MarkupSafe-2.0.1-cp36-cp36m-win32.whl", hash = "sha256:6c4ca60fa24e85fe25b912b01e62cb969d69a23a5d5867682dd3e80b5b02581d"}, {file = "MarkupSafe-2.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b2f4bf27480f5e5e8ce285a8c8fd176c0b03e93dcc6646477d4630e83440c6a9"}, {file = "MarkupSafe-2.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0717a7390a68be14b8c793ba258e075c6f4ca819f15edfc2a3a027c823718567"}, @@ -1688,6 +1064,9 @@ markupsafe = [ {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e9936f0b261d4df76ad22f8fee3ae83b60d7c3e871292cd42f40b81b70afae85"}, {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:2a7d351cbd8cfeb19ca00de495e224dea7e7d919659c2841bbb7f420ad03e2d6"}, {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:60bf42e36abfaf9aff1f50f52644b336d4f0a3fd6d8a60ca0d054ac9f713a864"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d6c7ebd4e944c85e2c3421e612a7057a2f48d478d79e61800d81468a8d842207"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f0567c4dc99f264f49fe27da5f735f414c4e7e7dd850cfd8e69f0862d7c74ea9"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:89c687013cb1cd489a0f0ac24febe8c7a666e6e221b783e53ac50ebf68e45d86"}, {file = "MarkupSafe-2.0.1-cp37-cp37m-win32.whl", hash = "sha256:a30e67a65b53ea0a5e62fe23682cfe22712e01f453b95233b25502f7c61cb415"}, {file = "MarkupSafe-2.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:611d1ad9a4288cf3e3c16014564df047fe08410e628f89805e475368bd304914"}, {file = "MarkupSafe-2.0.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5bb28c636d87e840583ee3adeb78172efc47c8b26127267f54a9c0ec251d41a9"}, @@ -1700,6 +1079,9 @@ markupsafe = [ {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fcf051089389abe060c9cd7caa212c707e58153afa2c649f00346ce6d260f1b"}, {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5855f8438a7d1d458206a2466bf82b0f104a3724bf96a1c781ab731e4201731a"}, {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3dd007d54ee88b46be476e293f48c85048603f5f516008bee124ddd891398ed6"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aca6377c0cb8a8253e493c6b451565ac77e98c2951c45f913e0b52facdcff83f"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:04635854b943835a6ea959e948d19dcd311762c5c0c6e1f0e16ee57022669194"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6300b8454aa6930a24b9618fbb54b5a68135092bc666f7b06901f897fa5c2fee"}, {file = "MarkupSafe-2.0.1-cp38-cp38-win32.whl", hash = "sha256:023cb26ec21ece8dc3907c0e8320058b2e0cb3c55cf9564da612bc325bed5e64"}, {file = "MarkupSafe-2.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:984d76483eb32f1bcb536dc27e4ad56bba4baa70be32fa87152832cdd9db0833"}, {file = "MarkupSafe-2.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:2ef54abee730b502252bcdf31b10dacb0a416229b72c18b19e24a4509f273d26"}, @@ -1712,19 +1094,49 @@ markupsafe = [ {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c47adbc92fc1bb2b3274c4b3a43ae0e4573d9fbff4f54cd484555edbf030baf1"}, {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:37205cac2a79194e3750b0af2a5720d95f786a55ce7df90c3af697bfa100eaac"}, {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1f2ade76b9903f39aa442b4aadd2177decb66525062db244b35d71d0ee8599b6"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4296f2b1ce8c86a6aea78613c34bb1a672ea0e3de9c6ba08a960efe0b0a09047"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f02365d4e99430a12647f09b6cc8bab61a6564363f313126f775eb4f6ef798e"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5b6d930f030f8ed98e3e6c98ffa0652bdb82601e7a016ec2ab5d7ff23baa78d1"}, {file = "MarkupSafe-2.0.1-cp39-cp39-win32.whl", hash = "sha256:10f82115e21dc0dfec9ab5c0223652f7197feb168c940f3ef61563fc2d6beb74"}, {file = "MarkupSafe-2.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:693ce3f9e70a6cf7d2fb9e6c9d8b204b6b39897a2c4a1aa65728d5ac97dcc1d8"}, {file = "MarkupSafe-2.0.1.tar.gz", hash = "sha256:594c67807fb16238b30c44bdf74f36c02cdf22d1c8cda91ef8a0ed8dabf5620a"}, ] -mccabe = [ + +[[package]] +name = "mccabe" +version = "0.6.1" +description = "McCabe checker, plugin for flake8" +optional = false +python-versions = "*" +files = [ {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"}, {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"}, ] -multiaddr = [ + +[[package]] +name = "multiaddr" +version = "0.0.9" +description = "Python implementation of jbenet's multiaddr" +optional = false +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*" +files = [ {file = "multiaddr-0.0.9-py2.py3-none-any.whl", hash = "sha256:5c0f862cbcf19aada2a899f80ef896ddb2e85614e0c8f04dd287c06c69dac95b"}, {file = "multiaddr-0.0.9.tar.gz", hash = "sha256:30b2695189edc3d5b90f1c303abb8f02d963a3a4edf2e7178b975eb417ab0ecf"}, ] -multidict = [ + +[package.dependencies] +base58 = "*" +netaddr = "*" +six = "*" +varint = "*" + +[[package]] +name = "multidict" +version = "5.1.0" +description = "multidict implementation" +optional = false +python-versions = ">=3.6" +files = [ {file = "multidict-5.1.0-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:b7993704f1a4b204e71debe6095150d43b2ee6150fa4f44d6d966ec356a8d61f"}, {file = "multidict-5.1.0-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:9dd6e9b1a913d096ac95d0399bd737e00f2af1e1594a787e00f7975778c8b2bf"}, {file = "multidict-5.1.0-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:f21756997ad8ef815d8ef3d34edd98804ab5ea337feedcd62fb52d22bf531281"}, @@ -1763,7 +1175,14 @@ multidict = [ {file = "multidict-5.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:7df80d07818b385f3129180369079bd6934cf70469f99daaebfac89dca288359"}, {file = "multidict-5.1.0.tar.gz", hash = "sha256:25b4e5f22d3a37ddf3effc0710ba692cfc792c2b9edfb9c05aefe823256e84d5"}, ] -mypy = [ + +[[package]] +name = "mypy" +version = "0.910" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.5" +files = [ {file = "mypy-0.910-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:a155d80ea6cee511a3694b108c4494a39f42de11ee4e61e72bc424c490e46457"}, {file = "mypy-0.910-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:b94e4b785e304a04ea0828759172a15add27088520dc7e49ceade7834275bedb"}, {file = "mypy-0.910-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:088cd9c7904b4ad80bec811053272986611b84221835e079be5bcad029e79dd9"}, @@ -1788,42 +1207,145 @@ mypy = [ {file = "mypy-0.910-py3-none-any.whl", hash = "sha256:ef565033fa5a958e62796867b1df10c40263ea9ded87164d67572834e57a174d"}, {file = "mypy-0.910.tar.gz", hash = "sha256:704098302473cb31a218f1775a873b376b30b4c18229421e9e9dc8916fd16150"}, ] -mypy-extensions = [ + +[package.dependencies] +mypy-extensions = ">=0.4.3,<0.5.0" +toml = "*" +typing-extensions = ">=3.7.4" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +python2 = ["typed-ast (>=1.4.0,<1.5.0)"] + +[[package]] +name = "mypy-extensions" +version = "0.4.3" +description = "Experimental type system extensions for programs checked with the mypy typechecker." +optional = false +python-versions = "*" +files = [ {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, ] -netaddr = [ + +[[package]] +name = "netaddr" +version = "0.8.0" +description = "A network address manipulation library for Python" +optional = false +python-versions = "*" +files = [ {file = "netaddr-0.8.0-py2.py3-none-any.whl", hash = "sha256:9666d0232c32d2656e5e5f8d735f58fd6c7457ce52fc21c98d45f2af78f990ac"}, {file = "netaddr-0.8.0.tar.gz", hash = "sha256:d6cc57c7a07b1d9d2e917aa8b36ae8ce61c35ba3fcd1b83ca31c5a0ee2b5a243"}, ] -nodeenv = [ + +[[package]] +name = "nodeenv" +version = "1.6.0" +description = "Node.js virtual environment builder" +optional = false +python-versions = "*" +files = [ {file = "nodeenv-1.6.0-py2.py3-none-any.whl", hash = "sha256:621e6b7076565ddcacd2db0294c0381e01fd28945ab36bcf00f41c5daf63bef7"}, {file = "nodeenv-1.6.0.tar.gz", hash = "sha256:3ef13ff90291ba2a4a7a4ff9a979b63ffdd00a464dbe04acf0ea6471517a4c2b"}, ] -packaging = [ + +[[package]] +name = "packaging" +version = "21.0" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.6" +files = [ {file = "packaging-21.0-py3-none-any.whl", hash = "sha256:c86254f9220d55e31cc94d69bade760f0847da8000def4dfe1c6b872fd14ff14"}, {file = "packaging-21.0.tar.gz", hash = "sha256:7dc96269f53a4ccec5c0670940a4281106dd0bb343f47b7471f779df49c2fbe7"}, ] -parsimonious = [ + +[package.dependencies] +pyparsing = ">=2.0.2" + +[[package]] +name = "parsimonious" +version = "0.8.1" +description = "(Soon to be) the fastest pure-Python PEG parser I could muster" +optional = false +python-versions = "*" +files = [ {file = "parsimonious-0.8.1.tar.gz", hash = "sha256:3add338892d580e0cb3b1a39e4a1b427ff9f687858fdd61097053742391a9f6b"}, ] -platformdirs = [ + +[package.dependencies] +six = ">=1.9.0" + +[[package]] +name = "platformdirs" +version = "2.2.0" +description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.6" +files = [ {file = "platformdirs-2.2.0-py3-none-any.whl", hash = "sha256:4666d822218db6a262bdfdc9c39d21f23b4cfdb08af331a81e92751daf6c866c"}, {file = "platformdirs-2.2.0.tar.gz", hash = "sha256:632daad3ab546bd8e6af0537d09805cec458dce201bccfe23012df73332e181e"}, ] -pluggy = [ + +[package.extras] +docs = ["Sphinx (>=4)", "furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)"] +test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"] + +[[package]] +name = "pluggy" +version = "0.13.1" +description = "plugin and hook calling mechanisms for python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ {file = "pluggy-0.13.1-py2.py3-none-any.whl", hash = "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d"}, {file = "pluggy-0.13.1.tar.gz", hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"}, ] -pre-commit = [ + +[package.extras] +dev = ["pre-commit", "tox"] + +[[package]] +name = "pre-commit" +version = "2.14.0" +description = "A framework for managing and maintaining multi-language pre-commit hooks." +optional = false +python-versions = ">=3.6.1" +files = [ {file = "pre_commit-2.14.0-py2.py3-none-any.whl", hash = "sha256:ec3045ae62e1aa2eecfb8e86fa3025c2e3698f77394ef8d2011ce0aedd85b2d4"}, {file = "pre_commit-2.14.0.tar.gz", hash = "sha256:2386eeb4cf6633712c7cc9ede83684d53c8cafca6b59f79c738098b51c6d206c"}, ] -prometheus-client = [ + +[package.dependencies] +cfgv = ">=2.0.0" +identify = ">=1.0.0" +nodeenv = ">=0.11.1" +pyyaml = ">=5.1" +toml = "*" +virtualenv = ">=20.0.8" + +[[package]] +name = "prometheus-client" +version = "0.12.0" +description = "Python client for the Prometheus monitoring system." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ {file = "prometheus_client-0.12.0-py2.py3-none-any.whl", hash = "sha256:317453ebabff0a1b02df7f708efbab21e3489e7072b61cb6957230dd004a0af0"}, {file = "prometheus_client-0.12.0.tar.gz", hash = "sha256:1b12ba48cee33b9b0b9de64a1047cbd3c5f2d0ab6ebcead7ddda613a750ec3c5"}, ] -protobuf = [ + +[package.extras] +twisted = ["twisted"] + +[[package]] +name = "protobuf" +version = "3.17.3" +description = "Protocol Buffers" +optional = false +python-versions = "*" +files = [ {file = "protobuf-3.17.3-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ab6bb0e270c6c58e7ff4345b3a803cc59dbee19ddf77a4719c5b635f1d547aa8"}, {file = "protobuf-3.17.3-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:13ee7be3c2d9a5d2b42a1030976f760f28755fcf5863c55b1460fd205e6cd637"}, {file = "protobuf-3.17.3-cp35-cp35m-macosx_10_9_intel.whl", hash = "sha256:1556a1049ccec58c7855a78d27e5c6e70e95103b32de9142bae0576e9200a1b0"}, @@ -1852,26 +1374,111 @@ protobuf = [ {file = "protobuf-3.17.3-py2.py3-none-any.whl", hash = "sha256:2bfb815216a9cd9faec52b16fd2bfa68437a44b67c56bee59bc3926522ecb04e"}, {file = "protobuf-3.17.3.tar.gz", hash = "sha256:72804ea5eaa9c22a090d2803813e280fb273b62d5ae497aaf3553d141c4fdd7b"}, ] -psycopg2 = [ - {file = "psycopg2-2.9.1-cp36-cp36m-win32.whl", hash = "sha256:7f91312f065df517187134cce8e395ab37f5b601a42446bdc0f0d51773621854"}, - {file = "psycopg2-2.9.1-cp36-cp36m-win_amd64.whl", hash = "sha256:830c8e8dddab6b6716a4bf73a09910c7954a92f40cf1d1e702fb93c8a919cc56"}, - {file = "psycopg2-2.9.1-cp37-cp37m-win32.whl", hash = "sha256:89409d369f4882c47f7ea20c42c5046879ce22c1e4ea20ef3b00a4dfc0a7f188"}, - {file = "psycopg2-2.9.1-cp37-cp37m-win_amd64.whl", hash = "sha256:7640e1e4d72444ef012e275e7b53204d7fab341fb22bc76057ede22fe6860b25"}, - {file = "psycopg2-2.9.1-cp38-cp38-win32.whl", hash = "sha256:079d97fc22de90da1d370c90583659a9f9a6ee4007355f5825e5f1c70dffc1fa"}, - {file = "psycopg2-2.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:2c992196719fadda59f72d44603ee1a2fdcc67de097eea38d41c7ad9ad246e62"}, - {file = "psycopg2-2.9.1-cp39-cp39-win32.whl", hash = "sha256:2087013c159a73e09713294a44d0c8008204d06326006b7f652bef5ace66eebb"}, - {file = "psycopg2-2.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:bf35a25f1aaa8a3781195595577fcbb59934856ee46b4f252f56ad12b8043bcf"}, - {file = "psycopg2-2.9.1.tar.gz", hash = "sha256:de5303a6f1d0a7a34b9d40e4d3bef684ccc44a49bbe3eb85e3c0bffb4a131b7c"}, -] -py = [ + +[package.dependencies] +six = ">=1.9" + +[[package]] +name = "psycopg2-binary" +version = "2.9.7" +description = "psycopg2 - Python-PostgreSQL Database Adapter" +optional = false +python-versions = ">=3.6" +files = [ + {file = "psycopg2-binary-2.9.7.tar.gz", hash = "sha256:1b918f64a51ffe19cd2e230b3240ba481330ce1d4b7875ae67305bd1d37b041c"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ea5f8ee87f1eddc818fc04649d952c526db4426d26bab16efbe5a0c52b27d6ab"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2993ccb2b7e80844d534e55e0f12534c2871952f78e0da33c35e648bf002bbff"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dbbc3c5d15ed76b0d9db7753c0db40899136ecfe97d50cbde918f630c5eb857a"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:692df8763b71d42eb8343f54091368f6f6c9cfc56dc391858cdb3c3ef1e3e584"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9dcfd5d37e027ec393a303cc0a216be564b96c80ba532f3d1e0d2b5e5e4b1e6e"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17cc17a70dfb295a240db7f65b6d8153c3d81efb145d76da1e4a096e9c5c0e63"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e5666632ba2b0d9757b38fc17337d84bdf932d38563c5234f5f8c54fd01349c9"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7db7b9b701974c96a88997d458b38ccb110eba8f805d4b4f74944aac48639b42"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c82986635a16fb1fa15cd5436035c88bc65c3d5ced1cfaac7f357ee9e9deddd4"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4fe13712357d802080cfccbf8c6266a3121dc0e27e2144819029095ccf708372"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-win32.whl", hash = "sha256:122641b7fab18ef76b18860dd0c772290566b6fb30cc08e923ad73d17461dc63"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-win_amd64.whl", hash = "sha256:f8651cf1f144f9ee0fa7d1a1df61a9184ab72962531ca99f077bbdcba3947c58"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4ecc15666f16f97709106d87284c136cdc82647e1c3f8392a672616aed3c7151"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3fbb1184c7e9d28d67671992970718c05af5f77fc88e26fd7136613c4ece1f89"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a7968fd20bd550431837656872c19575b687f3f6f98120046228e451e4064df"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:094af2e77a1976efd4956a031028774b827029729725e136514aae3cdf49b87b"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:26484e913d472ecb6b45937ea55ce29c57c662066d222fb0fbdc1fab457f18c5"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f309b77a7c716e6ed9891b9b42953c3ff7d533dc548c1e33fddc73d2f5e21f9"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6d92e139ca388ccfe8c04aacc163756e55ba4c623c6ba13d5d1595ed97523e4b"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:2df562bb2e4e00ee064779902d721223cfa9f8f58e7e52318c97d139cf7f012d"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:4eec5d36dbcfc076caab61a2114c12094c0b7027d57e9e4387b634e8ab36fd44"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1011eeb0c51e5b9ea1016f0f45fa23aca63966a4c0afcf0340ccabe85a9f65bd"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-win32.whl", hash = "sha256:ded8e15f7550db9e75c60b3d9fcbc7737fea258a0f10032cdb7edc26c2a671fd"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-win_amd64.whl", hash = "sha256:8a136c8aaf6615653450817a7abe0fc01e4ea720ae41dfb2823eccae4b9062a3"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:2dec5a75a3a5d42b120e88e6ed3e3b37b46459202bb8e36cd67591b6e5feebc1"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc10da7e7df3380426521e8c1ed975d22df678639da2ed0ec3244c3dc2ab54c8"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee919b676da28f78f91b464fb3e12238bd7474483352a59c8a16c39dfc59f0c5"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb1c0e682138f9067a58fc3c9a9bf1c83d8e08cfbee380d858e63196466d5c86"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00d8db270afb76f48a499f7bb8fa70297e66da67288471ca873db88382850bf4"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9b0c2b466b2f4d89ccc33784c4ebb1627989bd84a39b79092e560e937a11d4ac"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:51d1b42d44f4ffb93188f9b39e6d1c82aa758fdb8d9de65e1ddfe7a7d250d7ad"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:11abdbfc6f7f7dea4a524b5f4117369b0d757725798f1593796be6ece20266cb"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:f02f4a72cc3ab2565c6d9720f0343cb840fb2dc01a2e9ecb8bc58ccf95dc5c06"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-win32.whl", hash = "sha256:81d5dd2dd9ab78d31a451e357315f201d976c131ca7d43870a0e8063b6b7a1ec"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-win_amd64.whl", hash = "sha256:62cb6de84d7767164a87ca97e22e5e0a134856ebcb08f21b621c6125baf61f16"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:59f7e9109a59dfa31efa022e94a244736ae401526682de504e87bd11ce870c22"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:95a7a747bdc3b010bb6a980f053233e7610276d55f3ca506afff4ad7749ab58a"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c721ee464e45ecf609ff8c0a555018764974114f671815a0a7152aedb9f3343"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4f37bbc6588d402980ffbd1f3338c871368fb4b1cfa091debe13c68bb3852b3"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac83ab05e25354dad798401babaa6daa9577462136ba215694865394840e31f8"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:024eaeb2a08c9a65cd5f94b31ace1ee3bb3f978cd4d079406aef85169ba01f08"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1c31c2606ac500dbd26381145684d87730a2fac9a62ebcfbaa2b119f8d6c19f4"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:42a62ef0e5abb55bf6ffb050eb2b0fcd767261fa3faf943a4267539168807522"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:7952807f95c8eba6a8ccb14e00bf170bb700cafcec3924d565235dffc7dc4ae8"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e02bc4f2966475a7393bd0f098e1165d470d3fa816264054359ed4f10f6914ea"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-win32.whl", hash = "sha256:fdca0511458d26cf39b827a663d7d87db6f32b93efc22442a742035728603d5f"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-win_amd64.whl", hash = "sha256:d0b16e5bb0ab78583f0ed7ab16378a0f8a89a27256bb5560402749dbe8a164d7"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6822c9c63308d650db201ba22fe6648bd6786ca6d14fdaf273b17e15608d0852"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f94cb12150d57ea433e3e02aabd072205648e86f1d5a0a692d60242f7809b15"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5ee89587696d808c9a00876065d725d4ae606f5f7853b961cdbc348b0f7c9a1"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad5ec10b53cbb57e9a2e77b67e4e4368df56b54d6b00cc86398578f1c635f329"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:642df77484b2dcaf87d4237792246d8068653f9e0f5c025e2c692fc56b0dda70"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a6a8b575ac45af1eaccbbcdcf710ab984fd50af048fe130672377f78aaff6fc1"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f955aa50d7d5220fcb6e38f69ea126eafecd812d96aeed5d5f3597f33fad43bb"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ad26d4eeaa0d722b25814cce97335ecf1b707630258f14ac4d2ed3d1d8415265"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:ced63c054bdaf0298f62681d5dcae3afe60cbae332390bfb1acf0e23dcd25fc8"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2b04da24cbde33292ad34a40db9832a80ad12de26486ffeda883413c9e1b1d5e"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-win32.whl", hash = "sha256:18f12632ab516c47c1ac4841a78fddea6508a8284c7cf0f292cb1a523f2e2379"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-win_amd64.whl", hash = "sha256:eb3b8d55924a6058a26db69fb1d3e7e32695ff8b491835ba9f479537e14dcf9f"}, +] + +[[package]] +name = "py" +version = "1.10.0" +description = "library with cross-python path, ini-parsing, io, code, log facilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ {file = "py-1.10.0-py2.py3-none-any.whl", hash = "sha256:3b80836aa6d1feeaa108e046da6423ab8f6ceda6468545ae8d02d9d58d18818a"}, {file = "py-1.10.0.tar.gz", hash = "sha256:21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3"}, ] -pycoingecko = [ + +[[package]] +name = "pycoingecko" +version = "2.2.0" +description = "Python wrapper around the CoinGecko API" +optional = false +python-versions = "*" +files = [ {file = "pycoingecko-2.2.0-py3-none-any.whl", hash = "sha256:3646968c8c6936ca4e94b5f562328a763c12a0e9644141cb0215089dda59fe01"}, {file = "pycoingecko-2.2.0.tar.gz", hash = "sha256:9add73085729b1f10f93c7948490b09e8cd47c29bebe47dccb319e8b49502d0c"}, ] -pycryptodome = [ + +[package.dependencies] +requests = "*" + +[[package]] +name = "pycryptodome" +version = "3.10.1" +description = "Cryptographic library for Python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ {file = "pycryptodome-3.10.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:1c5e1ca507de2ad93474be5cfe2bfa76b7cf039a1a32fc196f40935944871a06"}, {file = "pycryptodome-3.10.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:6260e24d41149268122dd39d4ebd5941e9d107f49463f7e071fd397e29923b0c"}, {file = "pycryptodome-3.10.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:3f840c49d38986f6e17dbc0673d37947c88bc9d2d9dba1c01b979b36f8447db1"}, @@ -1903,7 +1510,14 @@ pycryptodome = [ {file = "pycryptodome-3.10.1-pp36-pypy36_pp73-win32.whl", hash = "sha256:6bbf7fee7b7948b29d7e71fcacf48bac0c57fb41332007061a933f2d996f9713"}, {file = "pycryptodome-3.10.1.tar.gz", hash = "sha256:3e2e3a06580c5f190df843cdb90ea28d61099cf4924334d5297a995de68e4673"}, ] -pydantic = [ + +[[package]] +name = "pydantic" +version = "1.8.2" +description = "Data validation and settings management using python 3.6 type hinting" +optional = false +python-versions = ">=3.6.1" +files = [ {file = "pydantic-1.8.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:05ddfd37c1720c392f4e0d43c484217b7521558302e7069ce8d318438d297739"}, {file = "pydantic-1.8.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:a7c6002203fe2c5a1b5cbb141bb85060cbff88c2d78eccbc72d97eb7022c43e4"}, {file = "pydantic-1.8.2-cp36-cp36m-manylinux2014_i686.whl", hash = "sha256:589eb6cd6361e8ac341db97602eb7f354551482368a37f4fd086c0733548308e"}, @@ -1927,15 +1541,51 @@ pydantic = [ {file = "pydantic-1.8.2-py3-none-any.whl", hash = "sha256:fec866a0b59f372b7e776f2d7308511784dace622e0992a0b59ea3ccee0ae833"}, {file = "pydantic-1.8.2.tar.gz", hash = "sha256:26464e57ccaafe72b7ad156fdaa4e9b9ef051f69e175dbbb463283000c05ab7b"}, ] -pylint = [ + +[package.dependencies] +typing-extensions = ">=3.7.4.3" + +[package.extras] +dotenv = ["python-dotenv (>=0.10.4)"] +email = ["email-validator (>=1.0.3)"] + +[[package]] +name = "pylint" +version = "2.10.2" +description = "python code static checker" +optional = false +python-versions = "~=3.6" +files = [ {file = "pylint-2.10.2-py3-none-any.whl", hash = "sha256:e178e96b6ba171f8ef51fbce9ca30931e6acbea4a155074d80cc081596c9e852"}, {file = "pylint-2.10.2.tar.gz", hash = "sha256:6758cce3ddbab60c52b57dcc07f0c5d779e5daf0cf50f6faacbef1d3ea62d2a1"}, ] -pyparsing = [ + +[package.dependencies] +astroid = ">=2.7.2,<2.8" +colorama = {version = "*", markers = "sys_platform == \"win32\""} +isort = ">=4.2.5,<6" +mccabe = ">=0.6,<0.7" +platformdirs = ">=2.2.0" +toml = ">=0.7.1" + +[[package]] +name = "pyparsing" +version = "2.4.7" +description = "Python parsing module" +optional = false +python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ {file = "pyparsing-2.4.7-py2.py3-none-any.whl", hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b"}, {file = "pyparsing-2.4.7.tar.gz", hash = "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1"}, ] -pyrsistent = [ + +[[package]] +name = "pyrsistent" +version = "0.18.0" +description = "Persistent/Functional/Immutable data structures" +optional = false +python-versions = ">=3.6" +files = [ {file = "pyrsistent-0.18.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f4c8cabb46ff8e5d61f56a037974228e978f26bfefce4f61a4b1ac0ba7a2ab72"}, {file = "pyrsistent-0.18.0-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:da6e5e818d18459fa46fac0a4a4e543507fe1110e808101277c5a2b5bab0cd2d"}, {file = "pyrsistent-0.18.0-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:5e4395bbf841693eaebaa5bb5c8f5cdbb1d139e07c975c682ec4e4f8126e03d2"}, @@ -1958,35 +1608,117 @@ pyrsistent = [ {file = "pyrsistent-0.18.0-cp39-cp39-win_amd64.whl", hash = "sha256:404e1f1d254d314d55adb8d87f4f465c8693d6f902f67eb6ef5b4526dc58e6ea"}, {file = "pyrsistent-0.18.0.tar.gz", hash = "sha256:773c781216f8c2900b42a7b638d5b517bb134ae1acbebe4d1e8f1f41ea60eb4b"}, ] -pytest = [ + +[[package]] +name = "pytest" +version = "6.2.4" +description = "pytest: simple powerful testing with Python" +optional = false +python-versions = ">=3.6" +files = [ {file = "pytest-6.2.4-py3-none-any.whl", hash = "sha256:91ef2131a9bd6be8f76f1f08eac5c5317221d6ad1e143ae03894b862e8976890"}, {file = "pytest-6.2.4.tar.gz", hash = "sha256:50bcad0a0b9c5a72c8e4e7c9855a3ad496ca6a881a3641b4260605450772c54b"}, ] -pytest-cov = [ + +[package.dependencies] +atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} +attrs = ">=19.2.0" +colorama = {version = "*", markers = "sys_platform == \"win32\""} +iniconfig = "*" +packaging = "*" +pluggy = ">=0.12,<1.0.0a1" +py = ">=1.8.2" +toml = "*" + +[package.extras] +testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] + +[[package]] +name = "pytest-cov" +version = "2.12.1" +description = "Pytest plugin for measuring coverage." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ {file = "pytest-cov-2.12.1.tar.gz", hash = "sha256:261ceeb8c227b726249b376b8526b600f38667ee314f910353fa318caa01f4d7"}, {file = "pytest_cov-2.12.1-py2.py3-none-any.whl", hash = "sha256:261bb9e47e65bd099c89c3edf92972865210c36813f80ede5277dceb77a4a62a"}, ] -pytest-profiling = [ + +[package.dependencies] +coverage = ">=5.2.1" +pytest = ">=4.6" +toml = "*" + +[package.extras] +testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtualenv"] + +[[package]] +name = "pytest-profiling" +version = "1.7.0" +description = "Profiling plugin for py.test" +optional = false +python-versions = "*" +files = [ {file = "pytest-profiling-1.7.0.tar.gz", hash = "sha256:93938f147662225d2b8bd5af89587b979652426a8a6ffd7e73ec4a23e24b7f29"}, - {file = "pytest_profiling-1.7.0-py2.7.egg", hash = "sha256:3b255f9db36cb2dd7536a8e7e294c612c0be7f7850a7d30754878e4315d56600"}, {file = "pytest_profiling-1.7.0-py2.py3-none-any.whl", hash = "sha256:999cc9ac94f2e528e3f5d43465da277429984a1c237ae9818f8cfd0b06acb019"}, - {file = "pytest_profiling-1.7.0-py3.6.egg", hash = "sha256:6bce4e2edc04409d2f3158c16750fab8074f62d404cc38eeb075dff7fcbb996c"}, ] -pytest-sugar = [ + +[package.dependencies] +gprof2dot = "*" +pytest = "*" +six = "*" + +[package.extras] +tests = ["pytest-virtualenv"] + +[[package]] +name = "pytest-sugar" +version = "0.9.4" +description = "pytest-sugar is a plugin for pytest that changes the default look and feel of pytest (e.g. progressbar, show tests that fail instantly)." +optional = false +python-versions = "*" +files = [ {file = "pytest-sugar-0.9.4.tar.gz", hash = "sha256:b1b2186b0a72aada6859bea2a5764145e3aaa2c1cfbb23c3a19b5f7b697563d3"}, ] -python-dateutil = [ + +[package.dependencies] +packaging = ">=14.1" +pytest = ">=2.9" +termcolor = ">=1.1.0" + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, ] -python-editor = [ + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-editor" +version = "1.0.4" +description = "Programmatically open an editor, capture the result." +optional = false +python-versions = "*" +files = [ {file = "python-editor-1.0.4.tar.gz", hash = "sha256:51fda6bcc5ddbbb7063b2af7509e43bd84bfc32a4ff71349ec7847713882327b"}, {file = "python_editor-1.0.4-py2-none-any.whl", hash = "sha256:5f98b069316ea1c2ed3f67e7f5df6c0d8f10b689964a4a811ff64f0106819ec8"}, - {file = "python_editor-1.0.4-py2.7.egg", hash = "sha256:ea87e17f6ec459e780e4221f295411462e0d0810858e055fc514684350a2f522"}, {file = "python_editor-1.0.4-py3-none-any.whl", hash = "sha256:1bf6e860a8ad52a14c3ee1252d5dc25b2030618ed80c022598f00176adc8367d"}, - {file = "python_editor-1.0.4-py3.5.egg", hash = "sha256:c3da2053dbab6b29c94e43c486ff67206eafbe7eb52dbec7390b5e2fb05aac77"}, ] -pywin32 = [ + +[[package]] +name = "pywin32" +version = "301" +description = "Python for Window Extensions" +optional = false +python-versions = "*" +files = [ {file = "pywin32-301-cp35-cp35m-win32.whl", hash = "sha256:93367c96e3a76dfe5003d8291ae16454ca7d84bb24d721e0b74a07610b7be4a7"}, {file = "pywin32-301-cp35-cp35m-win_amd64.whl", hash = "sha256:9635df6998a70282bd36e7ac2a5cef9ead1627b0a63b17c731312c7a0daebb72"}, {file = "pywin32-301-cp36-cp36m-win32.whl", hash = "sha256:c866f04a182a8cb9b7855de065113bbd2e40524f570db73ef1ee99ff0a5cc2f0"}, @@ -1998,42 +1730,80 @@ pywin32 = [ {file = "pywin32-301-cp39-cp39-win32.whl", hash = "sha256:595d397df65f1b2e0beaca63a883ae6d8b6df1cdea85c16ae85f6d2e648133fe"}, {file = "pywin32-301-cp39-cp39-win_amd64.whl", hash = "sha256:87604a4087434cd814ad8973bd47d6524bd1fa9e971ce428e76b62a5e0860fdf"}, ] -pyyaml = [ - {file = "PyYAML-5.4.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:3b2b1824fe7112845700f815ff6a489360226a5609b96ec2190a45e62a9fc922"}, - {file = "PyYAML-5.4.1-cp27-cp27m-win32.whl", hash = "sha256:129def1b7c1bf22faffd67b8f3724645203b79d8f4cc81f674654d9902cb4393"}, - {file = "PyYAML-5.4.1-cp27-cp27m-win_amd64.whl", hash = "sha256:4465124ef1b18d9ace298060f4eccc64b0850899ac4ac53294547536533800c8"}, - {file = "PyYAML-5.4.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:bb4191dfc9306777bc594117aee052446b3fa88737cd13b7188d0e7aa8162185"}, - {file = "PyYAML-5.4.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:6c78645d400265a062508ae399b60b8c167bf003db364ecb26dcab2bda048253"}, - {file = "PyYAML-5.4.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:4e0583d24c881e14342eaf4ec5fbc97f934b999a6828693a99157fde912540cc"}, - {file = "PyYAML-5.4.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:72a01f726a9c7851ca9bfad6fd09ca4e090a023c00945ea05ba1638c09dc3347"}, - {file = "PyYAML-5.4.1-cp36-cp36m-manylinux2014_s390x.whl", hash = "sha256:895f61ef02e8fed38159bb70f7e100e00f471eae2bc838cd0f4ebb21e28f8541"}, - {file = "PyYAML-5.4.1-cp36-cp36m-win32.whl", hash = "sha256:3bd0e463264cf257d1ffd2e40223b197271046d09dadf73a0fe82b9c1fc385a5"}, - {file = "PyYAML-5.4.1-cp36-cp36m-win_amd64.whl", hash = "sha256:e4fac90784481d221a8e4b1162afa7c47ed953be40d31ab4629ae917510051df"}, - {file = "PyYAML-5.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5accb17103e43963b80e6f837831f38d314a0495500067cb25afab2e8d7a4018"}, - {file = "PyYAML-5.4.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:e1d4970ea66be07ae37a3c2e48b5ec63f7ba6804bdddfdbd3cfd954d25a82e63"}, - {file = "PyYAML-5.4.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:cb333c16912324fd5f769fff6bc5de372e9e7a202247b48870bc251ed40239aa"}, - {file = "PyYAML-5.4.1-cp37-cp37m-manylinux2014_s390x.whl", hash = "sha256:fe69978f3f768926cfa37b867e3843918e012cf83f680806599ddce33c2c68b0"}, - {file = "PyYAML-5.4.1-cp37-cp37m-win32.whl", hash = "sha256:dd5de0646207f053eb0d6c74ae45ba98c3395a571a2891858e87df7c9b9bd51b"}, - {file = "PyYAML-5.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:08682f6b72c722394747bddaf0aa62277e02557c0fd1c42cb853016a38f8dedf"}, - {file = "PyYAML-5.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d2d9808ea7b4af864f35ea216be506ecec180628aced0704e34aca0b040ffe46"}, - {file = "PyYAML-5.4.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:8c1be557ee92a20f184922c7b6424e8ab6691788e6d86137c5d93c1a6ec1b8fb"}, - {file = "PyYAML-5.4.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:fd7f6999a8070df521b6384004ef42833b9bd62cfee11a09bda1079b4b704247"}, - {file = "PyYAML-5.4.1-cp38-cp38-manylinux2014_s390x.whl", hash = "sha256:bfb51918d4ff3d77c1c856a9699f8492c612cde32fd3bcd344af9be34999bfdc"}, - {file = "PyYAML-5.4.1-cp38-cp38-win32.whl", hash = "sha256:fa5ae20527d8e831e8230cbffd9f8fe952815b2b7dae6ffec25318803a7528fc"}, - {file = "PyYAML-5.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:0f5f5786c0e09baddcd8b4b45f20a7b5d61a7e7e99846e3c799b05c7c53fa696"}, - {file = "PyYAML-5.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:294db365efa064d00b8d1ef65d8ea2c3426ac366c0c4368d930bf1c5fb497f77"}, - {file = "PyYAML-5.4.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:74c1485f7707cf707a7aef42ef6322b8f97921bd89be2ab6317fd782c2d53183"}, - {file = "PyYAML-5.4.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:d483ad4e639292c90170eb6f7783ad19490e7a8defb3e46f97dfe4bacae89122"}, - {file = "PyYAML-5.4.1-cp39-cp39-manylinux2014_s390x.whl", hash = "sha256:fdc842473cd33f45ff6bce46aea678a54e3d21f1b61a7750ce3c498eedfe25d6"}, - {file = "PyYAML-5.4.1-cp39-cp39-win32.whl", hash = "sha256:49d4cdd9065b9b6e206d0595fee27a96b5dd22618e7520c33204a4a3239d5b10"}, - {file = "PyYAML-5.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:c20cfa2d49991c8b4147af39859b167664f2ad4561704ee74c1de03318e898db"}, - {file = "PyYAML-5.4.1.tar.gz", hash = "sha256:607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e"}, -] -redis = [ + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "redis" +version = "4.0.2" +description = "Python client for Redis database and key-value store" +optional = false +python-versions = ">=3.6" +files = [ {file = "redis-4.0.2-py3-none-any.whl", hash = "sha256:c8481cf414474e3497ec7971a1ba9b998c8efad0f0d289a009a5bbef040894f9"}, {file = "redis-4.0.2.tar.gz", hash = "sha256:ccf692811f2c1fc7a92b466aa2599e4a6d2d73d5f736a2c70be600657c0da34a"}, ] -regex = [ + +[package.dependencies] +deprecated = "*" + +[package.extras] +hiredis = ["hiredis (>=1.0.0)"] + +[[package]] +name = "regex" +version = "2021.10.8" +description = "Alternative regular expression module, to replace re." +optional = false +python-versions = "*" +files = [ {file = "regex-2021.10.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:094a905e87a4171508c2a0e10217795f83c636ccc05ddf86e7272c26e14056ae"}, {file = "regex-2021.10.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:981c786293a3115bc14c103086ae54e5ee50ca57f4c02ce7cf1b60318d1e8072"}, {file = "regex-2021.10.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b0f2f874c6a157c91708ac352470cb3bef8e8814f5325e3c5c7a0533064c6a24"}, @@ -2082,23 +1852,100 @@ regex = [ {file = "regex-2021.10.8-cp39-cp39-win_amd64.whl", hash = "sha256:b04e512eb628ea82ed86eb31c0f7fc6842b46bf2601b66b1356a7008327f7700"}, {file = "regex-2021.10.8.tar.gz", hash = "sha256:26895d7c9bbda5c52b3635ce5991caa90fbb1ddfac9c9ff1c7ce505e2282fb2a"}, ] -requests = [ + +[[package]] +name = "requests" +version = "2.26.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ {file = "requests-2.26.0-py2.py3-none-any.whl", hash = "sha256:6c1246513ecd5ecd4528a0906f910e8f0f9c6b8ec72030dc9fd154dc1a6efd24"}, {file = "requests-2.26.0.tar.gz", hash = "sha256:b8aa58f8cf793ffd8782d3d8cb19e66ef36f7aba4353eec859e74678b01b07a7"}, ] -rlp = [ + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = {version = ">=2.0.0,<2.1.0", markers = "python_version >= \"3\""} +idna = {version = ">=2.5,<4", markers = "python_version >= \"3\""} +urllib3 = ">=1.21.1,<1.27" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<5)"] + +[[package]] +name = "rlp" +version = "2.0.1" +description = "A package for Recursive Length Prefix encoding and decoding" +optional = false +python-versions = "*" +files = [ {file = "rlp-2.0.1-py2.py3-none-any.whl", hash = "sha256:52a57c9f53f03c88b189283734b397314288250cc4a3c4113e9e36e2ac6bdd16"}, {file = "rlp-2.0.1.tar.gz", hash = "sha256:665e8312750b3fc5f7002e656d05b9dcb6e93b6063df40d95c49ad90c19d1f0e"}, ] -s3transfer = [ + +[package.dependencies] +eth-utils = ">=1.0.2,<2" + +[package.extras] +dev = ["Sphinx (>=1.6.5,<2)", "bumpversion (>=0.5.3,<1)", "flake8 (==3.4.1)", "hypothesis (==5.19.0)", "ipython", "pytest (==5.4.3)", "pytest-watch (>=4.1.0,<5)", "pytest-xdist", "setuptools (>=36.2.0)", "sphinx-rtd-theme (>=0.1.9)", "tox (>=2.9.1,<3)", "twine", "wheel"] +doc = ["Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9)"] +lint = ["flake8 (==3.4.1)"] +rust-backend = ["rusty-rlp (>=0.1.15,<0.2)"] +test = ["hypothesis (==5.19.0)", "pytest (==5.4.3)", "tox (>=2.9.1,<3)"] + +[[package]] +name = "s3transfer" +version = "0.5.1" +description = "An Amazon S3 Transfer Manager" +optional = false +python-versions = ">= 3.6" +files = [ {file = "s3transfer-0.5.1-py3-none-any.whl", hash = "sha256:25c140f5c66aa79e1ac60be50dcd45ddc59e83895f062a3aab263b870102911f"}, {file = "s3transfer-0.5.1.tar.gz", hash = "sha256:69d264d3e760e569b78aaa0f22c97e955891cd22e32b10c51f784eeda4d9d10a"}, ] -six = [ + +[package.dependencies] +botocore = ">=1.12.36,<2.0a.0" + +[package.extras] +crt = ["botocore[crt] (>=1.20.29,<2.0a.0)"] + +[[package]] +name = "setuptools" +version = "68.0.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "setuptools-68.0.0-py3-none-any.whl", hash = "sha256:11e52c67415a381d10d6b462ced9cfb97066179f0e871399e006c4ab101fc85f"}, + {file = "setuptools-68.0.0.tar.gz", hash = "sha256:baf1fdb41c6da4cd2eae722e135500da913332ab3f2f5c7d33af9b492acb5235"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, ] -sqlalchemy = [ + +[[package]] +name = "sqlalchemy" +version = "1.4.23" +description = "Database Abstraction Library" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ {file = "SQLAlchemy-1.4.23-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:25e9b2e5ca088879ce3740d9ccd4d58cb9061d49566a0b5e12166f403d6f4da0"}, {file = "SQLAlchemy-1.4.23-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:d9667260125688c71ccf9af321c37e9fb71c2693575af8210f763bfbbee847c7"}, {file = "SQLAlchemy-1.4.23-cp27-cp27m-win32.whl", hash = "sha256:cec1a4c6ddf5f82191301a25504f0e675eccd86635f0d5e4c69e0661691931c5"}, @@ -2130,38 +1977,162 @@ sqlalchemy = [ {file = "SQLAlchemy-1.4.23-cp39-cp39-win_amd64.whl", hash = "sha256:0aa746d1173587743960ff17b89b540e313aacfe6c1e9c81aa48393182c36d4f"}, {file = "SQLAlchemy-1.4.23.tar.gz", hash = "sha256:76ff246881f528089bf19385131b966197bb494653990396d2ce138e2a447583"}, ] -termcolor = [ + +[package.dependencies] +greenlet = {version = "!=0.4.17", markers = "python_version >= \"3\" and platform_machine in \"x86_64 X86_64 aarch64 AARCH64 ppc64le PPC64LE amd64 AMD64 win32 WIN32\""} + +[package.extras] +aiomysql = ["aiomysql", "greenlet (!=0.4.17)"] +aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)"] +asyncio = ["greenlet (!=0.4.17)"] +mariadb-connector = ["mariadb (>=1.0.1)"] +mssql = ["pyodbc"] +mssql-pymssql = ["pymssql"] +mssql-pyodbc = ["pyodbc"] +mypy = ["mypy (>=0.910)", "sqlalchemy2-stubs"] +mysql = ["mysqlclient (>=1.4.0)", "mysqlclient (>=1.4.0,<2)"] +mysql-connector = ["mysqlconnector"] +oracle = ["cx-oracle (>=7)", "cx-oracle (>=7,<8)"] +postgresql = ["psycopg2 (>=2.7)"] +postgresql-asyncpg = ["asyncpg", "greenlet (!=0.4.17)"] +postgresql-pg8000 = ["pg8000 (>=1.16.6)"] +postgresql-psycopg2binary = ["psycopg2-binary"] +postgresql-psycopg2cffi = ["psycopg2cffi"] +pymysql = ["pymysql", "pymysql (<1)"] +sqlcipher = ["sqlcipher3-binary"] + +[[package]] +name = "termcolor" +version = "1.1.0" +description = "ANSII Color formatting for output in terminal." +optional = false +python-versions = "*" +files = [ {file = "termcolor-1.1.0.tar.gz", hash = "sha256:1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b"}, ] -toml = [ + +[[package]] +name = "toml" +version = "0.10.2" +description = "Python Library for Tom's Obvious, Minimal Language" +optional = false +python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, ] -toolz = [ + +[[package]] +name = "toolz" +version = "0.11.1" +description = "List processing tools and functional utilities" +optional = false +python-versions = ">=3.5" +files = [ {file = "toolz-0.11.1-py3-none-any.whl", hash = "sha256:1bc473acbf1a1db4e72a1ce587be347450e8f08324908b8a266b486f408f04d5"}, {file = "toolz-0.11.1.tar.gz", hash = "sha256:c7a47921f07822fe534fb1c01c9931ab335a4390c782bd28c6bcc7c2f71f3fbf"}, ] -typing-extensions = [ + +[[package]] +name = "typing-extensions" +version = "3.10.0.0" +description = "Backported and Experimental Type Hints for Python 3.5+" +optional = false +python-versions = "*" +files = [ {file = "typing_extensions-3.10.0.0-py2-none-any.whl", hash = "sha256:0ac0f89795dd19de6b97debb0c6af1c70987fd80a2d62d1958f7e56fcc31b497"}, {file = "typing_extensions-3.10.0.0-py3-none-any.whl", hash = "sha256:779383f6086d90c99ae41cf0ff39aac8a7937a9283ce0a414e5dd782f4c94a84"}, {file = "typing_extensions-3.10.0.0.tar.gz", hash = "sha256:50b6f157849174217d0656f99dc82fe932884fb250826c18350e159ec6cdf342"}, ] -urllib3 = [ + +[[package]] +name = "urllib3" +version = "1.26.6" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" +files = [ {file = "urllib3-1.26.6-py2.py3-none-any.whl", hash = "sha256:39fb8672126159acb139a7718dd10806104dec1e2f0f6c88aab05d17df10c8d4"}, {file = "urllib3-1.26.6.tar.gz", hash = "sha256:f57b4c16c62fa2760b7e3d97c35b255512fb6b59a259730f36ba32ce9f8e342f"}, ] -varint = [ + +[package.extras] +brotli = ["brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "varint" +version = "1.0.2" +description = "Simple python varint implementation" +optional = false +python-versions = "*" +files = [ {file = "varint-1.0.2.tar.gz", hash = "sha256:a6ecc02377ac5ee9d65a6a8ad45c9ff1dac8ccee19400a5950fb51d594214ca5"}, ] -virtualenv = [ + +[[package]] +name = "virtualenv" +version = "20.7.2" +description = "Virtual Python Environment builder" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +files = [ {file = "virtualenv-20.7.2-py2.py3-none-any.whl", hash = "sha256:e4670891b3a03eb071748c569a87cceaefbf643c5bac46d996c5a45c34aa0f06"}, {file = "virtualenv-20.7.2.tar.gz", hash = "sha256:9ef4e8ee4710826e98ff3075c9a4739e2cb1040de6a2a8d35db0055840dc96a0"}, ] -web3 = [ + +[package.dependencies] +"backports.entry-points-selectable" = ">=1.0.4" +distlib = ">=0.3.1,<1" +filelock = ">=3.0.0,<4" +platformdirs = ">=2,<3" +six = ">=1.9.0,<2" + +[package.extras] +docs = ["proselint (>=0.10.2)", "sphinx (>=3)", "sphinx-argparse (>=0.2.5)", "sphinx-rtd-theme (>=0.4.3)", "towncrier (>=19.9.0rc1)"] +testing = ["coverage (>=4)", "coverage-enable-subprocess (>=1)", "flaky (>=3)", "packaging (>=20.0)", "pytest (>=4)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.1)", "pytest-mock (>=2)", "pytest-randomly (>=1)", "pytest-timeout (>=1)"] + +[[package]] +name = "web3" +version = "5.23.0" +description = "Web3.py" +optional = false +python-versions = ">=3.6,<4" +files = [ {file = "web3-5.23.0-py3-none-any.whl", hash = "sha256:79dc246ef0d5227f926aa09aad649f86579055129c0a8b92bb35c5727920184c"}, {file = "web3-5.23.0.tar.gz", hash = "sha256:c617e16a8b27eb606bd9bb9e457ddefef71609bcc671983f184fee9ce9361a35"}, ] -websockets = [ + +[package.dependencies] +aiohttp = ">=3.7.4.post0,<4" +eth-abi = ">=2.0.0b6,<3.0.0" +eth-account = ">=0.5.5,<0.6.0" +eth-hash = {version = ">=0.2.0,<1.0.0", extras = ["pycryptodome"]} +eth-typing = ">=2.0.0,<3.0.0" +eth-utils = ">=1.9.5,<2.0.0" +hexbytes = ">=0.1.0,<1.0.0" +ipfshttpclient = "0.7.0" +jsonschema = ">=3.2.0,<4.0.0" +lru-dict = ">=1.1.6,<2.0.0" +protobuf = ">=3.10.0,<4" +pywin32 = {version = ">=223", markers = "platform_system == \"Windows\""} +requests = ">=2.16.0,<3.0.0" +websockets = ">=9.1,<10" + +[package.extras] +dev = ["bumpversion", "click (>=5.1)", "configparser (==3.5.0)", "contextlib2 (>=0.5.4)", "eth-tester[py-evm] (==v0.5.0-beta.4)", "flake8 (==3.8.3)", "flaky (>=3.7.0,<4)", "hypothesis (>=3.31.2,<6)", "isort (>=4.2.15,<4.3.5)", "mock", "mypy (==0.812)", "pluggy (==0.13.1)", "py-geth (>=3.4.0,<4)", "py-solc (>=0.4.0)", "pytest (>=4.4.0,<5.0.0)", "pytest-asyncio (>=0.10.0,<0.11)", "pytest-mock (>=1.10,<2)", "pytest-pythonpath (>=0.3)", "pytest-watch (>=4.2,<5)", "pytest-xdist (>=1.29,<2)", "setuptools (>=38.6.0)", "sphinx (>=3.0,<4)", "sphinx-better-theme (>=0.1.4)", "sphinx-rtd-theme (>=0.1.9)", "toposort (>=1.4)", "towncrier (>=19.2.0,<20)", "tox (>=1.8.0)", "tqdm (>4.32,<5)", "twine (>=1.13,<2)", "urllib3", "wheel", "when-changed (>=0.3.0,<0.4)"] +docs = ["click (>=5.1)", "configparser (==3.5.0)", "contextlib2 (>=0.5.4)", "mock", "py-geth (>=3.4.0,<4)", "py-solc (>=0.4.0)", "pytest (>=4.4.0,<5.0.0)", "sphinx (>=3.0,<4)", "sphinx-better-theme (>=0.1.4)", "sphinx-rtd-theme (>=0.1.9)", "toposort (>=1.4)", "towncrier (>=19.2.0,<20)", "urllib3", "wheel"] +linter = ["flake8 (==3.8.3)", "isort (>=4.2.15,<4.3.5)", "mypy (==0.812)"] +tester = ["eth-tester[py-evm] (==v0.5.0-beta.4)", "py-geth (>=3.4.0,<4)"] + +[[package]] +name = "websockets" +version = "9.1" +description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" +optional = false +python-versions = ">=3.6.1" +files = [ {file = "websockets-9.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d144b350045c53c8ff09aa1cfa955012dd32f00c7e0862c199edcabb1a8b32da"}, {file = "websockets-9.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:b4ad84b156cf50529b8ac5cc1638c2cf8680490e3fccb6121316c8c02620a2e4"}, {file = "websockets-9.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2cf04601633a4ec176b9cc3d3e73789c037641001dbfaf7c411f89cd3e04fcaf"}, @@ -2196,10 +2167,24 @@ websockets = [ {file = "websockets-9.1-cp39-cp39-win_amd64.whl", hash = "sha256:85db8090ba94e22d964498a47fdd933b8875a1add6ebc514c7ac8703eb97bbf0"}, {file = "websockets-9.1.tar.gz", hash = "sha256:276d2339ebf0df4f45df453923ebd2270b87900eda5dfd4a6b0cfa15f82111c3"}, ] -wrapt = [ + +[[package]] +name = "wrapt" +version = "1.12.1" +description = "Module for decorators, wrappers and monkey patching." +optional = false +python-versions = "*" +files = [ {file = "wrapt-1.12.1.tar.gz", hash = "sha256:b62ffa81fb85f4332a4f609cab4ac40709470da05643a082ec1eb88e6d9b97d7"}, ] -yarl = [ + +[[package]] +name = "yarl" +version = "1.6.3" +description = "Yet another URL library" +optional = false +python-versions = ">=3.6" +files = [ {file = "yarl-1.6.3-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:0355a701b3998dcd832d0dc47cc5dedf3874f966ac7f870e0f3a6788d802d434"}, {file = "yarl-1.6.3-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:bafb450deef6861815ed579c7a6113a879a6ef58aed4c3a4be54400ae8871478"}, {file = "yarl-1.6.3-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:547f7665ad50fa8563150ed079f8e805e63dd85def6674c97efd78eed6c224a6"}, @@ -2238,3 +2223,12 @@ yarl = [ {file = "yarl-1.6.3-cp39-cp39-win_amd64.whl", hash = "sha256:4953fb0b4fdb7e08b2f3b3be80a00d28c5c8a2056bb066169de00e6501b986b6"}, {file = "yarl-1.6.3.tar.gz", hash = "sha256:8a9066529240171b68893d60dca86a763eae2139dd42f42106b03cf4b426bf10"}, ] + +[package.dependencies] +idna = ">=2.0" +multidict = ">=4.0" + +[metadata] +lock-version = "2.0" +python-versions = "^3.9" +content-hash = "a187bc6b9407ccd9b38d489e409f43ad5fda847a76360e5139863015d2408f03" diff --git a/pyproject.toml b/pyproject.toml index a63a0f62..b84725e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,12 +10,13 @@ web3 = "^5.23.0" pydantic = "^1.8.2" hexbytes = "^0.2.1" click = "^8.0.1" -psycopg2 = "^2.9.1" +psycopg2-binary = "^2.9.7" aiohttp = "^3.8.0" dramatiq = {extras = ["redis"], version = "^1.12.1"} pycoingecko = "^2.2.0" boto3 = "^1.20.48" aiohttp-retry = "^2.4.6" +pyyaml = "^6.0.1" [tool.poetry.dev-dependencies] pre-commit = "^2.13.0" @@ -30,6 +31,7 @@ alembic = "^1.6.5" CProfileV = "^1.0.7" regex = "^2021.10.8" pytest-profiling = "^1.7.0" +sqlalchemy = "^1.4.23" [build-system] requires = ["poetry-core>=1.0.0"] @@ -82,3 +84,6 @@ filter_files = true known_first_party = "mev_inspect" known_third_party = "alembic" py_version=39 + +[pytest] +asyncio_mode = "auto" \ No newline at end of file diff --git a/tests/blocks/10921990.json b/tests/blocks/10921990.json new file mode 100644 index 00000000..38a3e3c0 --- /dev/null +++ b/tests/blocks/10921990.json @@ -0,0 +1,27188 @@ +{ + "block_number": 10921991, + "miner": "0x52bc44d5378309EE2abF1539BF71dE1b7d7bE3b5", + "base_fee_per_gas": 0, + "traces": [ + { + "action": { + "from": "0x30391a4f9d2f099d41888f811784281cba4097f0", + "callType": "call", + "gas": "0x3caac", + "input": "0x7ff36ab50000000000000000000000000000000000000000000001d30ba285e7f6b5d274000000000000000000000000000000000000000000000000000000000000008000000000000000000000000030391a4f9d2f099d41888f811784281cba4097f0000000000000000000000000000000000000000000000000000000005f6be8eb0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000003f382dbd960e3a9bbceae22651e88158d2791550", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x1158e460913d00000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x35bef", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000001158e460913d000000000000000000000000000000000000000000000000001dc62e855625ceca896" + }, + "subtraces": 4, + "trace_address": [], + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x3ae09", + "input": "0x0902f1ac", + "to": "0xab659dee3030602c1af8c29d146facd4aed6ec85", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000000a0fa42c3ca560bdcdefa00000000000000000000000000000000000000000000005c6d796bbfb049de05000000000000000000000000000000000000000000000000000000005f6be43b" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x38548", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x1158e460913d00000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5892", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x324bf", + "input": "0xa9059cbb000000000000000000000000ab659dee3030602c1af8c29d146facd4aed6ec85000000000000000000000000000000000000000000000001158e460913d00000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x2edfc", + "input": "0x022c0d9f0000000000000000000000000000000000000000000001dc62e855625ceca896000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030391a4f9d2f099d41888f811784281cba4097f000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xab659dee3030602c1af8c29d146facd4aed6ec85", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2895e", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 3 + ], + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xab659dee3030602c1af8c29d146facd4aed6ec85", + "callType": "call", + "gas": "0x2ba60", + "input": "0xa9059cbb00000000000000000000000030391a4f9d2f099d41888f811784281cba4097f00000000000000000000000000000000000000000000001dc62e855625ceca896", + "to": "0x3f382dbd960e3a9bbceae22651e88158d2791550", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1ce5d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3f382dbd960e3a9bbceae22651e88158d2791550", + "callType": "call", + "gas": "0x27b83", + "input": "0x4a393149000000000000000000000000ab659dee3030602c1af8c29d146facd4aed6ec8500000000000000000000000030391a4f9d2f099d41888f811784281cba4097f00000000000000000000000000000000000000000000001dc62e855625ceca896", + "to": "0xf0cc626f04f0149f1f4ad3746b2589d6fa198b45", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8222", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "trace_address": [ + 3, + 0, + 0 + ], + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf0cc626f04f0149f1f4ad3746b2589d6fa198b45", + "callType": "call", + "gas": "0x263f5", + "input": "0xbe00bbd8f1f3eb40f5bc1ad1344716ced8b8a0431d840b5783aea1fd01786bc26f35ac0f6b20a3010614eeebf2138ccec99f028a61c811b3b1a3343b6ff635985c75c91f", + "to": "0x054086d40cf8fd5bf6200eda7f9c6877b0302dd1", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x110b", + "output": "0x000000000000000000000000de3a93028f2283cc28756b3674bd657eafb992f4" + }, + "subtraces": 1, + "trace_address": [ + 3, + 0, + 0, + 0 + ], + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x054086d40cf8fd5bf6200eda7f9c6877b0302dd1", + "callType": "delegatecall", + "gas": "0x234bf", + "input": "0xbe00bbd8f1f3eb40f5bc1ad1344716ced8b8a0431d840b5783aea1fd01786bc26f35ac0f6b20a3010614eeebf2138ccec99f028a61c811b3b1a3343b6ff635985c75c91f", + "to": "0x2b33cf282f867a7ff693a66e11b0fcc5552e4425", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5f0", + "output": "0x000000000000000000000000de3a93028f2283cc28756b3674bd657eafb992f4" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf0cc626f04f0149f1f4ad3746b2589d6fa198b45", + "callType": "delegatecall", + "gas": "0x23128", + "input": "0x4a393149000000000000000000000000ab659dee3030602c1af8c29d146facd4aed6ec8500000000000000000000000030391a4f9d2f099d41888f811784281cba4097f00000000000000000000000000000000000000000000001dc62e855625ceca896", + "to": "0xde3a93028f2283cc28756b3674bd657eafb992f4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5be2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "trace_address": [ + 3, + 0, + 0, + 1 + ], + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf0cc626f04f0149f1f4ad3746b2589d6fa198b45", + "callType": "call", + "gas": "0x2173a", + "input": "0x70a0823100000000000000000000000030391a4f9d2f099d41888f811784281cba4097f0", + "to": "0x3f382dbd960e3a9bbceae22651e88158d2791550", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1dc0", + "output": "0x000000000000000000000000000000000000000000000000000000000601f3c4" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf0cc626f04f0149f1f4ad3746b2589d6fa198b45", + "callType": "call", + "gas": "0x1ef90", + "input": "0x70a08231000000000000000000000000ab659dee3030602c1af8c29d146facd4aed6ec85", + "to": "0x3f382dbd960e3a9bbceae22651e88158d2791550", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1dc0", + "output": "0x00000000000000000000000000000000000000000000a0fa42c3ca560bdcdefa" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0, + 0, + 1, + 1 + ], + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xab659dee3030602c1af8c29d146facd4aed6ec85", + "callType": "staticcall", + "gas": "0xec32", + "input": "0x70a08231000000000000000000000000ab659dee3030602c1af8c29d146facd4aed6ec85", + "to": "0x3f382dbd960e3a9bbceae22651e88158d2791550", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1dc0", + "output": "0x000000000000000000000000000000000000000000009f1ddfdb74f3aef03664" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xab659dee3030602c1af8c29d146facd4aed6ec85", + "callType": "staticcall", + "gas": "0xc8b6", + "input": "0x70a08231000000000000000000000000ab659dee3030602c1af8c29d146facd4aed6ec85", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x00000000000000000000000000000000000000000000005d8307b1c8c419de05" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xff3769cdbd31893ef1b10a01ee0d8bd1f3773899", + "callType": "call", + "gas": "0x5944d", + "input": "0x030b060b0613abadab13abadabeaeaeaafeaeaeaaf01010000000000000000000077f5f3dfd95d0b061c9ef47c4f4ca4681d807776000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000000000000000000000000000258d2ce2dffd1a740000000000000000000000000000000000000000000000002522ec285406475d000000000000000000000000000000000000000000000000032cb6deafedb020001010000000000000000000095f0aa355f4251291e6413dd0174488f0ca8d2db000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000001c84d444d46016000000000000000000000000000000000000000000000000001bc45aa187b2d900000000000000000000000000000000000000000000000886c46e5474498000", + "to": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x45bcd", + "output": "0x" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x57249", + "input": "0x13abadab01010000000000000000000077f5f3dfd95d0b061c9ef47c4f4ca4681d807776000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000000000000000000000000000258d2ce2dffd1a740000000000000000000000000000000000000000000000002522ec285406475d000000000000000000000000000000000000000000000000032cb6deafedb0200", + "to": "0x431e4a8ca42672ae0d7c9999df0ad6f02feb44a9", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x275a", + "output": "0x00000000000000000000000000000000000000000000000032cb6deafedb02000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "trace_address": [ + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x55545", + "input": "0xf8b2cb4f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbaf", + "output": "0x00000000000000000000000000000000000000000000002392521858326fd19f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x54328", + "input": "0xf8b2cb4f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbaf", + "output": "0x000000000000000000000000000000000000000000000604081274209687dc01" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x547f8", + "input": "0x13abadab01010000000000000000000095f0aa355f4251291e6413dd0174488f0ca8d2db000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000001c84d444d46016000000000000000000000000000000000000000000000000001bc45aa187b2d900000000000000000000000000000000000000000000000886c46e5474498000", + "to": "0x431e4a8ca42672ae0d7c9999df0ad6f02feb44a9", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x275a", + "output": "0x00000000000000000000000000000000000000000000000886c46e54744980000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "trace_address": [ + 1 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x52b9d", + "input": "0xf8b2cb4f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x95f0aa355f4251291e6413dd0174488f0ca8d2db", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbaf", + "output": "0x0000000000000000000000000000000000000000000004f660f35a7cae855bfe" + }, + "subtraces": 0, + "trace_address": [ + 1, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x51981", + "input": "0xf8b2cb4f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x95f0aa355f4251291e6413dd0174488f0ca8d2db", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbaf", + "output": "0x00000000000000000000000000000000000000000000000a32a1117cee111f68" + }, + "subtraces": 0, + "trace_address": [ + 1, + 1 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x51d3c", + "input": "0xeaeaeaaf01010000000000000000000077f5f3dfd95d0b061c9ef47c4f4ca4681d807776000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000000000000000000000000000258d2ce2dffd1a740000000000000000000000000000000000000000000000002522ec285406475d000000000000000000000000000000000000000000000000032cb6deafedb0200", + "to": "0x431e4a8ca42672ae0d7c9999df0ad6f02feb44a9", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x17486", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 2 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x4e8a5", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x32cb6deafedb0200" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1dfa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x4c2ad", + "input": "0x8201aa3f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000032cb6deafedb0200000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000", + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x12cdb", + "output": "0x00000000000000000000000000000000000000000000000886c4763ffeb9b241000000000000000000000000000000000000000000000000005322af0571aed4" + }, + "subtraces": 2, + "trace_address": [ + 2, + 1 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "callType": "call", + "gas": "0x3fc07", + "input": "0x23b872dd000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc8500000000000000000000000077f5f3dfd95d0b061c9ef47c4f4ca4681d80777600000000000000000000000000000000000000000000000032cb6deafedb0200", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2e31", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "callType": "call", + "gas": "0x3c7fc", + "input": "0xa9059cbb000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc8500000000000000000000000000000000000000000000000886c4763ffeb9b241", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3a61", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1, + 1 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x3ab2d", + "input": "0xeaeaeaaf01010000000000000000000095f0aa355f4251291e6413dd0174488f0ca8d2db000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000001c84d444d46016000000000000000000000000000000000000000000000000001bc45aa187b2d900000000000000000000000000000000000000000000000886c46e5474498000", + "to": "0x431e4a8ca42672ae0d7c9999df0ad6f02feb44a9", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x199bb", + "output": "0x" + }, + "subtraces": 4, + "trace_address": [ + 3 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x3953d", + "input": "0x70a08231000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x54b", + "output": "0x000000000000000000000000000000000000000000000008c637ef721252b854" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x38763", + "input": "0x8201aa3f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000000000000000000000000000886c46e5474498000000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000", + "to": "0x95f0aa355f4251291e6413dd0174488f0ca8d2db", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1434e", + "output": "0x00000000000000000000000000000000000000000000000033c3ecfe7df6af08000000000000000000000000000000000000000000000002510fb010e6f674ec" + }, + "subtraces": 2, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x95f0aa355f4251291e6413dd0174488f0ca8d2db", + "callType": "call", + "gas": "0x2c3ea", + "input": "0x23b872dd000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc8500000000000000000000000095f0aa355f4251291e6413dd0174488f0ca8d2db00000000000000000000000000000000000000000000000886c46e5474498000", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4204", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x95f0aa355f4251291e6413dd0174488f0ca8d2db", + "callType": "call", + "gas": "0x27c5c", + "input": "0xa9059cbb000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc8500000000000000000000000000000000000000000000000033c3ecfe7df6af08", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3b3a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1, + 1 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x2423c", + "input": "0x70a08231000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x00000000000000000000000000000000000000000000000033c3ecfe7df6af09" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x2371d", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000033c3ecfe7df6af08", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2e77", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 3, + 3 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "value": "0x33c3ecfe7df6af08" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x37", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 3, + 3, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x2106b", + "input": "0xd8ccd0f30000000000000000000000000000000000000000000000000000000000000007", + "to": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xdf91", + "output": "0x0000000000000000000000000000000000000000000000000000000000000007" + }, + "subtraces": 7, + "trace_address": [ + 4 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "callType": "call", + "gas": "0x1e121", + "input": "0x", + "to": "0x08204cf29c6a2f55cd45b69dea9aa15923b5e9d2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 4, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x08204cf29c6a2f55cd45b69dea9aa15923b5e9d2", + "refundAddress": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 4, + 0, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "callType": "call", + "gas": "0x1c97d", + "input": "0x", + "to": "0xc7788e00d7208e379fd9c463a91ed1516feb16d8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 4, + 1 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xc7788e00d7208e379fd9c463a91ed1516feb16d8", + "refundAddress": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 4, + 1, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "callType": "call", + "gas": "0x1b1db", + "input": "0x", + "to": "0xcbf499a70c9c73b2e44b9d7d658987ae6226a8ef", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 4, + 2 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xcbf499a70c9c73b2e44b9d7d658987ae6226a8ef", + "refundAddress": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 4, + 2, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "callType": "call", + "gas": "0x19a36", + "input": "0x", + "to": "0x48f3fc69a9e7694a9c1efd33c8cf484d3dbbd4ae", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 4, + 3 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x48f3fc69a9e7694a9c1efd33c8cf484d3dbbd4ae", + "refundAddress": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 4, + 3, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "callType": "call", + "gas": "0x18290", + "input": "0x", + "to": "0x0705a974cb8f84d2ff95aa5445fa5c2ba8835c6c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 4, + 4 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x0705a974cb8f84d2ff95aa5445fa5c2ba8835c6c", + "refundAddress": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 4, + 4, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "callType": "call", + "gas": "0x16aee", + "input": "0x", + "to": "0xee6a7d363706c249a2517c0c0f0592842f67bbc6", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 4, + 5 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xee6a7d363706c249a2517c0c0f0592842f67bbc6", + "refundAddress": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 4, + 5, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "callType": "call", + "gas": "0x15348", + "input": "0x", + "to": "0xbb720c7852e935ce7611b2020b34137193a108f8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 4, + 6 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xbb720c7852e935ce7611b2020b34137193a108f8", + "refundAddress": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 4, + 6, + 0 + ], + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_position": 1, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0xff28319a7cd2136ea7283e7cdb0675b50ac29dd2", + "callType": "call", + "gas": "0x7c314", + "input": "0x030e0f0d07e88a0f32ced27fd15e525e2e0fd72adb000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a011060b0613abadab13abadabeaeaeaafeaeaeaaf000000000000000000000000010100000000000000000000d0a38cb0a67fa4ea83cac1f441e5aedfa9ba1155000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000d46ba6d942050d489dbd938a2c909a5d5039a16100000000000000000000000000000000000000000000000000000002b14c47c400000000000000000000000000000000000000000000000000000002a5ac8d0200000000000000000000000000000000000000000000000d760190256049000001010000000000000000000077f5f3dfd95d0b061c9ef47c4f4ca4681d807776000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000000000000000000000000000258d2ce2dffd1a7400000000000000000000000000000000000000000000000024e5b363cc8b696ef00000000000000000000000000000000000000000000000050734c484f64ac00010100000000000000000000c5be99a02c6857f9eac67bbce58df5572498f40c000000000000000000000000d46ba6d942050d489dbd938a2c909a5d5039a161000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc8500000000000000000000000000000000000000000001b8db26640252c1a9fb2d00000000000000000000000000000000000000000001b8a38737706d2caa630c00000000000000000000000000000000000000000000000000000295f163c7c8", + "to": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xb01c", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [], + "transaction_hash": "0xc35915e955b54ac0f03e85e66c7b8f2944c582c4432b3640cefc06cb15e26333", + "transaction_position": 2, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x79838", + "input": "0xe88a0f32000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a011060b0613abadab13abadabeaeaeaafeaeaeaaf000000000000000000000000010100000000000000000000d0a38cb0a67fa4ea83cac1f441e5aedfa9ba1155000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000d46ba6d942050d489dbd938a2c909a5d5039a16100000000000000000000000000000000000000000000000000000002b14c47c400000000000000000000000000000000000000000000000000000002a5ac8d0200000000000000000000000000000000000000000000000d760190256049000001010000000000000000000077f5f3dfd95d0b061c9ef47c4f4ca4681d807776000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000000000000000000000000000258d2ce2dffd1a7400000000000000000000000000000000000000000000000024e5b363cc8b696ef00000000000000000000000000000000000000000000000050734c484f64ac00", + "to": "0x0b695dd76692f2bbb3e2c706bce7a7505b4c0b52", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3432", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0xc35915e955b54ac0f03e85e66c7b8f2944c582c4432b3640cefc06cb15e26333", + "transaction_position": 2, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x76e1b", + "input": "0x13abadab01010000000000000000000077f5f3dfd95d0b061c9ef47c4f4ca4681d807776000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000000000000000000000000000258d2ce2dffd1a7400000000000000000000000000000000000000000000000024e5b363cc8b696ef00000000000000000000000000000000000000000000000050734c484f64ac00", + "to": "0x431e4a8ca42672ae0d7c9999df0ad6f02feb44a9", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2804", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0xc35915e955b54ac0f03e85e66c7b8f2944c582c4432b3640cefc06cb15e26333", + "transaction_position": 2, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x74927", + "input": "0xf8b2cb4f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbaf", + "output": "0x000000000000000000000000000000000000000000000023c51d8643314ad39f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0xc35915e955b54ac0f03e85e66c7b8f2944c582c4432b3640cefc06cb15e26333", + "transaction_position": 2, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x7370b", + "input": "0xf8b2cb4f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbaf", + "output": "0x0000000000000000000000000000000000000000000005fb814dfde097ce29c0" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 1 + ], + "transaction_hash": "0xc35915e955b54ac0f03e85e66c7b8f2944c582c4432b3640cefc06cb15e26333", + "transaction_position": 2, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x75d45", + "input": "0xd8ccd0f30000000000000000000000000000000000000000000000000000000000000002", + "to": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x677c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000002" + }, + "subtraces": 2, + "trace_address": [ + 1 + ], + "transaction_hash": "0xc35915e955b54ac0f03e85e66c7b8f2944c582c4432b3640cefc06cb15e26333", + "transaction_position": 2, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "callType": "call", + "gas": "0x718c8", + "input": "0x", + "to": "0x82d57950ac2fed3d7fc12d5c65c48f11bbcfa9fa", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 0 + ], + "transaction_hash": "0xc35915e955b54ac0f03e85e66c7b8f2944c582c4432b3640cefc06cb15e26333", + "transaction_position": 2, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x82d57950ac2fed3d7fc12d5c65c48f11bbcfa9fa", + "refundAddress": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 0, + 0 + ], + "transaction_hash": "0xc35915e955b54ac0f03e85e66c7b8f2944c582c4432b3640cefc06cb15e26333", + "transaction_position": 2, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "callType": "call", + "gas": "0x70123", + "input": "0x", + "to": "0xe55fc483199491c912189dcc2cbe7727e69fada0", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 1 + ], + "transaction_hash": "0xc35915e955b54ac0f03e85e66c7b8f2944c582c4432b3640cefc06cb15e26333", + "transaction_position": 2, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xe55fc483199491c912189dcc2cbe7727e69fada0", + "refundAddress": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 1, + 0 + ], + "transaction_hash": "0xc35915e955b54ac0f03e85e66c7b8f2944c582c4432b3640cefc06cb15e26333", + "transaction_position": 2, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x00413793a34097c1a89f70a0c6917d67948eca8a", + "callType": "call", + "gas": "0x28ae4", + "input": "0x8201aa3f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000503f2befaa189000000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000000000000000000000000000d63deee68ddde0000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xe0bb109209c597eafd0d69152b2729c939fb0fcdc8cca04f88e4a9f68e30b5cc", + "transaction_position": 3, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "from": "0xe62193bc1c340ef2205c0bd71691fad5e5072253", + "callType": "call", + "gas": "0x2274", + "input": "0x0000001d00000000000000000000000000000000000000000000000000000000000007c1", + "to": "0x00000000553a85582988aa8ad43fb7dda2466bc7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x17e6", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x8b3f754c237de8dffeb6a0c25affe5765794f1f674fa76561bc8b191f43590c4", + "transaction_position": 4, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xcc3e1e9703ca6e5e0ae297f364de049fcbf6c98c", + "callType": "call", + "gas": "0x2274", + "input": "0x0000001d00000000000000000000000000000000000000000000000000000000000007c1", + "to": "0x00000000553a85582988aa8ad43fb7dda2466bc7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x77e", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x4abb32386fc236f63c41f3a536418969f7cb96076fa3a4a8707b0c977012fae4", + "transaction_position": 5, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xff49432a1ea8ac6d12285099ba426d1f16f23c8d", + "callType": "call", + "gas": "0x5da8", + "input": "0x000008", + "to": "0xa619651c323923ecd5a8e5311771d57ac7e64d87", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x14ce", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xb4793a59f265654ab1a81306842a02af87eb7ee62d2dc3204b8cb310cf7a98bd", + "transaction_position": 6, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x4105cddd11f4c15b73b906b87b17e27739eac66a", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xd7b9a9b2f665849c4071ad5af77d8c76aa30fb32", + "value": "0x92bf1e3acdff89b" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x5bc2b16a3334d649d2c539fd64232edb8a7470031a7a056e35ea300d6222f8fd", + "transaction_position": 7, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x6bff491860a9a20b0e87abff8c41a1d40111ad5e", + "callType": "call", + "gas": "0xadb3", + "input": "0x095ea7b3000000000000000000000000acd43e627e64355f1861cec6d3a6688b31a6f952000000000000000000000000000000000000000c9f2c9cd038943736989c0000", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x578e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xdd2e9e498fcba64fd6a809c83f09bf7bdac820f70b7f661d193a3615e0da116c", + "transaction_position": 8, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xff49432a1ea8ac6d12285099ba426d1f16f23c8d", + "callType": "call", + "gas": "0x65ae0", + "input": "0x000e110d07e88a0f32ced27fd15e525e2e0fd72adb000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001e00d070d07ced27fd1ced27fd10fd72adb0fd72adb000000000000000000000000001001000100000000000000543a59743fe2967553512166f739c965ecd787630000000000000000000000007b123f53421b1bf8533339bfbdc7c98aa94163db000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc0000000000000000000000000000000000000000000000000000000000141e670000000000000000000000000000000000000000000000000000000000130cb300000000000000000000000000000000000000000000001f2364cc94a3e60000010100000000000000000000b0fb35cc576034b01bed6f4d0333b1bd3859615c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007b123f53421b1bf8533339bfbdc7c98aa94163db000000000000000000000000543a59743fe2967553512166f739c965ecd7876300000000000000000000000000000000000000000000000e1926dbf77834ee4300000000000000000000000000000000000000000000000df2754d115a47610a0000000000000000000000000000000000000000000000001ee8d1e0291c2500001001000100000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc8500000000000000000000000000000000000000000a27fc3cdc23bbbb01b2affe00000000000000000000000000000000000000000a27f6857cb4f68099958bef000000000000000000000000000000000000000000000000000000002bcbac27", + "to": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x42301", + "output": "0x" + }, + "subtraces": 4, + "trace_address": [], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x63568", + "input": "0xe88a0f32000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001e00d070d07ced27fd1ced27fd10fd72adb0fd72adb000000000000000000000000001001000100000000000000543a59743fe2967553512166f739c965ecd787630000000000000000000000007b123f53421b1bf8533339bfbdc7c98aa94163db000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc0000000000000000000000000000000000000000000000000000000000141e670000000000000000000000000000000000000000000000000000000000130cb300000000000000000000000000000000000000000000001f2364cc94a3e60000010100000000000000000000b0fb35cc576034b01bed6f4d0333b1bd3859615c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007b123f53421b1bf8533339bfbdc7c98aa94163db000000000000000000000000543a59743fe2967553512166f739c965ecd7876300000000000000000000000000000000000000000000000e1926dbf77834ee4300000000000000000000000000000000000000000000000df2754d115a47610a0000000000000000000000000000000000000000000000001ee8d1e0291c2500", + "to": "0x0b695dd76692f2bbb3e2c706bce7a7505b4c0b52", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ade", + "output": "0x0000000000000000000000000000000000000000000000001ee8d1e0291c25000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "trace_address": [ + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x610d1", + "input": "0xced27fd1010100000000000000000000b0fb35cc576034b01bed6f4d0333b1bd3859615c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007b123f53421b1bf8533339bfbdc7c98aa94163db000000000000000000000000543a59743fe2967553512166f739c965ecd7876300000000000000000000000000000000000000000000000e1926dbf77834ee4300000000000000000000000000000000000000000000000df2754d115a47610a0000000000000000000000000000000000000000000000001ee8d1e0291c2500", + "to": "0x339448c11e780180c2cf4f5a6978d9472e296a84", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xd76", + "output": "0x0000000000000000000000000000000000000000000000001ee8d1e0291c25000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x5f1d0", + "input": "0x0902f1ac", + "to": "0xb0fb35cc576034b01bed6f4d0333b1bd3859615c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x0000000000000000000000000000000000000000000016a9e987cdf58366865c0000000000000000000000000000000000000000000000164f2f50571a249313000000000000000000000000000000000000000000000000000000005f6be453" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x6005a", + "input": "0xced27fd1001001000100000000000000543a59743fe2967553512166f739c965ecd787630000000000000000000000007b123f53421b1bf8533339bfbdc7c98aa94163db000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc0000000000000000000000000000000000000000000000000000000000141e670000000000000000000000000000000000000000000000000000000000130cb300000000000000000000000000000000000000000000001f2364cc94a3e60000", + "to": "0x339448c11e780180c2cf4f5a6978d9472e296a84", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xd80", + "output": "0x00000000000000000000000000000000000000000000001f2364cc94a3e600000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x5e19a", + "input": "0x0902f1ac", + "to": "0x543a59743fe2967553512166f739c965ecd78763", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x0000000000000000000000000000000000000000000004634859d4628e48a0f9000000000000000000000000000000000000000000000000000000065c6f123e000000000000000000000000000000000000000000000000000000005f6be453" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x6079e", + "input": "0xced27fd1001001000100000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc8500000000000000000000000000000000000000000a27fc3cdc23bbbb01b2affe00000000000000000000000000000000000000000a27f6857cb4f68099958bef000000000000000000000000000000000000000000000000000000002bcbac27", + "to": "0x339448c11e780180c2cf4f5a6978d9472e296a84", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xd80", + "output": "0x000000000000000000000000000000000000000000000000000000002bcbac270000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 1 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x5e8c1", + "input": "0x0902f1ac", + "to": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000000000000009b63b5344c3f0000000000000000000000000000000000000000000071b803f8d37a7ae46ec9000000000000000000000000000000000000000000000000000000005f6be453" + }, + "subtraces": 0, + "trace_address": [ + 1, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x5f635", + "input": "0x5e525e2e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001e00d070d07ced27fd1ced27fd10fd72adb0fd72adb000000000000000000000000001001000100000000000000543a59743fe2967553512166f739c965ecd787630000000000000000000000007b123f53421b1bf8533339bfbdc7c98aa94163db000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc0000000000000000000000000000000000000000000000000000000000141e670000000000000000000000000000000000000000000000000000000000130cb300000000000000000000000000000000000000000000001f2364cc94a3e60000010100000000000000000000b0fb35cc576034b01bed6f4d0333b1bd3859615c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007b123f53421b1bf8533339bfbdc7c98aa94163db000000000000000000000000543a59743fe2967553512166f739c965ecd7876300000000000000000000000000000000000000000000000e1926dbf77834ee4300000000000000000000000000000000000000000000000df2754d115a47610a0000000000000000000000000000000000000000000000001ee8d1e0291c2500", + "to": "0x0b695dd76692f2bbb3e2c706bce7a7505b4c0b52", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x28359", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 2 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x5d2bf", + "input": "0x0fd72adb010100000000000000000000b0fb35cc576034b01bed6f4d0333b1bd3859615c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007b123f53421b1bf8533339bfbdc7c98aa94163db000000000000000000000000543a59743fe2967553512166f739c965ecd7876300000000000000000000000000000000000000000000000e1926dbf77834ee4300000000000000000000000000000000000000000000000df2754d115a47610a0000000000000000000000000000000000000000000000001ee8d1e0291c2500", + "to": "0x339448c11e780180c2cf4f5a6978d9472e296a84", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x15af9", + "output": "0x" + }, + "subtraces": 4, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x5b4f7", + "input": "0x0902f1ac", + "to": "0xb0fb35cc576034b01bed6f4d0333b1bd3859615c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x0000000000000000000000000000000000000000000016a9e987cdf58366865c0000000000000000000000000000000000000000000000164f2f50571a249313000000000000000000000000000000000000000000000000000000005f6be453" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x59051", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x1ee8d1e0291c2500" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1dfa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 1 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x56bb2", + "input": "0xa9059cbb000000000000000000000000b0fb35cc576034b01bed6f4d0333b1bd3859615c0000000000000000000000000000000000000000000000001ee8d1e0291c2500", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 2 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x53d6a", + "input": "0x022c0d9f00000000000000000000000000000000000000000000001f2364e89e851f40760000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543a59743fe2967553512166f739c965ecd787630000000000000000000000000000000000000000000000000000000000000020", + "to": "0xb0fb35cc576034b01bed6f4d0333b1bd3859615c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xda8f", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2, + 0, + 3 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb0fb35cc576034b01bed6f4d0333b1bd3859615c", + "callType": "call", + "gas": "0x50090", + "input": "0xa9059cbb000000000000000000000000543a59743fe2967553512166f739c965ecd7876300000000000000000000000000000000000000000000001f2364e89e851f4076", + "to": "0x7b123f53421b1bf8533339bfbdc7c98aa94163db", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x38be", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 3, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb0fb35cc576034b01bed6f4d0333b1bd3859615c", + "callType": "staticcall", + "gas": "0x4c1ab", + "input": "0x70a08231000000000000000000000000b0fb35cc576034b01bed6f4d0333b1bd3859615c", + "to": "0x7b123f53421b1bf8533339bfbdc7c98aa94163db", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x490", + "output": "0x00000000000000000000000000000000000000000000168ac622e556fe4745e6" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 3, + 1 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb0fb35cc576034b01bed6f4d0333b1bd3859615c", + "callType": "staticcall", + "gas": "0x4b6fa", + "input": "0x70a08231000000000000000000000000b0fb35cc576034b01bed6f4d0333b1bd3859615c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000000166e1822374340b813" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 3, + 2 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x47a17", + "input": "0x0fd72adb001001000100000000000000543a59743fe2967553512166f739c965ecd787630000000000000000000000007b123f53421b1bf8533339bfbdc7c98aa94163db000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc0000000000000000000000000000000000000000000000000000000000141e670000000000000000000000000000000000000000000000000000000000130cb300000000000000000000000000000000000000000000001f2364cc94a3e60000", + "to": "0x339448c11e780180c2cf4f5a6978d9472e296a84", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x11945", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2, + 1 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x461b2", + "input": "0x0902f1ac", + "to": "0x543a59743fe2967553512166f739c965ecd78763", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x0000000000000000000000000000000000000000000004634859d4628e48a0f9000000000000000000000000000000000000000000000000000000065c6f123e000000000000000000000000000000000000000000000000000000005f6be453" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x45613", + "input": "0x70a08231000000000000000000000000543a59743fe2967553512166f739c965ecd78763", + "to": "0x7b123f53421b1bf8533339bfbdc7c98aa94163db", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x490", + "output": "0x0000000000000000000000000000000000000000000004826bbebd011367e16f" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1, + 1 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x44d73", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bcbad13000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc0000000000000000000000000000000000000000000000000000000000000000", + "to": "0x543a59743fe2967553512166f739c965ecd78763", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xfdbd", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2, + 1, + 2 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x543a59743fe2967553512166f739c965ecd78763", + "callType": "call", + "gas": "0x4143a", + "input": "0xa9059cbb000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc000000000000000000000000000000000000000000000000000000002bcbad13", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5125", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 2, + 1, + 2, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x3f95b", + "input": "0xa9059cbb000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc000000000000000000000000000000000000000000000000000000002bcbad13", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4640", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1, + 2, + 0, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x543a59743fe2967553512166f739c965ecd78763", + "callType": "staticcall", + "gas": "0x3bd63", + "input": "0x70a08231000000000000000000000000543a59743fe2967553512166f739c965ecd78763", + "to": "0x7b123f53421b1bf8533339bfbdc7c98aa94163db", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x490", + "output": "0x0000000000000000000000000000000000000000000004826bbebd011367e16f" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1, + 2, + 1 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x543a59743fe2967553512166f739c965ecd78763", + "callType": "staticcall", + "gas": "0x3b2b3", + "input": "0x70a08231000000000000000000000000543a59743fe2967553512166f739c965ecd78763", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf99", + "output": "0x0000000000000000000000000000000000000000000000000000000630a3652b" + }, + "subtraces": 1, + "trace_address": [ + 2, + 1, + 2, + 2 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x3995e", + "input": "0x70a08231000000000000000000000000543a59743fe2967553512166f739c965ecd78763", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b7", + "output": "0x0000000000000000000000000000000000000000000000000000000630a3652b" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1, + 2, + 2, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x3798b", + "input": "0x0fd72adb001001000100000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc8500000000000000000000000000000000000000000a27fc3cdc23bbbb01b2affe00000000000000000000000000000000000000000a27f6857cb4f68099958bef000000000000000000000000000000000000000000000000000000002bcbac27", + "to": "0x339448c11e780180c2cf4f5a6978d9472e296a84", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x14f3e", + "output": "0x" + }, + "subtraces": 5, + "trace_address": [ + 3 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x36528", + "input": "0x0902f1ac", + "to": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000000000000009b63b5344c3f0000000000000000000000000000000000000000000071b803f8d37a7ae46ec9000000000000000000000000000000000000000000000000000000005f6be453" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x35989", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf99", + "output": "0x00000000000000000000000000000000000000000000000000009b63e0fff952" + }, + "subtraces": 1, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x34198", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b7", + "output": "0x00000000000000000000000000000000000000000000000000009b63e0fff952" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x3460c", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ff466511a4fc4d0000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc850000000000000000000000000000000000000000000000000000000000000000", + "to": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xe814", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "call", + "gas": "0x310f1", + "input": "0xa9059cbb000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc850000000000000000000000000000000000000000000000001ff466511a4fc4d0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3b3a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "staticcall", + "gas": "0x2cfad", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf99", + "output": "0x00000000000000000000000000000000000000000000000000009b63e0fff952" + }, + "subtraces": 1, + "trace_address": [ + 3, + 2, + 1 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x2b9e4", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b7", + "output": "0x00000000000000000000000000000000000000000000000000009b63e0fff952" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 1, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "staticcall", + "gas": "0x2ba20", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000071b7e4046d296094a9f9" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 2 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x25ab9", + "input": "0x70a08231000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000000001ff466511a4fc4d1" + }, + "subtraces": 0, + "trace_address": [ + 3, + 3 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x24f9b", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000001ff466511a4fc4d0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2e77", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 3, + 4 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "value": "0x1ff466511a4fc4d0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x37", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 3, + 4, + 0 + ], + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x2fc52417de76ac941c74f8ec023b404e147a4b52", + "callType": "call", + "gas": "0x6ac1a", + "input": "0xf42e5fd6000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000029af8a47000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000004a924af869eb92b46f95fc77c54a93e8f3d03835000000000000000000000000000000000000000000000000000000000000012007618166000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000b0fb35cc576034b01bed6f4d0333b1bd3859615c000000000000000000000000543a59743fe2967553512166f739c965ecd7876300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000016a9e987cdf58366865c800000000000000000000000000000000000000000000000000000065c6f123e000000000000000000000000000000000000000000000000000000000000000000000000000000005723de89c4889faef8f12b7395af0095345731cd0000000000000000000000000000000000000000000000000000000000000160b9a243c6000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e969991ce475bcf817e01e1aad4687da7e1d6f83000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000e0b5ca3f927e32eb077301b48c5d654fc66180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000005723de89c4889faef8f12b7395af0095345731cd00000000000000000000000000000000000000000000000000000000000000a088156e650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e969991ce475bcf817e01e1aad4687da7e1d6f83000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000000000000000000004a924af869eb92b46f95fc77c54a93e8f3d0383500000000000000000000000000000000000000000000000000000000000000e0346ecbb6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007b123f53421b1bf8533339bfbdc7c98aa94163db000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000", + "to": "0xb87c7d5a5ff0092cf427855c1ea9b7708d717292", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x6646f0d27972d5b158d2f297dc01ad8f1b16583b94482ab74a0f1eb6cc758fe8", + "transaction_position": 10, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "from": "0xb87c7d5a5ff0092cf427855c1ea9b7708d717292", + "callType": "staticcall", + "gas": "0x6891a", + "input": "0x07618166000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000b0fb35cc576034b01bed6f4d0333b1bd3859615c000000000000000000000000543a59743fe2967553512166f739c965ecd7876300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000016a9e987cdf58366865c800000000000000000000000000000000000000000000000000000065c6f123e00000000000000000000000000000000000000000000000000000000", + "to": "0x4a924af869eb92b46f95fc77c54a93e8f3d03835", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x6646f0d27972d5b158d2f297dc01ad8f1b16583b94482ab74a0f1eb6cc758fe8", + "transaction_position": 10, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "from": "0x4a924af869eb92b46f95fc77c54a93e8f3d03835", + "callType": "staticcall", + "gas": "0x666b3", + "input": "0x0902f1ac", + "to": "0xb0fb35cc576034b01bed6f4d0333b1bd3859615c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000000168ac622e556fe4745e60000000000000000000000000000000000000000000000166e1822374340b813000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x6646f0d27972d5b158d2f297dc01ad8f1b16583b94482ab74a0f1eb6cc758fe8", + "transaction_position": 10, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x06fda5b767c8b6171045e6549aab369a9dea36fc", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x0000000000000000000000000000000000000000", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x3b93581dea3fe8c93b98ba874f85ecf6f5ee8a1c5f8317323e2535c5fde7f4d4", + "transaction_position": 11, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3ecd210edb75111da6cfa9fd1648621ba0e63676", + "callType": "call", + "gas": "0x9610", + "input": "0xa9059cbb000000000000000000000000fc11e9ed29a33c69f057fa082e409c4b33951b11000000000000000000000000000000000000000000000000000000000000238c", + "to": "0xac90e3cbb5756f91d82e27fe697706c405caf09a", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x41ee", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x580141f75bed539378c0ec538ff853e91b854f9a8e83ce2cef8c6abc59b37846", + "transaction_position": 12, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xfe56a0dbdad44dd14e4d560632cc842c8a13642b", + "callType": "call", + "gas": "0xfa0", + "input": "0x", + "to": "0xfe56a0dbdad44dd14e4d560632cc842c8a13642b", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x0b6d3b20c6204236464bf478b61d7a8c6155375638cad6d6c8c679a3bb4b07e8", + "transaction_position": 13, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xfe56a0dbdad44dd14e4d560632cc842c8a13642b", + "callType": "call", + "gas": "0xfa0", + "input": "0x", + "to": "0xfe56a0dbdad44dd14e4d560632cc842c8a13642b", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x7f9d68ec3bc988f971e2313b5c9abb21d5392b0c45254aea09696be048bffc6c", + "transaction_position": 14, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa3544d5a648d8b4649455c836743b4ab49289bc1", + "callType": "call", + "gas": "0x25b5b", + "input": "0xe2bbb158000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000009a0377b4f06dea5312", + "to": "0xc6635074d5cf8c47585fab0b3ebf15c56fc6af53", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x17652", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [], + "transaction_hash": "0xb3543822df391687607f6e5bba3253861b192c9e5d96128205863e8861016615", + "transaction_position": 15, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc6635074d5cf8c47585fab0b3ebf15c56fc6af53", + "callType": "staticcall", + "gas": "0x23cd7", + "input": "0x70a08231000000000000000000000000c6635074d5cf8c47585fab0b3ebf15c56fc6af53", + "to": "0x042afd3869a47e2d5d42cc787d5c9e19df32185f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x490", + "output": "0x00000000000000000000000000000000000000000000e684535aa093e0fe48dc" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xb3543822df391687607f6e5bba3253861b192c9e5d96128205863e8861016615", + "transaction_position": 15, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc6635074d5cf8c47585fab0b3ebf15c56fc6af53", + "callType": "call", + "gas": "0x1e328", + "input": "0x23b872dd000000000000000000000000a3544d5a648d8b4649455c836743b4ab49289bc1000000000000000000000000c6635074d5cf8c47585fab0b3ebf15c56fc6af5300000000000000000000000000000000000000000000009a0377b4f06dea5312", + "to": "0x042afd3869a47e2d5d42cc787d5c9e19df32185f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5907", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xb3543822df391687607f6e5bba3253861b192c9e5d96128205863e8861016615", + "transaction_position": 15, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc5a93444cc4da6efb9e6fc6e5d3cb55a53b52396", + "callType": "call", + "gas": "0x61698", + "input": "0x", + "to": "0xe775f3f32cf6535670cb15bc67093db2feb4fc84", + "value": "0x2f64a8c94dc000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x4f70155548f01a297595f220120afd444288162c531950d7a3084c552b29d64a", + "transaction_position": 16, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd7a75b03c61f20748ca17668c57cacdf6cec3a64", + "callType": "call", + "gas": "0x7ea59", + "input": "0x94e7d3f1000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000000000000000000000000000057f71bf9ab16181400000000000000000000000000000000000000000000000eb4d322ceb8b5b23500000000000000000000000000000000000000000000000000020000600000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000001", + "to": "0xc16c51bb5fd93765ea53e79388aaa54759552d32", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbba4", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xcd57bab161f9e6a92b4ab2c7bd842a1f9195305fb48ecc482f9d2772f76ba8ac", + "transaction_position": 17, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc16c51bb5fd93765ea53e79388aaa54759552d32", + "callType": "staticcall", + "gas": "0x7b96d", + "input": "0xbb756cbe000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000057f71bf9ab161814", + "to": "0x7859dfb0f9eb053a509ec84be059732cafd98fbd", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xa6d3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000e8b68f53b798801fe" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0xcd57bab161f9e6a92b4ab2c7bd842a1f9195305fb48ecc482f9d2772f76ba8ac", + "transaction_position": 17, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7859dfb0f9eb053a509ec84be059732cafd98fbd", + "callType": "staticcall", + "gas": "0x78347", + "input": "0x4ac72a15000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000057f71bf9ab161814", + "to": "0x98ed786f3966103490c936da5184994d16cc72ab", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8bd5", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000e8b68f53b798801fe" + }, + "subtraces": 2, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0xcd57bab161f9e6a92b4ab2c7bd842a1f9195305fb48ecc482f9d2772f76ba8ac", + "transaction_position": 17, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x98ed786f3966103490c936da5184994d16cc72ab", + "callType": "staticcall", + "gas": "0x75b23", + "input": "0xbfdbfc43000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca0000000000000000000000000000000000000000000000000000000000000001", + "to": "0x65e67cbc342712df67494acefc06fe951ee93982", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x110b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000077f5f3dfd95d0b061c9ef47c4f4ca4681d807776" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0xcd57bab161f9e6a92b4ab2c7bd842a1f9195305fb48ecc482f9d2772f76ba8ac", + "transaction_position": 17, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x98ed786f3966103490c936da5184994d16cc72ab", + "callType": "staticcall", + "gas": "0x74015", + "input": "0x40e10bcc00000000000000000000000077f5f3dfd95d0b061c9ef47c4f4ca4681d807776000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000057f71bf9ab161814", + "to": "0xa961672e8db773be387e775bc4937c678f3ddf9a", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x62fc", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000e8b68f53b798801fe" + }, + "subtraces": 5, + "trace_address": [ + 0, + 0, + 1 + ], + "transaction_hash": "0xcd57bab161f9e6a92b4ab2c7bd842a1f9195305fb48ecc482f9d2772f76ba8ac", + "transaction_position": 17, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa961672e8db773be387e775bc4937c678f3ddf9a", + "callType": "staticcall", + "gas": "0x71bac", + "input": "0xd4cadf68", + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x7b8", + "output": "0x0000000000000000000000000000000000000000000000000006c00a3912c000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0xcd57bab161f9e6a92b4ab2c7bd842a1f9195305fb48ecc482f9d2772f76ba8ac", + "transaction_position": 17, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa961672e8db773be387e775bc4937c678f3ddf9a", + "callType": "staticcall", + "gas": "0x70dbc", + "input": "0xf8b2cb4f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbaf", + "output": "0x000000000000000000000000000000000000000000000023c51d8643314ad39f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 1, + 1 + ], + "transaction_hash": "0xcd57bab161f9e6a92b4ab2c7bd842a1f9195305fb48ecc482f9d2772f76ba8ac", + "transaction_position": 17, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa961672e8db773be387e775bc4937c678f3ddf9a", + "callType": "staticcall", + "gas": "0x6fbe7", + "input": "0xf8b2cb4f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbaf", + "output": "0x0000000000000000000000000000000000000000000005fb814dfde097ce29c0" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 1, + 2 + ], + "transaction_hash": "0xcd57bab161f9e6a92b4ab2c7bd842a1f9195305fb48ecc482f9d2772f76ba8ac", + "transaction_position": 17, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa961672e8db773be387e775bc4937c678f3ddf9a", + "callType": "staticcall", + "gas": "0x6ea13", + "input": "0x948d8ce6000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xb9b", + "output": "0x0000000000000000000000000000000000000000000000015af1d78b58c40000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 1, + 3 + ], + "transaction_hash": "0xcd57bab161f9e6a92b4ab2c7bd842a1f9195305fb48ecc482f9d2772f76ba8ac", + "transaction_position": 17, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa961672e8db773be387e775bc4937c678f3ddf9a", + "callType": "staticcall", + "gas": "0x6d852", + "input": "0x948d8ce6000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xb9b", + "output": "0x0000000000000000000000000000000000000000000000015af1d78b58c40000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 1, + 4 + ], + "transaction_hash": "0xcd57bab161f9e6a92b4ab2c7bd842a1f9195305fb48ecc482f9d2772f76ba8ac", + "transaction_position": 17, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x274f3c32c90517975e29dfc209a23f315c1e5fc7", + "callType": "call", + "gas": "0x3e8", + "input": "0x", + "to": "0x465af0c2508b90475e9a0f0dccbaac3d7fcf2cf1", + "value": "0xa236972c6ffe6800" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xe0f2334d5ff56e3cca78176f1906e06ec9617b540cba6fa184a06f4d97eabbab", + "transaction_position": 18, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xeff9782fc2f4f20043bbf936cd9ffa42da6e9c27", + "callType": "call", + "gas": "0x3e8", + "input": "0x", + "to": "0xeff9782fc2f4f20043bbf936cd9ffa42da6e9c27", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xe0d40f6a6803e93e4c02ace23ea0a14be5159bcdff472a94814173b23d532c13", + "transaction_position": 19, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x2eb73aa6d3c1400af339890cf102195295311d54", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xd18d7139e2f1ceece44c01e7adb06cb20716d66b", + "value": "0x14ccde56b56e700" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x9e0de4d65c2db4bbd254adec3c16b9ee5518960e4b26c9bcf27f01e32e709187", + "transaction_position": 20, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe54b9ee6c093ed7773d0fd1af80facf8b852788d", + "callType": "call", + "gas": "0xc62d", + "input": "0xce7d1f77000000000000000000000000e54b9ee6c093ed7773d0fd1af80facf8b852788d", + "to": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39", + "value": "0x1ec932192308560000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xc62d", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xaeb4f12ef5f452c9312dc3748a73e70740b2f46aa744aeaa162387ed4847f959", + "transaction_position": 21, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x68698d8d263da3ef83aa8d49fed38bbfe00522e0", + "callType": "call", + "gas": "0xc62d", + "input": "0xce7d1f7700000000000000000000000068698d8d263da3ef83aa8d49fed38bbfe00522e0", + "to": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39", + "value": "0x1e9f8ff508122a0000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xc62d", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x29eca67a5a4c043bc043b7c78c8e26cda4b471805024e067f8a63936e3d526aa", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x907e3e7f53451ea0165f4c3262d9525ea1690f1b", + "callType": "call", + "gas": "0xc62d", + "input": "0xce7d1f77000000000000000000000000907e3e7f53451ea0165f4c3262d9525ea1690f1b", + "to": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39", + "value": "0x1ee4f3868a571e0000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xc62d", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x516c1126419ffc13a1a63237005f5e2aa49e3a2ca6331fec78744f671a0d8ed1", + "transaction_position": 23, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd1c2c1af7e57e04c9426401c927ee31d2e3cd57f", + "callType": "call", + "gas": "0xc62d", + "input": "0xce7d1f77000000000000000000000000d1c2c1af7e57e04c9426401c927ee31d2e3cd57f", + "to": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39", + "value": "0x1e5a2c6385cd360000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xc62d", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xe8fd53ca680e729bb16624dc5003de14180f6ca9fb936044ade416c6c70d114d", + "transaction_position": 24, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3984d240bb53618b0e2072c501ff7270eb1e86f5", + "callType": "call", + "gas": "0xbacd", + "input": "0xa9059cbb000000000000000000000000ee35e6479304790707741de4225dd242047ee9700000000000000000000000000000000000000000000000000000000059682f00", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8bbd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xb4a542d1db4a48668753ade47a5124f728ab65bbc2d1b97fc9904196b94f1f3e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0xad54", + "input": "0xa9059cbb000000000000000000000000ee35e6479304790707741de4225dd242047ee9700000000000000000000000000000000000000000000000000000000059682f00", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x80d8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xb4a542d1db4a48668753ade47a5124f728ab65bbc2d1b97fc9904196b94f1f3e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ef0ded8437fcdc8d96b6ec213f1368ccae6f64b", + "callType": "call", + "gas": "0x2af70", + "input": "0x18cbafe5000000000000000000000000000000000000000000000004e1003b28d928000000000000000000000000000000000000000000000000000016d3eea75eb3424b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007ef0ded8437fcdc8d96b6ec213f1368ccae6f64b000000000000000000000000000000000000000000000000000000005f6be8eb000000000000000000000000000000000000000000000000000000000000000200000000000000000000000009fe5f0236f0ea5d930197dce254d77b04128075000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1f6e0", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000004e1003b28d928000000000000000000000000000000000000000000000000000016f126e31636b71b" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0xacdcf9084b71a6e27805962ddc19ee52fc54f05e1b3ee73533b24030fa7cab11", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x2970b", + "input": "0x0902f1ac", + "to": "0x2174e6d76fe8fa6602db6af86f5e17840bdb0760", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000000070d8c001d0c4198ed20000000000000000000000000000000000000000000000022b2ce5ad98f7bb48000000000000000000000000000000000000000000000000000000005f6be42c" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xacdcf9084b71a6e27805962ddc19ee52fc54f05e1b3ee73533b24030fa7cab11", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x28550", + "input": "0x23b872dd0000000000000000000000007ef0ded8437fcdc8d96b6ec213f1368ccae6f64b0000000000000000000000002174e6d76fe8fa6602db6af86f5e17840bdb0760000000000000000000000000000000000000000000000004e1003b28d9280000", + "to": "0x09fe5f0236f0ea5d930197dce254d77b04128075", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5c48", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xacdcf9084b71a6e27805962ddc19ee52fc54f05e1b3ee73533b24030fa7cab11", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x21d4b", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016f126e31636b71b0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2174e6d76fe8fa6602db6af86f5e17840bdb0760", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x117ec", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2 + ], + "transaction_hash": "0xacdcf9084b71a6e27805962ddc19ee52fc54f05e1b3ee73533b24030fa7cab11", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x2174e6d76fe8fa6602db6af86f5e17840bdb0760", + "callType": "call", + "gas": "0x1ecd3", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000016f126e31636b71b", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x75d2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0xacdcf9084b71a6e27805962ddc19ee52fc54f05e1b3ee73533b24030fa7cab11", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x2174e6d76fe8fa6602db6af86f5e17840bdb0760", + "callType": "staticcall", + "gas": "0x171e1", + "input": "0x70a082310000000000000000000000002174e6d76fe8fa6602db6af86f5e17840bdb0760", + "to": "0x09fe5f0236f0ea5d930197dce254d77b04128075", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d9", + "output": "0x000000000000000000000000000000000000000000000075b9c03cf99d418ed2" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1 + ], + "transaction_hash": "0xacdcf9084b71a6e27805962ddc19ee52fc54f05e1b3ee73533b24030fa7cab11", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x2174e6d76fe8fa6602db6af86f5e17840bdb0760", + "callType": "staticcall", + "gas": "0x166e9", + "input": "0x70a082310000000000000000000000002174e6d76fe8fa6602db6af86f5e17840bdb0760", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000000002143bbeca82c1042d" + }, + "subtraces": 0, + "trace_address": [ + 2, + 2 + ], + "transaction_hash": "0xacdcf9084b71a6e27805962ddc19ee52fc54f05e1b3ee73533b24030fa7cab11", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x10326", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000016f126e31636b71b", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2e93", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 3 + ], + "transaction_hash": "0xacdcf9084b71a6e27805962ddc19ee52fc54f05e1b3ee73533b24030fa7cab11", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x16f126e31636b71b" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x53", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0xacdcf9084b71a6e27805962ddc19ee52fc54f05e1b3ee73533b24030fa7cab11", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0xb76e", + "input": "0x", + "to": "0x7ef0ded8437fcdc8d96b6ec213f1368ccae6f64b", + "value": "0x16f126e31636b71b" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0xacdcf9084b71a6e27805962ddc19ee52fc54f05e1b3ee73533b24030fa7cab11", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7282c8cb3c542e517829a4b919f3e33f7d627210", + "callType": "call", + "gas": "0xa568", + "input": "0xa9059cbb000000000000000000000000478b05573d9009d97093f8e71637688d8232daf70000000000000000000000000000000000000000000000514ab8fba26b628000", + "to": "0xe99a894a69d7c2e3c92e61b64c505a6a57d2bc07", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3c89", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xecc74d6f418d911c6fa439430eb77dd93914cd367eb6aafa4ee7cdd351142e5c", + "transaction_position": 27, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7282c8cb3c542e517829a4b919f3e33f7d627210", + "callType": "call", + "gas": "0xa574", + "input": "0xa9059cbb000000000000000000000000212142f804ab37c9003a12b056b8ec5303152f170000000000000000000000000000000000000000000000288d91023399cec000", + "to": "0xe99a894a69d7c2e3c92e61b64c505a6a57d2bc07", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3c89", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x8bb4ea1b49ccd84d3b0f3c770345c880094a9a31fdef5e1658409fa5a42e7cd7", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x87a0708c6752205cbbfa5aec195ca5c981a6cbf6", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x48915685c7b2e45dec99e7d40df7331646dd1856", + "value": "0x136ea27adc0d6b0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x39f2933de115f685a0ba6ffb1592705b6f143b142cbba604135d9082959200a0", + "transaction_position": 29, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf986ba43842a2152fa6319cbcb514bd7c70a42ee", + "callType": "call", + "gas": "0xa568", + "input": "0xa9059cbb0000000000000000000000002c44ea928615b66184a98d1464d7c7a6c796666e000000000000000000000000000000000000000000000019c5961c170a4f8000", + "to": "0xe99a894a69d7c2e3c92e61b64c505a6a57d2bc07", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3c89", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x06774eed956a8cdb85fbefe77f2591b14e45b2302f73b4499fd037443dfa601a", + "transaction_position": 30, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x6cc8dcbca746a6e4fdefb98e1d0df903b107fd21", + "callType": "call", + "gas": "0x8bc3", + "input": "0xa9059cbb000000000000000000000000c6d232afa478a3f2a12192d79bb79cea0d5381b300000000000000000000000000000000000000000000012bf1ccc8e8dc540000", + "to": "0x6781a0f84c7e9e846dcb84a9a5bd49333067b104", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x39bb", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x4eb5eaff4d169325b730adc140ee8988fafba07d3cd34efc771e081b314fa27d", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x65ebebe6608ee13de5804c0a007a37a15d7c8730", + "callType": "call", + "gas": "0x95f8", + "input": "0xa9059cbb000000000000000000000000359b2a2a0cfd2dd9c4ef0e6ce6488081aa0c87ee0000000000000000000000000000000000000000000000000000000003ff6830", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xa2608d548c78af7edf57e6f6e410a7fb23ad7d817f624b40317eedd7b79dd663", + "transaction_position": 32, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x65ebebe6608ee13de5804c0a007a37a15d7c8730", + "callType": "call", + "gas": "0x9604", + "input": "0xa9059cbb0000000000000000000000000265429725da21e4cbe2198f282f90327e0f53b800000000000000000000000000000000000000000000000000000000007ea5e0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x708e501f7a71d590f322c922ee93ef80fd876a2f0a4202739ae7d17fa3f402e6", + "transaction_position": 33, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x204c1d47567eb1414cafb942ff4e6205547ffd3f", + "callType": "call", + "gas": "0x164dea", + "input": "0xc89e4361b493becdd1ed1a952c4d4f13f5a8f68e7a450ed4628642fe0abf20dcc2c82f28fe4f3e406928c22920c4b4ec93a5d6726f8e336922bf636f00000000401e25376209ba75dff0a1ee75006bc3a4f8706ebf4a5400397ebb030000001742e036cce08cf4e23d33bc6b18e53caf532afa85130000056d00000c56000001", + "to": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5e8", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xafca14cdee254c334352b2b66481de2fd7c732651863338d93fed6e7d66a46e0", + "transaction_position": 34, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0a4f4ba42c795818297bd24de1a89084225cc062", + "callType": "call", + "gas": "0xc9220", + "input": "0x865a6b4f00000000000000000000000032b6562679e08516e5745c95903393438be23f8d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e4ed2f0c5300000000000000000000000000000000000000000000000085c05ac0fe01a70d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000d9a947789974bad9be77e45c2b327174a9c59d71000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000005dcf967a43f86d5515bf55f749ec98c4042d5d1d000000000000000000000000d9201007b1c3f8dc6097b50343c970961fa6a3c700000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000009931695ab70000000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000006da0fd433c1a5d7a4faa01111c044910a18455300000000000000000000000000000000000000000000000000001cd43308efcf0000000000000000000000000000000000000000000000000000000000000001", + "to": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x229a", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x3fd108e0f6005033fcc0b679a553c23463bb956663878621a01e9ba708bf5384", + "transaction_position": 35, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "delegatecall", + "gas": "0xc5140", + "input": "0xed2f0c5300000000000000000000000000000000000000000000000085c05ac0fe01a70d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000d9a947789974bad9be77e45c2b327174a9c59d71000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000005dcf967a43f86d5515bf55f749ec98c4042d5d1d000000000000000000000000d9201007b1c3f8dc6097b50343c970961fa6a3c700000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000009931695ab70000000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000006da0fd433c1a5d7a4faa01111c044910a18455300000000000000000000000000000000000000000000000000001cd43308efcf0000000000000000000000000000000000000000000000000000000000000001", + "to": "0x32b6562679e08516e5745c95903393438be23f8d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x3fd108e0f6005033fcc0b679a553c23463bb956663878621a01e9ba708bf5384", + "transaction_position": 35, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "staticcall", + "gas": "0xc1706", + "input": "0x70a0823100000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x97f", + "output": "0x00000000000000000000000000000000000000000000000000001cda15399bda" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x3fd108e0f6005033fcc0b679a553c23463bb956663878621a01e9ba708bf5384", + "transaction_position": 35, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x00e43c0bfa2303310222e077ffa948bddf256848", + "callType": "call", + "gas": "0x2a4e1", + "input": "0x38ed17390000000000000000000000000000000000000000000000011989c339e0063000000000000000000000000000000000000000000000000000045e4d2872d5404000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000e43c0bfa2303310222e077ffa948bddf256848000000000000000000000000000000000000000000000000000000005f6be5940000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "to": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x003a04f032b3d71932b247c1334caf90cf3b47b9c28ba7d8860f665cb669feef", + "transaction_position": 36, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", + "callType": "staticcall", + "gas": "0x28c1b", + "input": "0x0902f1ac", + "to": "0x088ee5007c98a9677165d78dd2109ae4a3d04d0c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c1", + "output": "0x000000000000000000000000000000000000000000000032172e1cd86e5091e2000000000000000000000000000000000000000000000c9c1ebcf306eeef4c53000000000000000000000000000000000000000000000000000000005f6be3e0" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x003a04f032b3d71932b247c1334caf90cf3b47b9c28ba7d8860f665cb669feef", + "transaction_position": 36, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x25376209ba75dff0a1ee75006bc3a4f8706ebf4a", + "callType": "call", + "gas": "0x82b91", + "input": "0xf88309d70000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000228e41ceb2b900000000000000000000000000000000000000000000000000000000000bb5517f530000000000000000000000000000000000000000000000000000000bc46158160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000e600000000000000000000000000000000000000000000000000000000000000ee000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000728bbe9bbee3af78ad611315076621865950b3440000000000000000000000000000000000000000000000000000000000000c88a9059cbb000000000000000000000000728bbe9bbee3af78ad611315076621865950b344000000000000000000000000000000000000000000000000228e41ceb2b90000e6adce0b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000b44c2239eb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ac4f4e3b2ed00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000bc46158160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000000000000000000000000000228e41ceb2b90000000000000000000000000000728bbe9bbee3af78ad611315076621865950b344000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000048000000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001c455b181bb000000000000000000000000000000000000000000000000000000000000008080000000000000000000000000000000000000000000000000000000000000440000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e0000000000000000000000000000006400000000000000000000000000000064000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000064d1660f990000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000848c256d64000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c0000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000006da0fd433c1a5d7a4faa01111c044910a18455300000000000000000000000000000000000000000000000000000000000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000848c256d6400000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000024476a612750000000000000000000000000000000000000000000000000000000000000080800000000000000000000000000000000000000000000000000000000000004400000000000000000000000011cbb51eb0af993e70394272c177ae657820a65000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000064d1660f99000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000068a17b587caf4f9329f0e372e3a78d23a46de6b5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004470bdb947000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000bc4615816000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000c88000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x11111254369792b2ca5d084ab5eea397ca8fa48b", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x66123", + "output": "0x0000000000000000000000000000000000000000000000000000000bc4615816" + }, + "subtraces": 7, + "trace_address": [], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x11111254369792b2ca5d084ab5eea397ca8fa48b", + "callType": "call", + "gas": "0x7e62a", + "input": "0x0a5ea4660000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e00000000000000000000000025376209ba75dff0a1ee75006bc3a4f8706ebf4a00000000000000000000000011111254369792b2ca5d084ab5eea397ca8fa48b000000000000000000000000000000000000000000000000228e41ceb2b90000", + "to": "0xe4c9194962532feb467dce8b3d42419641c6ed2e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xa854", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe4c9194962532feb467dce8b3d42419641c6ed2e", + "callType": "call", + "gas": "0x7b513", + "input": "0x23b872dd00000000000000000000000025376209ba75dff0a1ee75006bc3a4f8706ebf4a00000000000000000000000011111254369792b2ca5d084ab5eea397ca8fa48b000000000000000000000000000000000000000000000000228e41ceb2b90000", + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x94b8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x11111254369792b2ca5d084ab5eea397ca8fa48b", + "callType": "call", + "gas": "0x6bc2a", + "input": "0xa9059cbb000000000000000000000000728bbe9bbee3af78ad611315076621865950b344000000000000000000000000000000000000000000000000228e41ceb2b90000", + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x636c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x11111254369792b2ca5d084ab5eea397ca8fa48b", + "callType": "call", + "gas": "0x6502d", + "input": "0xe6adce0b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000b44c2239eb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ac4f4e3b2ed00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000bc46158160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000000000000000000000000000228e41ceb2b90000000000000000000000000000728bbe9bbee3af78ad611315076621865950b344000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000048000000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001c455b181bb000000000000000000000000000000000000000000000000000000000000008080000000000000000000000000000000000000000000000000000000000000440000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e0000000000000000000000000000006400000000000000000000000000000064000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000064d1660f990000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000848c256d64000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c0000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000006da0fd433c1a5d7a4faa01111c044910a18455300000000000000000000000000000000000000000000000000000000000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000848c256d6400000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000024476a612750000000000000000000000000000000000000000000000000000000000000080800000000000000000000000000000000000000000000000000000000000004400000000000000000000000011cbb51eb0af993e70394272c177ae657820a65000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000064d1660f99000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000068a17b587caf4f9329f0e372e3a78d23a46de6b5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004470bdb947000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000bc461581600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x728bbe9bbee3af78ad611315076621865950b344", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x43a81", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 2 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "call", + "gas": "0x5f7e4", + "input": "0xc2239eb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ac4f4e3b2ed00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000bc46158160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000000000000000000000000000228e41ceb2b90000000000000000000000000000728bbe9bbee3af78ad611315076621865950b344000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000048000000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001c455b181bb000000000000000000000000000000000000000000000000000000000000008080000000000000000000000000000000000000000000000000000000000000440000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e0000000000000000000000000000006400000000000000000000000000000064000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000064d1660f990000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000848c256d64000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c0000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000006da0fd433c1a5d7a4faa01111c044910a18455300000000000000000000000000000000000000000000000000000000000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000848c256d6400000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000024476a612750000000000000000000000000000000000000000000000000000000000000080800000000000000000000000000000000000000000000000000000000000004400000000000000000000000011cbb51eb0af993e70394272c177ae657820a65000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000064d1660f99000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000068a17b587caf4f9329f0e372e3a78d23a46de6b5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004470bdb947000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000bc4615816000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x728bbe9bbee3af78ad611315076621865950b344", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3f378", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "call", + "gas": "0x5bfaa", + "input": "0xf4e3b2ed00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000bc46158160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000000000000000000000000000228e41ceb2b90000000000000000000000000000728bbe9bbee3af78ad611315076621865950b344000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000048000000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001c455b181bb000000000000000000000000000000000000000000000000000000000000008080000000000000000000000000000000000000000000000000000000000000440000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e0000000000000000000000000000006400000000000000000000000000000064000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000064d1660f990000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000848c256d64000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c0000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000006da0fd433c1a5d7a4faa01111c044910a18455300000000000000000000000000000000000000000000000000000000000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000848c256d6400000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000024476a612750000000000000000000000000000000000000000000000000000000000000080800000000000000000000000000000000000000000000000000000000000004400000000000000000000000011cbb51eb0af993e70394272c177ae657820a65000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000064d1660f99000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000068a17b587caf4f9329f0e372e3a78d23a46de6b5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004470bdb947000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000bc46158160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x728bbe9bbee3af78ad611315076621865950b344", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3d085", + "output": "0x0000000000000000000000000000000000000000000000000000000bc4615816" + }, + "subtraces": 7, + "trace_address": [ + 2, + 0, + 0 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "call", + "gas": "0x58348", + "input": "0x55b181bb000000000000000000000000000000000000000000000000000000000000008080000000000000000000000000000000000000000000000000000000000000440000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e0000000000000000000000000000006400000000000000000000000000000064000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000064d1660f990000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000", + "to": "0x728bbe9bbee3af78ad611315076621865950b344", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5468", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 2, + 0, + 0, + 0 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "staticcall", + "gas": "0x560ec", + "input": "0x70a08231000000000000000000000000728bbe9bbee3af78ad611315076621865950b344", + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d9", + "output": "0x000000000000000000000000000000000000000000000000228e41ceb2b90000" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "call", + "gas": "0x550ec", + "input": "0xd1660f990000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c000000000000000000000000000000000000000000000000228e41ceb2b90000", + "to": "0x728bbe9bbee3af78ad611315076621865950b344", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x36e7", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 2, + 0, + 0, + 0, + 1 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "call", + "gas": "0x52fad", + "input": "0xa9059cbb000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c000000000000000000000000000000000000000000000000228e41ceb2b90000", + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x28d4", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "call", + "gas": "0x527d3", + "input": "0x8c256d64000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c0000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553", + "to": "0x728bbe9bbee3af78ad611315076621865950b344", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x104c9", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2, + 0, + 0, + 1 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "staticcall", + "gas": "0x50a23", + "input": "0x70a08231000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c", + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d9", + "output": "0x00000000000000000000000000000000000000000000003239bc5ea7210991e2" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "staticcall", + "gas": "0x4febb", + "input": "0x0902f1ac", + "to": "0x088ee5007c98a9677165d78dd2109ae4a3d04d0c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c1", + "output": "0x000000000000000000000000000000000000000000000032172e1cd86e5091e2000000000000000000000000000000000000000000000c9c1ebcf306eeef4c53000000000000000000000000000000000000000000000000000000005f6be3e0" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 1, + 1 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "call", + "gas": "0x4ee0d", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a655dab10dd8a49700000000000000000000000006da0fd433c1a5d7a4faa01111c044910a18455300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x088ee5007c98a9677165d78dd2109ae4a3d04d0c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xdec9", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2, + 0, + 0, + 1, + 2 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x088ee5007c98a9677165d78dd2109ae4a3d04d0c", + "callType": "call", + "gas": "0x4b1e7", + "input": "0xa9059cbb00000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553000000000000000000000000000000000000000000000008a655dab10dd8a497", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3b3a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 1, + 2, + 0 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x088ee5007c98a9677165d78dd2109ae4a3d04d0c", + "callType": "staticcall", + "gas": "0x47091", + "input": "0x70a08231000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c", + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d9", + "output": "0x00000000000000000000000000000000000000000000003239bc5ea7210991e2" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 1, + 2, + 1 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x088ee5007c98a9677165d78dd2109ae4a3d04d0c", + "callType": "staticcall", + "gas": "0x46587", + "input": "0x70a08231000000000000000000000000088ee5007c98a9677165d78dd2109ae4a3d04d0c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000000c9378671855e116a7bc" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 1, + 2, + 2 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "call", + "gas": "0x41ec0", + "input": "0x8c256d6400000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000728bbe9bbee3af78ad611315076621865950b344", + "to": "0x728bbe9bbee3af78ad611315076621865950b344", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x154d8", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2, + 0, + 0, + 2 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "staticcall", + "gas": "0x40534", + "input": "0x70a0823100000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000001525165333af1ab0dc7b" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 2, + 0 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "staticcall", + "gas": "0x3f9d4", + "input": "0x0902f1ac", + "to": "0x06da0fd433c1a5d7a4faa01111c044910a184553", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c1", + "output": "0x00000000000000000000000000000000000000000000151c6ffd58fe0cd837e400000000000000000000000000000000000000000000000000001cda15399bda000000000000000000000000000000000000000000000000000000005f6be3bf" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 2, + 1 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "call", + "gas": "0x3e925", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bc4615816000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x06da0fd433c1a5d7a4faa01111c044910a184553", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x12edf", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2, + 0, + 0, + 2, + 2 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x06da0fd433c1a5d7a4faa01111c044910a184553", + "callType": "call", + "gas": "0x3b112", + "input": "0xa9059cbb000000000000000000000000728bbe9bbee3af78ad611315076621865950b3440000000000000000000000000000000000000000000000000000000bc4615816", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 2, + 2, + 0 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x06da0fd433c1a5d7a4faa01111c044910a184553", + "callType": "staticcall", + "gas": "0x32575", + "input": "0x70a0823100000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000001525165333af1ab0dc7b" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 2, + 2, + 1 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x06da0fd433c1a5d7a4faa01111c044910a184553", + "callType": "staticcall", + "gas": "0x31a71", + "input": "0x70a0823100000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x97f", + "output": "0x00000000000000000000000000000000000000000000000000001cce50d843c4" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 2, + 2, + 2 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "call", + "gas": "0x2c335", + "input": "0x76a612750000000000000000000000000000000000000000000000000000000000000080800000000000000000000000000000000000000000000000000000000000004400000000000000000000000011cbb51eb0af993e70394272c177ae657820a65000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000728bbe9bbee3af78ad611315076621865950b34400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000064d1660f99000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000068a17b587caf4f9329f0e372e3a78d23a46de6b5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004470bdb947000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000bc461581600000000000000000000000000000000000000000000000000000000", + "to": "0x728bbe9bbee3af78ad611315076621865950b344", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2dfd", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 2, + 0, + 0, + 3 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "staticcall", + "gas": "0x2acfb", + "input": "0x70bdb947000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000bc4615816", + "to": "0x11cbb51eb0af993e70394272c177ae657820a650", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x12ed", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 2, + 0, + 0, + 3, + 0 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x11cbb51eb0af993e70394272c177ae657820a650", + "callType": "staticcall", + "gas": "0x29a4c", + "input": "0x70a08231000000000000000000000000728bbe9bbee3af78ad611315076621865950b344", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x97f", + "output": "0x0000000000000000000000000000000000000000000000000000000bc4615816" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 3, + 0, + 0 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "call", + "gas": "0x28dfb", + "input": "0xd1660f99000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000068a17b587caf4f9329f0e372e3a78d23a46de6b50000000000000000000000000000000000000000000000000000000000000000", + "to": "0x728bbe9bbee3af78ad611315076621865950b344", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x262", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 3, + 1 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "staticcall", + "gas": "0x28e64", + "input": "0x70a08231000000000000000000000000728bbe9bbee3af78ad611315076621865950b344", + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 4 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "staticcall", + "gas": "0x28217", + "input": "0x70a08231000000000000000000000000728bbe9bbee3af78ad611315076621865950b344", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x97f", + "output": "0x0000000000000000000000000000000000000000000000000000000bc4615816" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 5 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x728bbe9bbee3af78ad611315076621865950b344", + "callType": "call", + "gas": "0x26bec", + "input": "0xa9059cbb00000000000000000000000011111254369792b2ca5d084ab5eea397ca8fa48b0000000000000000000000000000000000000000000000000000000bc4615816", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x76c1", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 6 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x11111254369792b2ca5d084ab5eea397ca8fa48b", + "callType": "staticcall", + "gas": "0x29cda", + "input": "0x70a0823100000000000000000000000011111254369792b2ca5d084ab5eea397ca8fa48b", + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 3 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x11111254369792b2ca5d084ab5eea397ca8fa48b", + "callType": "staticcall", + "gas": "0x28f3d", + "input": "0x70a0823100000000000000000000000011111254369792b2ca5d084ab5eea397ca8fa48b", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x97f", + "output": "0x0000000000000000000000000000000000000000000000000000000bc4615816" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x11111254369792b2ca5d084ab5eea397ca8fa48b", + "callType": "call", + "gas": "0x279ad", + "input": "0xa9059cbb00000000000000000000000025376209ba75dff0a1ee75006bc3a4f8706ebf4a0000000000000000000000000000000000000000000000000000000bc4615816", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x76c1", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 5 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x11111254369792b2ca5d084ab5eea397ca8fa48b", + "callType": "call", + "gas": "0x1e28e", + "input": "0xb1746b86000000000000000000000000000000000000000000000000000000000006220e", + "to": "0xe4c9194962532feb467dce8b3d42419641c6ed2e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1ef1", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 6 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe4c9194962532feb467dce8b3d42419641c6ed2e", + "callType": "call", + "gas": "0x1ccea", + "input": "0x6366b936000000000000000000000000000000000000000000000000000000000000000a", + "to": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf6c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 6, + 0 + ], + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xab5c66752a9e8167967685f1450532fb96d5d24f", + "callType": "call", + "gas": "0x13238", + "input": "0xa9059cbb000000000000000000000000f018e9a640f26b3321ee7f7fc0d837619819c71e00000000000000000000000000000000000000000000000000000000071928dd", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x7d3364ff6d36c102a2bba82d425e9635ca49b8cd5cda546553ca251295dca39d", + "transaction_position": 38, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xadb2b42f6bd96f5c65920b9ac88619dce4166f94", + "callType": "call", + "gas": "0x13238", + "input": "0xa9059cbb000000000000000000000000a5a6cdd50f0d9f1c7d7289c984aedf7c71f44e24000000000000000000000000000000000000000000000000000000000bbdfb40", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x7ac97d885be687317f3949cf57fd672c10290998215cf9fc820cebc322733e2c", + "transaction_position": 39, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x2e3381202988d535e8185e7089f633f7c9998e83", + "callType": "call", + "gas": "0x24672", + "input": "0x7ff36ab500000000000000000000000000000000000000000000002cdb2b9ba585fce5a00000000000000000000000000000000000000000000000000000000000000080000000000000000000000000e62028bece33cf9efb3d43a52621f0b16d3504ad000000000000000000000000000000000000000000000000000000005f6be9170000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a8b919680258d369114910511cc87595aec0be6d", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x18fae27693b40000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x20088", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000018fae27693b4000000000000000000000000000000000000000000000000002d491599b62f599916" + }, + "subtraces": 4, + "trace_address": [], + "transaction_hash": "0xf8e60f8cb0e45c6f43921d0b7efb183c18fa0601b851c7c1da79d81dfc0f0b00", + "transaction_position": 40, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x22fdf", + "input": "0x0902f1ac", + "to": "0xd583d0824ed78767e0e35b9bf7a636c81c665aa8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000000081e56f47bc10efa5a330000000000000000000000000000000000000000000000045e17bddb241aebb5000000000000000000000000000000000000000000000000000000005f6be148" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xf8e60f8cb0e45c6f43921d0b7efb183c18fa0601b851c7c1da79d81dfc0f0b00", + "transaction_position": 40, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x2071f", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x18fae27693b40000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5892", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xf8e60f8cb0e45c6f43921d0b7efb183c18fa0601b851c7c1da79d81dfc0f0b00", + "transaction_position": 40, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1a696", + "input": "0xa9059cbb000000000000000000000000d583d0824ed78767e0e35b9bf7a636c81c665aa800000000000000000000000000000000000000000000000018fae27693b40000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0xf8e60f8cb0e45c6f43921d0b7efb183c18fa0601b851c7c1da79d81dfc0f0b00", + "transaction_position": 40, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x16fd3", + "input": "0x022c0d9f00000000000000000000000000000000000000000000002d491599b62f5999160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e62028bece33cf9efb3d43a52621f0b16d3504ad00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xd583d0824ed78767e0e35b9bf7a636c81c665aa8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x12df7", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 3 + ], + "transaction_hash": "0xf8e60f8cb0e45c6f43921d0b7efb183c18fa0601b851c7c1da79d81dfc0f0b00", + "transaction_position": 40, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd583d0824ed78767e0e35b9bf7a636c81c665aa8", + "callType": "call", + "gas": "0x1422f", + "input": "0xa9059cbb000000000000000000000000e62028bece33cf9efb3d43a52621f0b16d3504ad00000000000000000000000000000000000000000000002d491599b62f599916", + "to": "0xa8b919680258d369114910511cc87595aec0be6d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8bd0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 3, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0xf8e60f8cb0e45c6f43921d0b7efb183c18fa0601b851c7c1da79d81dfc0f0b00", + "transaction_position": 40, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa8b919680258d369114910511cc87595aec0be6d", + "callType": "staticcall", + "gas": "0x13262", + "input": "0xaabbb8ca000000000000000000000000d583d0824ed78767e0e35b9bf7a636c81c665aa829ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe895", + "to": "0x1820a4b7618bde71dce8cdc73aab6c95905fad24", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x66a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0, + 0 + ], + "transaction_hash": "0xf8e60f8cb0e45c6f43921d0b7efb183c18fa0601b851c7c1da79d81dfc0f0b00", + "transaction_position": 40, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa8b919680258d369114910511cc87595aec0be6d", + "callType": "staticcall", + "gas": "0x10e14", + "input": "0x62130083000000000000000000000000d583d0824ed78767e0e35b9bf7a636c81c665aa8", + "to": "0xe417b912f6cb6592ec2d71dbf6f2b48191b2cdf6", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x530", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0, + 1 + ], + "transaction_hash": "0xf8e60f8cb0e45c6f43921d0b7efb183c18fa0601b851c7c1da79d81dfc0f0b00", + "transaction_position": 40, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa8b919680258d369114910511cc87595aec0be6d", + "callType": "staticcall", + "gas": "0xbabb", + "input": "0xaabbb8ca000000000000000000000000e62028bece33cf9efb3d43a52621f0b16d3504adb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b", + "to": "0x1820a4b7618bde71dce8cdc73aab6c95905fad24", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x66a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0, + 2 + ], + "transaction_hash": "0xf8e60f8cb0e45c6f43921d0b7efb183c18fa0601b851c7c1da79d81dfc0f0b00", + "transaction_position": 40, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd583d0824ed78767e0e35b9bf7a636c81c665aa8", + "callType": "staticcall", + "gas": "0xb184", + "input": "0x70a08231000000000000000000000000d583d0824ed78767e0e35b9bf7a636c81c665aa8", + "to": "0xa8b919680258d369114910511cc87595aec0be6d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4e6", + "output": "0x0000000000000000000000000000000000000000000007f10ddee20adfa0c11d" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0xf8e60f8cb0e45c6f43921d0b7efb183c18fa0601b851c7c1da79d81dfc0f0b00", + "transaction_position": 40, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd583d0824ed78767e0e35b9bf7a636c81c665aa8", + "callType": "staticcall", + "gas": "0xa67f", + "input": "0x70a08231000000000000000000000000d583d0824ed78767e0e35b9bf7a636c81c665aa8", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000000047712a051b7ceebb5" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0xf8e60f8cb0e45c6f43921d0b7efb183c18fa0601b851c7c1da79d81dfc0f0b00", + "transaction_position": 40, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc098b2a3aa256d2140208c3de6543aaef5cd3a94", + "callType": "call", + "gas": "0x1068", + "input": "0x", + "to": "0x0d188cec4a7374b77d959e869ac260bc5ab8322d", + "value": "0x6210684e1a29e8000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xf74eaa8a2dd8f9907e6b2ca84f1a7bef0ed52bba71b9e045ba9c70e7ad8ddbd3", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xff59364722a4622a8d33623548926375b1b07767", + "callType": "call", + "gas": "0x49444", + "input": "0x000d070b06ced27fd113abadab0fd72adbeaeaeaaf010600000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b974000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc850000000000000000000000000000000000000000000000024fd0b077aad13c950000000000000000000000000000000000000000000000024f7e915f7b0a8e810000000000000000000000000000000000000000000000002ee4efad78d942000106000000000000000000001811a719a05d20b6447ca556a54f00f9c14578be000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000d51ac966319e1600000000000000000000000000000000000000000000000000d1a2e03e9e6aa2000000000000000000000000000000000000000000000007c941dd3947624000", + "to": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x35bc4", + "output": "0x" + }, + "subtraces": 4, + "trace_address": [], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x47609", + "input": "0xced27fd1010600000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b974000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc850000000000000000000000000000000000000000000000024fd0b077aad13c950000000000000000000000000000000000000000000000024f7e915f7b0a8e810000000000000000000000000000000000000000000000002ee4efad78d94200", + "to": "0x339448c11e780180c2cf4f5a6978d9472e296a84", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xd76", + "output": "0x0000000000000000000000000000000000000000000000002ee4efad78d942000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x45d73", + "input": "0x0902f1ac", + "to": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x0000000000000000000000000000000000000000000070607689491a3e20e6e90000000000000000000000000000000000000000000002a29b5f3d4a0f240c50000000000000000000000000000000000000000000000000000000005f6be453" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x46534", + "input": "0x13abadab0106000000000000000000001811a719a05d20b6447ca556a54f00f9c14578be000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000d51ac966319e1600000000000000000000000000000000000000000000000000d1a2e03e9e6aa2000000000000000000000000000000000000000000000007c941dd3947624000", + "to": "0x431e4a8ca42672ae0d7c9999df0ad6f02feb44a9", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x275a", + "output": "0x000000000000000000000000000000000000000000000007c941dd39476240000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "trace_address": [ + 1 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x44c64", + "input": "0xf8b2cb4f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x1811a719a05d20b6447ca556a54f00f9c14578be", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbaf", + "output": "0x000000000000000000000000000000000000000000000293d6329de9587979eb" + }, + "subtraces": 0, + "trace_address": [ + 1, + 0 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x43a48", + "input": "0xf8b2cb4f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x1811a719a05d20b6447ca556a54f00f9c14578be", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbaf", + "output": "0x00000000000000000000000000000000000000000000002794534c0ebf7eb9ba" + }, + "subtraces": 0, + "trace_address": [ + 1, + 1 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x43a76", + "input": "0x0fd72adb010600000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b974000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc850000000000000000000000000000000000000000000000024fd0b077aad13c950000000000000000000000000000000000000000000000024f7e915f7b0a8e810000000000000000000000000000000000000000000000002ee4efad78d94200", + "to": "0x339448c11e780180c2cf4f5a6978d9472e296a84", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x15d57", + "output": "0x" + }, + "subtraces": 4, + "trace_address": [ + 2 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x4230f", + "input": "0x0902f1ac", + "to": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x0000000000000000000000000000000000000000000070607689491a3e20e6e90000000000000000000000000000000000000000000002a29b5f3d4a0f240c50000000000000000000000000000000000000000000000000000000005f6be453" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x3fe69", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x2ee4efad78d94200" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1dfa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x3d9ca", + "input": "0xa9059cbb000000000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b9740000000000000000000000000000000000000000000000002ee4efad78d94200", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 2 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x3ab82", + "input": "0x022c0d9f000000000000000000000000000000000000000000000007c941dd93cdaedf850000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc850000000000000000000000000000000000000000000000000000000000000020", + "to": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xdced", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2, + 3 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "callType": "call", + "gas": "0x374f0", + "input": "0xa9059cbb000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc85000000000000000000000000000000000000000000000007c941dd93cdaedf85", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3a61", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 3, + 0 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "callType": "staticcall", + "gas": "0x3346e", + "input": "0x70a08231000000000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x54b", + "output": "0x000000000000000000000000000000000000000000007058ad476b8670720764" + }, + "subtraces": 0, + "trace_address": [ + 2, + 3, + 1 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "callType": "staticcall", + "gas": "0x32905", + "input": "0x70a08231000000000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000002a2ca442cf787fd4e50" + }, + "subtraces": 0, + "trace_address": [ + 2, + 3, + 2 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x2df39", + "input": "0xeaeaeaaf0106000000000000000000001811a719a05d20b6447ca556a54f00f9c14578be000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000d51ac966319e1600000000000000000000000000000000000000000000000000d1a2e03e9e6aa2000000000000000000000000000000000000000000000007c941dd3947624000", + "to": "0x431e4a8ca42672ae0d7c9999df0ad6f02feb44a9", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1b1d8", + "output": "0x" + }, + "subtraces": 4, + "trace_address": [ + 3 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x2cc79", + "input": "0x70a08231000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x54b", + "output": "0x00000000000000000000000000000000000000000000000808b55eb16bb817d9" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x2be9e", + "input": "0x8201aa3f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000000000000000000000000007c941dd3947624000000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000", + "to": "0x1811a719a05d20b6447ca556a54f00f9c14578be", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x15b6b", + "output": "0x0000000000000000000000000000000000000000000000002f4ae9a0eb8ed4180000000000000000000000000000000000000000000000024dbcdf3e4df18efd" + }, + "subtraces": 2, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1811a719a05d20b6447ca556a54f00f9c14578be", + "callType": "call", + "gas": "0x1e68b", + "input": "0x23b872dd000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc850000000000000000000000001811a719a05d20b6447ca556a54f00f9c14578be000000000000000000000000000000000000000000000007c941dd3947624000", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4204", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1, + 0 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1811a719a05d20b6447ca556a54f00f9c14578be", + "callType": "call", + "gas": "0x19efd", + "input": "0xa9059cbb000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc850000000000000000000000000000000000000000000000002f4ae9a0eb8ed418", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3b3a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1, + 1 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x161bb", + "input": "0x70a08231000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000000002f4ae9a0eb8ed419" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x1569c", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000002f4ae9a0eb8ed418", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2e77", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 3, + 3 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "value": "0x2f4ae9a0eb8ed418" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x37", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 3, + 3, + 0 + ], + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xff6d62bc882c2fca5af5cbfe1e6c10b97ba251a4", + "callType": "call", + "gas": "0x71238", + "input": "0x000e100d07e88a0f32ced27fd15e525e2e0fd72adb000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001c00b060d0713abadabced27fd1eaeaeaaf0fd72adb000000000000000000000000010a00000000000000000000c8782bd1604ab96712818f1f55e11df0e80a0873000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000049b99000000000000000000000000000000000000000000000000000000000004823f00000000000000000000000000000000000000000000000c064f52fac6488000010100000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b974000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc850000000000000000000000000000000000000000000000024fd0b077aad13c950000000000000000000000000000000000000000000000024f51df9ca8681426000000000000000000000000000000000000000000000000486eb1c0c7e4f400000a00000000000000000000bb2b8038a1640196fbe3e38816f3e67cba72d9400000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc8500000000000000000000000000000000000000040bcf3bc2ba0b2c7e98516d6a00000000000000000000000000000000000000040bca803086e85ebcaa682f7c0000000000000000000000000000000000000000000000000000000000fc016d", + "to": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x27c4", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x0fbd5e9a65ec7c0660ce0c238eea8ca484d23b4cb8faec211ddb025f49d1f463", + "transaction_position": 43, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x6e9b7", + "input": "0xe88a0f32000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001c00b060d0713abadabced27fd1eaeaeaaf0fd72adb000000000000000000000000010a00000000000000000000c8782bd1604ab96712818f1f55e11df0e80a0873000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000049b99000000000000000000000000000000000000000000000000000000000004823f00000000000000000000000000000000000000000000000c064f52fac6488000010100000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b974000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc850000000000000000000000000000000000000000000000024fd0b077aad13c950000000000000000000000000000000000000000000000024f51df9ca8681426000000000000000000000000000000000000000000000000486eb1c0c7e4f400", + "to": "0x0b695dd76692f2bbb3e2c706bce7a7505b4c0b52", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1aa9", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x0fbd5e9a65ec7c0660ce0c238eea8ca484d23b4cb8faec211ddb025f49d1f463", + "transaction_position": 43, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "delegatecall", + "gas": "0x6c24e", + "input": "0xced27fd1010100000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b974000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000e33c8e3a0d14a81f0dd7e174830089e82f65fc850000000000000000000000000000000000000000000000024fd0b077aad13c950000000000000000000000000000000000000000000000024f51df9ca8681426000000000000000000000000000000000000000000000000486eb1c0c7e4f400", + "to": "0x339448c11e780180c2cf4f5a6978d9472e296a84", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xe75", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x0fbd5e9a65ec7c0660ce0c238eea8ca484d23b4cb8faec211ddb025f49d1f463", + "transaction_position": 43, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85", + "callType": "call", + "gas": "0x6a087", + "input": "0x0902f1ac", + "to": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000007058ad476b86707207640000000000000000000000000000000000000000000002a2ca442cf787fd4e50000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0x0fbd5e9a65ec7c0660ce0c238eea8ca484d23b4cb8faec211ddb025f49d1f463", + "transaction_position": 43, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x564286362092d8e7936f0549571a803b203aaced", + "callType": "call", + "gas": "0x2d48c", + "input": "0xa9059cbb00000000000000000000000058225c6eabedf078efdd63b8d934a9e775b584d3000000000000000000000000000000000000000000000028edbad3d6abec0000", + "to": "0x558ec3152e2eb2174905cd19aea4e34a23de9ad6", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x7b15", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xad2943350bfc4c06f54f0231c981260e6b459d8527cd53880a4e0dbabbc868a1", + "transaction_position": 44, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x5dfadad1f2b6bb502cea3f1714d1cff6fd4fae83", + "callType": "call", + "gas": "0x29428", + "input": "0x", + "to": "0x0f8aa39a58adcc3df98d826ac798ab837cc0833c", + "value": "0xa9caac4bf51cc800" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xa160e6cf82437a947df9e07bf51acf996fd2eb78cc225389d15e065fc4c4ac3f", + "transaction_position": 45, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7b1886e49ab5433bb46f7258548092dc8cdca28b", + "callType": "call", + "gas": "0x293e8", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x24a6f0f302a010000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1dfa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x99ff74b678033f9e0f5ce82f167f4b31ac7627eb01c42cd87f7ed05efa1bd484", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x2b79ee5cc9e9670760a84d32198d825f5aba2a45", + "callType": "call", + "gas": "0x4fc9", + "input": "0xa9059cbb000000000000000000000000ea8cf5ed33ab5d51419d409f232c58aa011209d000000000000000000000000000000000000000000000000000000000019bfcc0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x67d7a67a8da3b58e8967bb3ee2863bed5b020a487c567599a2c76a4474477010", + "transaction_position": 47, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x9fdd039c879e263f72c51f1e5d5c6b4ea2a5603f", + "callType": "call", + "gas": "0xfa0", + "input": "0x", + "to": "0xa15ef0101ea50e2bf6a35f0c0186f63d514c6263", + "value": "0x11abe603e136000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xbcebc2fb3975c5d6083d55b49d426c4185f2030938e27487ddf857d9f076ebeb", + "transaction_position": 48, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x46340b20830761efd32832a74d7169b29feb9758", + "callType": "call", + "gas": "0x2bb38", + "input": "0x", + "to": "0xfe1a8a2e87bebca57f853c1d53f99fcc104bf732", + "value": "0x40d6473f26a0000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x18fd639f8f32ad32c40393dbbdca688b478a8be849b00c8ce841701fe0e8d76c", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x06037dcb2619f2779481079dca35e117c1436166", + "callType": "call", + "gas": "0x4c91", + "input": "0xa9059cbb0000000000000000000000006262998ced04146fa42253a5c0af90ca02dfd2a3000000000000000000000000000000000000000000000000000000000ba82791", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x95c0222848750c5a8a7391f989538886997a1c749f87781a7c2df882268c19ad", + "transaction_position": 50, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x76d27f37d0098e78be4a6ffb58908033dd24f9fc", + "callType": "call", + "gas": "0x2b8c0", + "input": "0xa9059cbb000000000000000000000000b1d3a287ba052726f9374b43c2567ee971a9d8c900000000000000000000000000000000000000000000000014d1120d7b160000", + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x393c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x72a9d0f197ce3aa9eb8fcd921626c21b8afeccd2fd69c4f284e3fe6910083684", + "transaction_position": 51, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe584f205ab7e58625094a124abb7395f9cf70f2c", + "callType": "call", + "gas": "0x4c91", + "input": "0xa9059cbb0000000000000000000000006262998ced04146fa42253a5c0af90ca02dfd2a300000000000000000000000000000000000000000000000000000000055d50b7", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x9751c61b14f80ef1ff093c35133790e93560088357a2330f8c40c65ead58be03", + "transaction_position": 52, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x9cc4ff06837f11e76595281b58e20c7cace68961", + "callType": "call", + "gas": "0x2b8c0", + "input": "0xa9059cbb000000000000000000000000b1d3a287ba052726f9374b43c2567ee971a9d8c900000000000000000000000000000000000000000000000014d1120d7b160000", + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x393c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x4df2198fbea8d0d3c89b5d5f0798ee417d32646939eec8f3d81869d299644412", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x4e2f504dae2c64c119caae00e1b40e51d5f6558a", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa480190bce9987a548f3afb09874e2f501d3e79c", + "value": "0x18a625a1d2c000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x2d4c0b205c7b4bc4cd3c2af00234ec16fae3beca07979fec69b55b57778a98f0", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xac88dc426b8dcac23c177d425346ef6f6bbb3160", + "callType": "call", + "gas": "0x2b8c0", + "input": "0xa9059cbb000000000000000000000000b1d3a287ba052726f9374b43c2567ee971a9d8c900000000000000000000000000000000000000000000000014d1120d7b160000", + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x393c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xb4c56134a6ba4691082ee856f04c0c080b5c0cdff4dc8a7aede3e26791e9dcde", + "transaction_position": 55, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd2ce2bd8f2f71eea2703df3d5707bd7352f08c99", + "callType": "call", + "gas": "0x2b8b4", + "input": "0xa9059cbb000000000000000000000000b1d3a287ba052726f9374b43c2567ee971a9d8c900000000000000000000000000000000000000000000000000cb38922e07eeab", + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x393c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xea75036aedf0a392fe699ff656632d76a4af00da27ea75b10c6f8c76c890dd22", + "transaction_position": 56, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xfb5d547a14410de47e611976e16f86232820fa3d", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x767203a405b557cac224ec47a0ff3a4155d2ffad", + "value": "0x20e4c5f5024d400" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xab97af61a74b5734c68607065d614bf1126e7ec99214c5fcca09b378a5ecfc56", + "transaction_position": 57, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8bf1004664464c871a9f425d923310dd217a16ba", + "callType": "call", + "gas": "0x2b8d8", + "input": "0xa9059cbb0000000000000000000000007295ed076d1bc51f574c7b52a436950c5398b052000000000000000000000000000000000000000000000000000000003ba1bae4", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8bbd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xfed6e422118038664b060660898a863bfd5a7ee23ec414de70976e7d753844e6", + "transaction_position": 58, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x2a367", + "input": "0xa9059cbb0000000000000000000000007295ed076d1bc51f574c7b52a436950c5398b052000000000000000000000000000000000000000000000000000000003ba1bae4", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x80d8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xfed6e422118038664b060660898a863bfd5a7ee23ec414de70976e7d753844e6", + "transaction_position": 58, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf0c9239dfe98e733a93a85c5e3236ab3a7682836", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x035065526b13deac91453ef2c2f386e3d32ffa3a", + "value": "0x20ad8842a4e000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xf5ff645a03d292c0074b89aac5d5366f03e025efcc622a666786d4ac4beb15a3", + "transaction_position": 59, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x5e366ba2df146f94b54380e36a22fdb5ee8175bd", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x29df6b4985db427bd317466f691de0da5f6a3d1f", + "value": "0x21e1f0d72e7b800" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x5d39a03493374ac701b9d0748c3815dc9ff6e2ce64a21c06d7e0974db2c091a8", + "transaction_position": 60, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x089d8c8fc24fe13887eac25e78037c88564726e0", + "callType": "call", + "gas": "0x2b8b4", + "input": "0xa9059cbb0000000000000000000000009c9689a5b481e31c783e7795b4b79a3c3fd156c4000000000000000000000000000000000000000000000000d4e7d82e86a5ec00", + "to": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x49ae", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x4ff172ad263077c8a14d7e8e27b4b7333dcf420b8d1e6b3794cbb2ce608ab571", + "transaction_position": 61, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x9f88f0ef6492c32dfa283012a91e041ade140688", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x6c84f201e1ea124aaae3c3c1da04908387baf1f3", + "value": "0x4354b889aac6000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xa1620fb46a800b9eea6a00cbd774a8eae7ebac28779989aef404c9ee30779a0a", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe554b4d8ea0a5c8de57555bb2be844776c29a7d9", + "callType": "call", + "gas": "0x2b8c0", + "input": "0xa9059cbb000000000000000000000000d593cc17131ff19f8285f5ff37efb3bb97fa29a000000000000000000000000000000000000000000000000061c86bab2f670000", + "to": "0x04fa0d235c4abf4bcf4787af4cf447de572ef828", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x253a1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x05b69342c4d9b7d397af7bdd3821b7dd2ba43876b905dc82b5f0ed82bbf319ca", + "transaction_position": 63, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8c4b20e77e02f86a1f2ea59f7be2310a228add0d", + "callType": "call", + "gas": "0x43f60", + "input": "0x6f7616620000000000000000000000000a0a6aedd785ba66a481ba9951fee6af0496d10000000000000000000000000000000000000000000000000004c5fed0f6254000", + "to": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3af0", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [], + "transaction_hash": "0xdb700f116257ded67852e10c8edfeb72a6241b25aae7158c3e1e1485e5621a37", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "callType": "staticcall", + "gas": "0x41d49", + "input": "0xe66f5ab00000000000000000000000000a0a6aedd785ba66a481ba9951fee6af0496d100", + "to": "0xce0a1033e4b35c201d86820004a64b6c49b02c9e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x504", + "output": "0x00000000000000000000000000000000000000000000000063b48b60003e7c00" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xdb700f116257ded67852e10c8edfeb72a6241b25aae7158c3e1e1485e5621a37", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "callType": "call", + "gas": "0x411f7", + "input": "0x6f7616620000000000000000000000000a0a6aedd785ba66a481ba9951fee6af0496d100000000000000000000000000000000000000000000000000687a8a30f663bc00", + "to": "0xce0a1033e4b35c201d86820004a64b6c49b02c9e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x18a0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xdb700f116257ded67852e10c8edfeb72a6241b25aae7158c3e1e1485e5621a37", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8c4b20e77e02f86a1f2ea59f7be2310a228add0d", + "callType": "call", + "gas": "0x43f60", + "input": "0x6f7616620000000000000000000000000a50bbb4d36177628f8b1b03312d94a8a1a099d3000000000000000000000000000000000000000000000000000962db935b7400", + "to": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3af0", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [], + "transaction_hash": "0x8e82264227fa8033725a171cf4127a9428d3b99daaa1a483b37ef53ee5194f0f", + "transaction_position": 65, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "callType": "staticcall", + "gas": "0x41d49", + "input": "0xe66f5ab00000000000000000000000000a50bbb4d36177628f8b1b03312d94a8a1a099d3", + "to": "0xce0a1033e4b35c201d86820004a64b6c49b02c9e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x504", + "output": "0x000000000000000000000000000000000000000000000000000962db935b7400" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x8e82264227fa8033725a171cf4127a9428d3b99daaa1a483b37ef53ee5194f0f", + "transaction_position": 65, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "callType": "call", + "gas": "0x411f7", + "input": "0x6f7616620000000000000000000000000a50bbb4d36177628f8b1b03312d94a8a1a099d30000000000000000000000000000000000000000000000000012c5b726b6e800", + "to": "0xce0a1033e4b35c201d86820004a64b6c49b02c9e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x18a0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x8e82264227fa8033725a171cf4127a9428d3b99daaa1a483b37ef53ee5194f0f", + "transaction_position": 65, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8c4b20e77e02f86a1f2ea59f7be2310a228add0d", + "callType": "call", + "gas": "0x43f54", + "input": "0x6f7616620000000000000000000000000a738830d04e30908cf75184a90c1495989808fa00000000000000000000000000000000000000000000000003a6f44167d7cc00", + "to": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3af0", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [], + "transaction_hash": "0x3b06130e6637a76ef1821c3c81f845dca37bdac0078a6d384dd4a8994212849c", + "transaction_position": 66, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "callType": "staticcall", + "gas": "0x41d3e", + "input": "0xe66f5ab00000000000000000000000000a738830d04e30908cf75184a90c1495989808fa", + "to": "0xce0a1033e4b35c201d86820004a64b6c49b02c9e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x504", + "output": "0x0000000000000000000000000000000000000000000000000ca63a70a0f0fc00" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x3b06130e6637a76ef1821c3c81f845dca37bdac0078a6d384dd4a8994212849c", + "transaction_position": 66, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "callType": "call", + "gas": "0x411ec", + "input": "0x6f7616620000000000000000000000000a738830d04e30908cf75184a90c1495989808fa000000000000000000000000000000000000000000000000104d2eb208c8c800", + "to": "0xce0a1033e4b35c201d86820004a64b6c49b02c9e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x18a0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x3b06130e6637a76ef1821c3c81f845dca37bdac0078a6d384dd4a8994212849c", + "transaction_position": 66, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8c4b20e77e02f86a1f2ea59f7be2310a228add0d", + "callType": "call", + "gas": "0x43f54", + "input": "0x6f7616620000000000000000000000000acf68df0b25cee5a3a74203965cd12db03f91c7000000000000000000000000000000000000000000000000011995cb910ad400", + "to": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3af0", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [], + "transaction_hash": "0xe0946483b9ac83699ab0399db50bc1abd5c0e367b264a2c345d0ccdea578c617", + "transaction_position": 67, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "callType": "staticcall", + "gas": "0x41d3e", + "input": "0xe66f5ab00000000000000000000000000acf68df0b25cee5a3a74203965cd12db03f91c7", + "to": "0xce0a1033e4b35c201d86820004a64b6c49b02c9e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x504", + "output": "0x000000000000000000000000000000000000000000000000069982ca0e58c000" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xe0946483b9ac83699ab0399db50bc1abd5c0e367b264a2c345d0ccdea578c617", + "transaction_position": 67, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "callType": "call", + "gas": "0x411ec", + "input": "0x6f7616620000000000000000000000000acf68df0b25cee5a3a74203965cd12db03f91c700000000000000000000000000000000000000000000000007b318959f639400", + "to": "0xce0a1033e4b35c201d86820004a64b6c49b02c9e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x18a0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xe0946483b9ac83699ab0399db50bc1abd5c0e367b264a2c345d0ccdea578c617", + "transaction_position": 67, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8c4b20e77e02f86a1f2ea59f7be2310a228add0d", + "callType": "call", + "gas": "0x43f60", + "input": "0x6f7616620000000000000000000000000b006d512975d98a306a2eb1257aada3640d8d9400000000000000000000000000000000000000000000000009aebd2099721800", + "to": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x7588", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [], + "transaction_hash": "0xaf61f524492246a33ebf4678a4f7e20cd198c337a63e4b97d8f518ad7ea9405c", + "transaction_position": 68, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "callType": "staticcall", + "gas": "0x41d49", + "input": "0xe66f5ab00000000000000000000000000b006d512975d98a306a2eb1257aada3640d8d94", + "to": "0xce0a1033e4b35c201d86820004a64b6c49b02c9e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x504", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xaf61f524492246a33ebf4678a4f7e20cd198c337a63e4b97d8f518ad7ea9405c", + "transaction_position": 68, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4", + "callType": "call", + "gas": "0x411f7", + "input": "0x6f7616620000000000000000000000000b006d512975d98a306a2eb1257aada3640d8d9400000000000000000000000000000000000000000000000009aebd2099721800", + "to": "0xce0a1033e4b35c201d86820004a64b6c49b02c9e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5338", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xaf61f524492246a33ebf4678a4f7e20cd198c337a63e4b97d8f518ad7ea9405c", + "transaction_position": 68, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xcbbcf481d0a95c49cd2b6d09aef9018585574b49", + "callType": "call", + "gas": "0x4c91", + "input": "0xa9059cbb0000000000000000000000006262998ced04146fa42253a5c0af90ca02dfd2a3000000000000000000000000000000000000000000000000000000005c449b00", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xded9164e9dcf0102169541a165d0bccbeb404d8628963f2e07b87032052e7b81", + "transaction_position": 69, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x6346efe7e2a8bed87183cd2fb722b11297185b3e", + "callType": "call", + "gas": "0x2b8a8", + "input": "0xa9059cbb00000000000000000000000075a33ba37d86a0fbd06970577017dec18d896e1500000000000000000000000000000000000000000000014464aea768c1800000", + "to": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x49ae", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x774f9eaee89d448c25bb2c049c2669fcb2f61ef1a32d80afe86efcf667befba1", + "transaction_position": 70, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x6e35bbe605f5d3d8eaa0df747eeeb45d6017deb3", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x5d76408a111ada8e367eb6e54451d869482a96da", + "value": "0x8bda7ffcd06a000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xf1f0d77aa621e5e2a740a6a4a9ee43a5a88371c5b6ec85a5c7461eed14509e56", + "transaction_position": 71, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x5fe6ed9c861179b9853c1d5fcd81c36928db2e49", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xd4dc6fd56fd0b0c7f1a7748dd9749c2a24f2cb7b", + "value": "0x1e7421b9b96f000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x53084fe9c209c459ab9f9a0c7a8ce6a8b2c3387ac8af85b298ed56a53c08d047", + "transaction_position": 72, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x5fce62e1bc1eac8b9da51482f9be82fd4aee9c78", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xe9e9d5b98bfc9a83d162422626421a171d520fef", + "value": "0xf2e3e27c35e6800" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xca682d40914d63f863d39b8b9b0f87fc8fb7d45ecfb6d84441c45037e74e9c66", + "transaction_position": 73, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x00004d2dc7382415f4849e5fdae48106022271df", + "callType": "call", + "gas": "0x210cf", + "input": "0x8803dbee00000000000000000000000000000000000000000000000661d4fb3d5ebd0000000000000000000000000000000000000000000000000000266fb7fe00bc04e700000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000004d2dc7382415f4849e5fdae48106022271df000000000000000000000000000000000000000000000000000000005f6be4de0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xf69de8f2a6503256ca3cd9b63a3c1199481b5f6462ba357eb50c80c2b1ca1e7f", + "transaction_position": 74, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1fb56", + "input": "0x0902f1ac", + "to": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000007058ad476b86707207640000000000000000000000000000000000000000000002a2ca442cf787fd4e50000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xf69de8f2a6503256ca3cd9b63a3c1199481b5f6462ba357eb50c80c2b1ca1e7f", + "transaction_position": 74, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xac8a58655c2277a901f1e6f44ea44993116ea41e", + "callType": "call", + "gas": "0x9885c", + "input": "0x865a6b4f00000000000000000000000032b6562679e08516e5745c95903393438be23f8d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e4ed2f0c53000000000000000000000000000000000000000000000000470c9322df77db6d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599000000000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b974000000000000000000000000c8782bd1604ab96712818f1f55e11df0e80a0873000000000000000000000000bb2b8038a1640196fbe3e38816f3e67cba72d940000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000008a7f45c71a8964000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b97400000000000000000000000000000000000000000000705d459ecb7b8ec266e90000000000000000000000000000000000000000000000000000000000000001", + "to": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x6811e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "delegatecall", + "gas": "0x953a3", + "input": "0xed2f0c53000000000000000000000000000000000000000000000000470c9322df77db6d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599000000000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b974000000000000000000000000c8782bd1604ab96712818f1f55e11df0e80a0873000000000000000000000000bb2b8038a1640196fbe3e38816f3e67cba72d940000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000008a7f45c71a8964000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b97400000000000000000000000000000000000000000000705d459ecb7b8ec266e90000000000000000000000000000000000000000000000000000000000000001", + "to": "0x32b6562679e08516e5745c95903393438be23f8d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x671a6", + "output": "0x" + }, + "subtraces": 16, + "trace_address": [ + 0 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "staticcall", + "gas": "0x9255f", + "input": "0x70a08231000000000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x54b", + "output": "0x000000000000000000000000000000000000000000007058ad476b8670720764" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "staticcall", + "gas": "0x91891", + "input": "0x0902f1ac", + "to": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000007058ad476b86707207640000000000000000000000000000000000000000000002a2ca442cf787fd4e50000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "staticcall", + "gas": "0x90b1b", + "input": "0xf8b2cb4f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0xc8782bd1604ab96712818f1f55e11df0e80a0873", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbaf", + "output": "0x0000000000000000000000000000000000000000000002ad7a56bb2316463b7e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "staticcall", + "gas": "0x8f958", + "input": "0xf8b2cb4f0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599", + "to": "0xc8782bd1604ab96712818f1f55e11df0e80a0873", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbaf", + "output": "0x00000000000000000000000000000000000000000000000000000000e398f3ed" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "staticcall", + "gas": "0x8e790", + "input": "0x948d8ce6000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0xc8782bd1604ab96712818f1f55e11df0e80a0873", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xb9b", + "output": "0x0000000000000000000000000000000000000000000000008ac7230489e80000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 4 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "staticcall", + "gas": "0x8d5e0", + "input": "0x948d8ce60000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599", + "to": "0xc8782bd1604ab96712818f1f55e11df0e80a0873", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xb9b", + "output": "0x0000000000000000000000000000000000000000000000022b1c8c1227a00000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 5 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "staticcall", + "gas": "0x8c44c", + "input": "0xd4cadf68", + "to": "0xc8782bd1604ab96712818f1f55e11df0e80a0873", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x7b8", + "output": "0x000000000000000000000000000000000000000000000000000aa87bee538000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 6 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "staticcall", + "gas": "0x8b611", + "input": "0xba9530a60000000000000000000000000000000000000000000002ad7a56bb2316463b7e0000000000000000000000000000000000000000000000008ac7230489e8000000000000000000000000000000000000000000000000000000000000e398f3ed0000000000000000000000000000000000000000000000022b1c8c1227a0000000000000000000000000000000000000000000000000000bc9e8d4b4bcdac9fd000000000000000000000000000000000000000000000000000aa87bee538000", + "to": "0xc8782bd1604ab96712818f1f55e11df0e80a0873", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2310", + "output": "0x0000000000000000000000000000000000000000000000000000000000f71cf7" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "staticcall", + "gas": "0x88bf2", + "input": "0x0902f1ac", + "to": "0xbb2b8038a1640196fbe3e38816f3e67cba72d940", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000000000000001ae3e191cce000000000000000000000000000000000000000000007d706b674e09d57c028e000000000000000000000000000000000000000000000000000000005f6be3ff" + }, + "subtraces": 0, + "trace_address": [ + 0, + 8 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "call", + "gas": "0x862d9", + "input": "0x7ff36ab5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000800000000000000000000000007ee8ab2a8d890c000acc87bf6e22e2ad383e23ce80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x470c9322df77db6d" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1808e", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000470c9322df77db6d00000000000000000000000000000000000000000000000bc9e8d4b4bcdac9fd" + }, + "subtraces": 4, + "trace_address": [ + 0, + 9 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x833d5", + "input": "0x0902f1ac", + "to": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000007058ad476b86707207640000000000000000000000000000000000000000000002a2ca442cf787fd4e50000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 0, + 9, + 0 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x80b14", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x470c9322df77db6d" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5892", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 9, + 1 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x7aa8c", + "input": "0xa9059cbb000000000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b974000000000000000000000000000000000000000000000000470c9322df77db6d", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 9, + 2 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x773c8", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000bc9e8d4b4bcdac9fd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000007ee8ab2a8d890c000acc87bf6e22e2ad383e23ce00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xadfd", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 0, + 9, + 3 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "callType": "call", + "gas": "0x72e14", + "input": "0xa9059cbb0000000000000000000000007ee8ab2a8d890c000acc87bf6e22e2ad383e23ce00000000000000000000000000000000000000000000000bc9e8d4b4bcdac9fd", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3a61", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 9, + 3, + 0 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "callType": "staticcall", + "gas": "0x6ed93", + "input": "0x70a08231000000000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x54b", + "output": "0x00000000000000000000000000000000000000000000704ce35e96d1b3973d67" + }, + "subtraces": 0, + "trace_address": [ + 0, + 9, + 3, + 1 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "callType": "staticcall", + "gas": "0x6e22a", + "input": "0x70a08231000000000000000000000000a2107fa5b38d9bbd2c461d6edf11b11a50f6b974", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000002a31150c01a677529bd" + }, + "subtraces": 0, + "trace_address": [ + 0, + 9, + 3, + 2 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "staticcall", + "gas": "0x6deae", + "input": "0xdd62ed3e0000000000000000000000007ee8ab2a8d890c000acc87bf6e22e2ad383e23ce000000000000000000000000c8782bd1604ab96712818f1f55e11df0e80a0873", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x602", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 10 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "call", + "gas": "0x6cfa3", + "input": "0x095ea7b3000000000000000000000000c8782bd1604ab96712818f1f55e11df0e80a087300000000000000000000000000000000000000000000000bc9e8d4b4bcdac9fd", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x58a7", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 11 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "call", + "gas": "0x670c8", + "input": "0x8201aa3f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000000000000000000000000000bc9e8d4b4bcdac9fd0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c59900000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000", + "to": "0xc8782bd1604ab96712818f1f55e11df0e80a0873", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x15108", + "output": "0x0000000000000000000000000000000000000000000000000000000000f71cf700000000000000000000000000000000000000ab4d4d92f7c278c92b76072f23" + }, + "subtraces": 2, + "trace_address": [ + 0, + 12 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc8782bd1604ab96712818f1f55e11df0e80a0873", + "callType": "call", + "gas": "0x589ed", + "input": "0x23b872dd0000000000000000000000007ee8ab2a8d890c000acc87bf6e22e2ad383e23ce000000000000000000000000c8782bd1604ab96712818f1f55e11df0e80a087300000000000000000000000000000000000000000000000bc9e8d4b4bcdac9fd", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x319c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 12, + 0 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc8782bd1604ab96712818f1f55e11df0e80a0873", + "callType": "call", + "gas": "0x55285", + "input": "0xa9059cbb0000000000000000000000007ee8ab2a8d890c000acc87bf6e22e2ad383e23ce0000000000000000000000000000000000000000000000000000000000f71cf7", + "to": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x413f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 12, + 1 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "staticcall", + "gas": "0x51cef", + "input": "0xdd62ed3e0000000000000000000000007ee8ab2a8d890c000acc87bf6e22e2ad383e23ce0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x6ea", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 13 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "call", + "gas": "0x50d08", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000f71cf7", + "to": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5b1c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 14 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "call", + "gas": "0x4a9bc", + "input": "0x18cbafe50000000000000000000000000000000000000000000000000000000000f71cf7000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007ee8ab2a8d890c000acc87bf6e22e2ad383e23ce800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1d83b", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000f71cf700000000000000000000000000000000000000000000000047d486040251b769" + }, + "subtraces": 5, + "trace_address": [ + 0, + 15 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x4896e", + "input": "0x0902f1ac", + "to": "0xbb2b8038a1640196fbe3e38816f3e67cba72d940", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000000000000001ae3e191cce000000000000000000000000000000000000000000007d706b674e09d57c028e000000000000000000000000000000000000000000000000000000005f6be3ff" + }, + "subtraces": 0, + "trace_address": [ + 0, + 15, + 0 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x477b3", + "input": "0x23b872dd0000000000000000000000007ee8ab2a8d890c000acc87bf6e22e2ad383e23ce000000000000000000000000bb2b8038a1640196fbe3e38816f3e67cba72d9400000000000000000000000000000000000000000000000000000000000f71cf7", + "to": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3c6e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 15, + 1 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x42f08", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047d486040251b7690000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xbb2b8038a1640196fbe3e38816f3e67cba72d940", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x118ea", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 0, + 15, + 2 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbb2b8038a1640196fbe3e38816f3e67cba72d940", + "callType": "call", + "gas": "0x3f649", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000047d486040251b769", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x75d2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 15, + 2, + 0 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbb2b8038a1640196fbe3e38816f3e67cba72d940", + "callType": "staticcall", + "gas": "0x37b58", + "input": "0x70a08231000000000000000000000000bb2b8038a1640196fbe3e38816f3e67cba72d940", + "to": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5d7", + "output": "0x000000000000000000000000000000000000000000000000000001ae3f1039c5" + }, + "subtraces": 0, + "trace_address": [ + 0, + 15, + 2, + 1 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbb2b8038a1640196fbe3e38816f3e67cba72d940", + "callType": "staticcall", + "gas": "0x36f65", + "input": "0x70a08231000000000000000000000000bb2b8038a1640196fbe3e38816f3e67cba72d940", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000007d702392c805d32a4b25" + }, + "subtraces": 0, + "trace_address": [ + 0, + 15, + 2, + 2 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x313ea", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000047d486040251b769", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2e93", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 15, + 3 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x47d486040251b769" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x53", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 15, + 3, + 0 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x2c831", + "input": "0x", + "to": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "value": "0x47d486040251b769" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x37", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 15, + 4 + ], + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_position": 75, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x73952f60df25c4389e6afcfa4ebbdfa093e54b73", + "callType": "call", + "gas": "0x1c62e", + "input": "0x64887334000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000a6a806000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000020000291ec12920cbfd2d272e09e00000000000000000000000000000000000002c085f52a3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200003e4c423e4437bbd78fd3f620000000000000000000000000000000000000d8abfd0864000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", + "to": "0xfb80bfa19cae9e00f28b0f7e1023109deeb10483", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3f8e", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xdd69116515355534ed757a00afe3563283411671cb059bb38c55b02cd30ee97d", + "transaction_position": 76, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x532be0228f87ade6229ffb3f28c4395ca23f109b", + "callType": "call", + "gas": "0xc9208", + "input": "0x865a6b4f00000000000000000000000032b6562679e08516e5745c95903393438be23f8d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e4ed2f0c530000000000000000000000000000000000000000000000003849f94dc8850b00000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe2000000000000000000000000042afd3869a47e2d5d42cc787d5c9e19df32185f000000000000000000000000795065dcc9f64b5614c407a6efdc400da6221fb0000000000000000000000000812dcbf51f5a7a000df6e7aaa8557290fd41cf41000000000000000000000000dc61511da969a32a29da5464d1bc71c546ac7578000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000008c673b09860000000000000000000000000000042afd3869a47e2d5d42cc787d5c9e19df32185f000000000000000000000000dc61511da969a32a29da5464d1bc71c546ac7578000000000000000000000000000000000000000000001e59f3fb8c9d6121a1890000000000000000000000000000000000000000000000000000000000000001", + "to": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1dab", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x7543c5c83f921d0cd056b4dac104f86827b5fcdb4634889f8182e4bf1d21df67", + "transaction_position": 77, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "delegatecall", + "gas": "0xc5129", + "input": "0xed2f0c530000000000000000000000000000000000000000000000003849f94dc8850b00000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe2000000000000000000000000042afd3869a47e2d5d42cc787d5c9e19df32185f000000000000000000000000795065dcc9f64b5614c407a6efdc400da6221fb0000000000000000000000000812dcbf51f5a7a000df6e7aaa8557290fd41cf41000000000000000000000000dc61511da969a32a29da5464d1bc71c546ac7578000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000008c673b09860000000000000000000000000000042afd3869a47e2d5d42cc787d5c9e19df32185f000000000000000000000000dc61511da969a32a29da5464d1bc71c546ac7578000000000000000000000000000000000000000000001e59f3fb8c9d6121a1890000000000000000000000000000000000000000000000000000000000000001", + "to": "0x32b6562679e08516e5745c95903393438be23f8d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x7543c5c83f921d0cd056b4dac104f86827b5fcdb4634889f8182e4bf1d21df67", + "transaction_position": 77, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "from": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce", + "callType": "staticcall", + "gas": "0xc16ef", + "input": "0x70a08231000000000000000000000000dc61511da969a32a29da5464d1bc71c546ac7578", + "to": "0x042afd3869a47e2d5d42cc787d5c9e19df32185f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x490", + "output": "0x000000000000000000000000000000000000000000001eae8ffbfbb5f0f30c92" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x7543c5c83f921d0cd056b4dac104f86827b5fcdb4634889f8182e4bf1d21df67", + "transaction_position": 77, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb9718a387a880a812e805bc137ac0d5490e7b1f2", + "callType": "call", + "gas": "0x29349", + "input": "0x38ed1739000000000000000000000000000000000000000000000000000003061097d7b400000000000000000000000000000000000000000000009f0c7ad133210cd3ce00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000b9718a387a880a812e805bc137ac0d5490e7b1f2000000000000000000000000000000000000000000000000000000005f6be8eb0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000d46ba6d942050d489dbd938a2c909a5d5039a161000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000042afd3869a47e2d5d42cc787d5c9e19df32185f", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x27773", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000003061097d7b40000000000000000000000000000000000000000000000005fbce9f67ba69f010000000000000000000000000000000000000000000000a93800de311fa2d612" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_position": 78, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x27b94", + "input": "0x0902f1ac", + "to": "0xc5be99a02c6857f9eac67bbce58df5572498f40c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000000513a68febd13569b3760000000000000000000000000000000000000000000000000028e974ca604d8d000000000000000000000000000000000000000000000000000000005f6be3a1" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_position": 78, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x26957", + "input": "0x0902f1ac", + "to": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000001eae8ffbfbb5f0f30c92000000000000000000000000000000000000000000000010ef0c9bc4b2a4c720000000000000000000000000000000000000000000000000000000005f6be453" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_position": 78, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x25788", + "input": "0x23b872dd000000000000000000000000b9718a387a880a812e805bc137ac0d5490e7b1f2000000000000000000000000c5be99a02c6857f9eac67bbce58df5572498f40c000000000000000000000000000000000000000000000000000003061097d7b4", + "to": "0xd46ba6d942050d489dbd938a2c909a5d5039a161", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x6035", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 2 + ], + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_position": 78, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd46ba6d942050d489dbd938a2c909a5d5039a161", + "callType": "delegatecall", + "gas": "0x2439c", + "input": "0x23b872dd000000000000000000000000b9718a387a880a812e805bc137ac0d5490e7b1f2000000000000000000000000c5be99a02c6857f9eac67bbce58df5572498f40c000000000000000000000000000000000000000000000000000003061097d7b4", + "to": "0xf9e6a96229140195777a1c3ab47c9bf16f055406", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5550", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_position": 78, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1e8da", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000005fbce9f67ba69f010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dc61511da969a32a29da5464d1bc71c546ac757800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xc5be99a02c6857f9eac67bbce58df5572498f40c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xec20", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 3 + ], + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_position": 78, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc5be99a02c6857f9eac67bbce58df5572498f40c", + "callType": "call", + "gas": "0x1b952", + "input": "0xa9059cbb000000000000000000000000dc61511da969a32a29da5464d1bc71c546ac75780000000000000000000000000000000000000000000000005fbce9f67ba69f01", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3b3a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_position": 78, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc5be99a02c6857f9eac67bbce58df5572498f40c", + "callType": "staticcall", + "gas": "0x177fb", + "input": "0x70a08231000000000000000000000000c5be99a02c6857f9eac67bbce58df5572498f40c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x00000000000000000000000000000000000000000000051346d301dab9c31475" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_position": 78, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc5be99a02c6857f9eac67bbce58df5572498f40c", + "callType": "staticcall", + "gas": "0x16d09", + "input": "0x70a08231000000000000000000000000c5be99a02c6857f9eac67bbce58df5572498f40c", + "to": "0xd46ba6d942050d489dbd938a2c909a5d5039a161", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x13a5", + "output": "0x0000000000000000000000000000000000000000000000000028ec7adaf82541" + }, + "subtraces": 1, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_position": 78, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd46ba6d942050d489dbd938a2c909a5d5039a161", + "callType": "delegatecall", + "gas": "0x15cd0", + "input": "0x70a08231000000000000000000000000c5be99a02c6857f9eac67bbce58df5572498f40c", + "to": "0xf9e6a96229140195777a1c3ab47c9bf16f055406", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8c9", + "output": "0x0000000000000000000000000000000000000000000000000028ec7adaf82541" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0 + ], + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_position": 78, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0xf48e", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000a93800de311fa2d6120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b9718a387a880a812e805bc137ac0d5490e7b1f200000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xda8c", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 4 + ], + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_position": 78, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "callType": "call", + "gas": "0xc8d7", + "input": "0xa9059cbb000000000000000000000000b9718a387a880a812e805bc137ac0d5490e7b1f20000000000000000000000000000000000000000000000a93800de311fa2d612", + "to": "0x042afd3869a47e2d5d42cc787d5c9e19df32185f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x38bb", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 4, + 0 + ], + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_position": 78, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "callType": "staticcall", + "gas": "0x89f5", + "input": "0x70a08231000000000000000000000000dc61511da969a32a29da5464d1bc71c546ac7578", + "to": "0x042afd3869a47e2d5d42cc787d5c9e19df32185f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x490", + "output": "0x000000000000000000000000000000000000000000001e0557fb1d84d1503680" + }, + "subtraces": 0, + "trace_address": [ + 4, + 1 + ], + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_position": 78, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "callType": "staticcall", + "gas": "0x7f44", + "input": "0x70a08231000000000000000000000000dc61511da969a32a29da5464d1bc71c546ac7578", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000000114ec985bb2e4b6621" + }, + "subtraces": 0, + "trace_address": [ + 4, + 2 + ], + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_position": 78, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8588b8ddc8029a38cd58d229bcbd44fc5e5634d6", + "callType": "call", + "gas": "0x1061c1", + "input": "0xc89e4361b493becdd1ed1a952c4d4f13f5a8f68e7a450ed4628642fe0abf20dcc2c82f28fe4f3e406928c229400da1f70409b03f98f7fae983b09cbe000000005416b9718a387a880a812e805bc137ac0d5490e7b1f24f000630710300000014560000006b3595068778dd592e39a122f4f5a5cf09c90fe256000000042afd3869a47e2d5d42cc787d5c9e19df32185f55000001", + "to": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x537ec", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "call", + "gas": "0x101497", + "input": "0xb1d926ee00000000000000000000000000000000000000000000000098f7fae983b09cbe", + "to": "0x628642fe0abf20dcc2c82f28fe4f3e406928c229", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5f8", + "output": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "staticcall", + "gas": "0x1002cf", + "input": "0xde679c7b0000000000000000000000008588b8ddc8029a38cd58d229bcbd44fc5e5634d6", + "to": "0x52a03d5d2bb8a30585dfc59904c799b27a03a56e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4f9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "delegatecall", + "gas": "0xfe575", + "input": "0x7c7123875416b9718a387a880a812e805bc137ac0d5490e7b1f24f000630710300000014560000006b3595068778dd592e39a122f4f5a5cf09c90fe256000000042afd3869a47e2d5d42cc787d5c9e19df32185f55000001", + "to": "0xb493becdd1ed1a952c4d4f13f5a8f68e7a450ed4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4bf88", + "output": "0x" + }, + "subtraces": 14, + "trace_address": [ + 2 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "staticcall", + "gas": "0xf79ed", + "input": "0x0902f1ac", + "to": "0x795065dcc9f64b5614c407a6efdc400da6221fb0", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c1", + "output": "0x00000000000000000000000000000000000000000014d6c267867edefaba1fe2000000000000000000000000000000000000000000001508e44a7192904067cc000000000000000000000000000000000000000000000000000000005f6be446" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "staticcall", + "gas": "0xf6008", + "input": "0x0902f1ac", + "to": "0x812dcbf51f5a7a000df6e7aaa8557290fd41cf41", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c1", + "output": "0x00000000000000000000000000000000000000000000108374bf9d0de287fcb30000000000000000000000000000000000000000000008a9b70df3e185b9ecab000000000000000000000000000000000000000000000000000000005f6be446" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "staticcall", + "gas": "0xf4582", + "input": "0x0902f1ac", + "to": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000001e0557fb1d84d15036800000000000000000000000000000000000000000000000114ec985bb2e4b6621000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 2, + 2 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "call", + "gas": "0xf1906", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x384a691fde98a000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1dfa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 2, + 3 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "staticcall", + "gas": "0xef243", + "input": "0x70a0823100000000000000000000000078a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000000004002eaea96d519a5" + }, + "subtraces": 0, + "trace_address": [ + 2, + 4 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "call", + "gas": "0xedfc0", + "input": "0xa9059cbb000000000000000000000000795065dcc9f64b5614c407a6efdc400da6221fb0000000000000000000000000000000000000000000000000384a691fde98a000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 5 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "call", + "gas": "0xea5f6", + "input": "0x022c0d9f00000000000000000000000000000000000000000000003798d818f29d313564000000000000000000000000000000000000000000000000000000000000000000000000000000000000000078a55b9b3bbeffb36a43d9905f654d2769dc55e800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x795065dcc9f64b5614c407a6efdc400da6221fb0", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x11709", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2, + 6 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x795065dcc9f64b5614c407a6efdc400da6221fb0", + "callType": "call", + "gas": "0xe430e", + "input": "0xa9059cbb00000000000000000000000078a55b9b3bbeffb36a43d9905f654d2769dc55e800000000000000000000000000000000000000000000003798d818f29d313564", + "to": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x7355", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 6, + 0 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x795065dcc9f64b5614c407a6efdc400da6221fb0", + "callType": "staticcall", + "gas": "0xdca6b", + "input": "0x70a08231000000000000000000000000795065dcc9f64b5614c407a6efdc400da6221fb0", + "to": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4fe", + "output": "0x00000000000000000000000000000000000000000014d68aceae65ec5d88ea7e" + }, + "subtraces": 0, + "trace_address": [ + 2, + 6, + 1 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x795065dcc9f64b5614c407a6efdc400da6221fb0", + "callType": "staticcall", + "gas": "0xdbf3c", + "input": "0x70a08231000000000000000000000000795065dcc9f64b5614c407a6efdc400da6221fb0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000015091c94dab26ed907cc" + }, + "subtraces": 0, + "trace_address": [ + 2, + 6, + 2 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "staticcall", + "gas": "0xd8a26", + "input": "0x70a0823100000000000000000000000078a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "to": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4fe", + "output": "0x00000000000000000000000000000000000000000000003798d818f29d313564" + }, + "subtraces": 0, + "trace_address": [ + 2, + 7 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "call", + "gas": "0xd7785", + "input": "0xa9059cbb000000000000000000000000812dcbf51f5a7a000df6e7aaa8557290fd41cf4100000000000000000000000000000000000000000000003798d818f29d313564", + "to": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2855", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 8 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "call", + "gas": "0xd402c", + "input": "0x022c0d9f00000000000000000000000000000000000000000000006715f617eed3ae6dfd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000078a55b9b3bbeffb36a43d9905f654d2769dc55e800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x812dcbf51f5a7a000df6e7aaa8557290fd41cf41", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x116c5", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2, + 9 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x812dcbf51f5a7a000df6e7aaa8557290fd41cf41", + "callType": "call", + "gas": "0xce2dc", + "input": "0xa9059cbb00000000000000000000000078a55b9b3bbeffb36a43d9905f654d2769dc55e800000000000000000000000000000000000000000000006715f617eed3ae6dfd", + "to": "0x042afd3869a47e2d5d42cc787d5c9e19df32185f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x7353", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 9, + 0 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x812dcbf51f5a7a000df6e7aaa8557290fd41cf41", + "callType": "staticcall", + "gas": "0xc6a3a", + "input": "0x70a08231000000000000000000000000812dcbf51f5a7a000df6e7aaa8557290fd41cf41", + "to": "0x042afd3869a47e2d5d42cc787d5c9e19df32185f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x490", + "output": "0x00000000000000000000000000000000000000000000101c5ec9851f0ed98eb6" + }, + "subtraces": 0, + "trace_address": [ + 2, + 9, + 1 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x812dcbf51f5a7a000df6e7aaa8557290fd41cf41", + "callType": "staticcall", + "gas": "0xc5f78", + "input": "0x70a08231000000000000000000000000812dcbf51f5a7a000df6e7aaa8557290fd41cf41", + "to": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4fe", + "output": "0x0000000000000000000000000000000000000000000008e14fe60cd422eb220f" + }, + "subtraces": 0, + "trace_address": [ + 2, + 9, + 2 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "staticcall", + "gas": "0xc23d7", + "input": "0x70a0823100000000000000000000000078a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "to": "0x042afd3869a47e2d5d42cc787d5c9e19df32185f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x490", + "output": "0x00000000000000000000000000000000000000000000006715f617eed3ae6dfd" + }, + "subtraces": 0, + "trace_address": [ + 2, + 10 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "call", + "gas": "0xc11ed", + "input": "0xa9059cbb000000000000000000000000dc61511da969a32a29da5464d1bc71c546ac757800000000000000000000000000000000000000000000006715f617eed3ae6dfd", + "to": "0x042afd3869a47e2d5d42cc787d5c9e19df32185f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2853", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 11 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "call", + "gas": "0xbdaea", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a78a23378b24a5000000000000000000000000078a55b9b3bbeffb36a43d9905f654d2769dc55e800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xae1b", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2, + 12 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "callType": "call", + "gas": "0xb837b", + "input": "0xa9059cbb00000000000000000000000078a55b9b3bbeffb36a43d9905f654d2769dc55e80000000000000000000000000000000000000000000000003a78a23378b24a50", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3b3a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 12, + 0 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "callType": "staticcall", + "gas": "0xb4238", + "input": "0x70a08231000000000000000000000000dc61511da969a32a29da5464d1bc71c546ac7578", + "to": "0x042afd3869a47e2d5d42cc787d5c9e19df32185f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x490", + "output": "0x000000000000000000000000000000000000000000001e6c6df13573a4fea47d" + }, + "subtraces": 0, + "trace_address": [ + 2, + 12, + 1 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "callType": "staticcall", + "gas": "0xb3787", + "input": "0x70a08231000000000000000000000000dc61511da969a32a29da5464d1bc71c546ac7578", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000000111450e387b5991bd1" + }, + "subtraces": 0, + "trace_address": [ + 2, + 12, + 2 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "call", + "gas": "0xb27b7", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000003a78a23378b24a50", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2e77", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 2, + 13 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "value": "0x3a78a23378b24a50" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x37", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 2, + 13, + 0 + ], + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_position": 79, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe47c990171cfe8cb8c81f5f6179d8521f7b809fd", + "callType": "call", + "gas": "0x7ac60", + "input": "0xc89e4361fc90fac785b6cd79a83351ef80922bb484431e8d689c49c0000000000000000000000000000000000000000000000000388b3caedc25ed6403000f795065dcc9f64b5614c407a6efdc400da6221fb06b3595068778dd592e39a122f4f5a5cf09c90fe2000f812dcbf51f5a7a000df6e7aaa8557290fd41cf41042afd3869a47e2d5d42cc787d5c9e19df32185f000fdc61511da969a32a29da5464d1bc71c546ac7578000000000000000000000000000000000000000012", + "to": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x718a", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x2dc7eadf33ec83797b8939a890d299e5731cce755e5cbc58770d6657de1eb662", + "transaction_position": 80, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "callType": "delegatecall", + "gas": "0x782ef", + "input": "0x689c49c0000000000000000000000000000000000000000000000000388b3caedc25ed6403000f795065dcc9f64b5614c407a6efdc400da6221fb06b3595068778dd592e39a122f4f5a5cf09c90fe2000f812dcbf51f5a7a000df6e7aaa8557290fd41cf41042afd3869a47e2d5d42cc787d5c9e19df32185f000fdc61511da969a32a29da5464d1bc71c546ac7578000000000000000000000000000000000000000012", + "to": "0xfc90fac785b6cd79a83351ef80922bb484431e8d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x6687", + "output": "0x" + }, + "subtraces": 6, + "trace_address": [ + 0 + ], + "transaction_hash": "0x2dc7eadf33ec83797b8939a890d299e5731cce755e5cbc58770d6657de1eb662", + "transaction_position": 80, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "callType": "staticcall", + "gas": "0x7575a", + "input": "0x0dfe1681", + "to": "0x795065dcc9f64b5614c407a6efdc400da6221fb0", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x47d", + "output": "0x0000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe2" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x2dc7eadf33ec83797b8939a890d299e5731cce755e5cbc58770d6657de1eb662", + "transaction_position": 80, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "callType": "staticcall", + "gas": "0x74c07", + "input": "0x0902f1ac", + "to": "0x795065dcc9f64b5614c407a6efdc400da6221fb0", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c1", + "output": "0x00000000000000000000000000000000000000000014d68aceae65ec5d88ea7e0000000000000000000000000000000000000000000015091c94dab26ed907cc000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x2dc7eadf33ec83797b8939a890d299e5731cce755e5cbc58770d6657de1eb662", + "transaction_position": 80, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "callType": "staticcall", + "gas": "0x73796", + "input": "0x0dfe1681", + "to": "0x812dcbf51f5a7a000df6e7aaa8557290fd41cf41", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x47d", + "output": "0x000000000000000000000000042afd3869a47e2d5d42cc787d5c9e19df32185f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0x2dc7eadf33ec83797b8939a890d299e5731cce755e5cbc58770d6657de1eb662", + "transaction_position": 80, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "callType": "staticcall", + "gas": "0x72c44", + "input": "0x0902f1ac", + "to": "0x812dcbf51f5a7a000df6e7aaa8557290fd41cf41", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c1", + "output": "0x00000000000000000000000000000000000000000000101c5ec9851f0ed98eb60000000000000000000000000000000000000000000008e14fe60cd422eb220f000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3 + ], + "transaction_hash": "0x2dc7eadf33ec83797b8939a890d299e5731cce755e5cbc58770d6657de1eb662", + "transaction_position": 80, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "callType": "staticcall", + "gas": "0x717d3", + "input": "0x0dfe1681", + "to": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x439", + "output": "0x000000000000000000000000042afd3869a47e2d5d42cc787d5c9e19df32185f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 4 + ], + "transaction_hash": "0x2dc7eadf33ec83797b8939a890d299e5731cce755e5cbc58770d6657de1eb662", + "transaction_position": 80, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "callType": "staticcall", + "gas": "0x70cc3", + "input": "0x0902f1ac", + "to": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000001e6c6df13573a4fea47d0000000000000000000000000000000000000000000000111450e387b5991bd1000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 0, + 5 + ], + "transaction_hash": "0x2dc7eadf33ec83797b8939a890d299e5731cce755e5cbc58770d6657de1eb662", + "transaction_position": 80, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x297d4b9c02b4190ddb0274bc69155adf056d4134", + "callType": "call", + "gas": "0x67854", + "input": "0x66c68863000000000000000000000000d3d2e2692501a5c9ca623199d38826e513033a17000000000000000000000000caca690da772a098a855fdb64a3455172c2ec2b0000000000000000000000000dc61511da969a32a29da5464d1bc71c546ac757800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000001d4f54cf65a0000000000000000000000000000000000000000000000000000000000000000493e000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000015b0100000000000000000000000000000000000000000000000000000000222cc829a9304650f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f535c5874bd740100003a5974bd74010000030000000000000000000000000000000000000000000595d3342ccd90a95a1c0400000000000000000000000000000000000000000000009af183a876d6da2b410e00000000000000000000000000000000000000000000003e1251dab25a70cb600f0000000000000000000000000000000000000000000000fa7ac60f794877996e020000000000000000000000000000000000000000000000803650d1841dfb57051e0100000000000000000000000000000000000000000000920cf3f0b5fbfb8fae1e000000000000000000000000000000000000000000000021664b2ebb85c94e1101000000000000000000000000000000000000000000000020c7a4b2c49b0cef100000000000", + "to": "0x3930f8809fd21dc3ec725a92f16d5468ebf27e88", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2dbf", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [], + "transaction_hash": "0x53d60e640b902f253a8ae75e4ca77e9624d57a50d9705d6a3a746edd82f8d459", + "transaction_position": 81, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3930f8809fd21dc3ec725a92f16d5468ebf27e88", + "callType": "staticcall", + "gas": "0x65597", + "input": "0x0902f1ac", + "to": "0xd3d2e2692501a5c9ca623199d38826e513033a17", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000041c5aa990cd2c34d39505000000000000000000000000000000000000000000000e412bdad676a883f19a000000000000000000000000000000000000000000000000000000005f6be453" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x53d60e640b902f253a8ae75e4ca77e9624d57a50d9705d6a3a746edd82f8d459", + "transaction_position": 81, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3930f8809fd21dc3ec725a92f16d5468ebf27e88", + "callType": "staticcall", + "gas": "0x647a1", + "input": "0x0902f1ac", + "to": "0xcaca690da772a098a855fdb64a3455172c2ec2b0", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000000f60cb705ab2da51123e00000000000000000000000000000000000000000000026e997748790fc67afa000000000000000000000000000000000000000000000000000000005f6be446" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x53d60e640b902f253a8ae75e4ca77e9624d57a50d9705d6a3a746edd82f8d459", + "transaction_position": 81, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3930f8809fd21dc3ec725a92f16d5468ebf27e88", + "callType": "staticcall", + "gas": "0x639ab", + "input": "0x0902f1ac", + "to": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000001e6c6df13573a4fea47d0000000000000000000000000000000000000000000000111450e387b5991bd1000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x53d60e640b902f253a8ae75e4ca77e9624d57a50d9705d6a3a746edd82f8d459", + "transaction_position": 81, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88", + "callType": "call", + "gas": "0x8452", + "input": "0xa9059cbb0000000000000000000000005d623b4a7f4bbf32f3b46ee38cdda2316a83ef73000000000000000000000000000000000000000000000076215d6e8705380000", + "to": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8446", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x91f05531e66858fbc09ddc3e04cc0fc083148be397bf9220a8839b6604ddeb66", + "transaction_position": 82, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88", + "callType": "call", + "gas": "0x1d827", + "input": "0xa9059cbb000000000000000000000000577752be1c7524622c326b181a9fa84292383d4700000000000000000000000000000000000000000000004c836323f9f1d60000", + "to": "0x3f382dbd960e3a9bbceae22651e88158d2791550", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1d81b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xbefdb05a1d08b22e5821dd5b3443f0d7dec045b5f36f42c4eb8fde7318c056ae", + "transaction_position": 83, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3f382dbd960e3a9bbceae22651e88158d2791550", + "callType": "call", + "gas": "0x19cd3", + "input": "0x4a39314900000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb88000000000000000000000000577752be1c7524622c326b181a9fa84292383d4700000000000000000000000000000000000000000000004c836323f9f1d60000", + "to": "0xf0cc626f04f0149f1f4ad3746b2589d6fa198b45", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x6d11", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "trace_address": [ + 0 + ], + "transaction_hash": "0xbefdb05a1d08b22e5821dd5b3443f0d7dec045b5f36f42c4eb8fde7318c056ae", + "transaction_position": 83, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf0cc626f04f0149f1f4ad3746b2589d6fa198b45", + "callType": "call", + "gas": "0x188c0", + "input": "0xbe00bbd8f1f3eb40f5bc1ad1344716ced8b8a0431d840b5783aea1fd01786bc26f35ac0f6b20a3010614eeebf2138ccec99f028a61c811b3b1a3343b6ff635985c75c91f", + "to": "0x054086d40cf8fd5bf6200eda7f9c6877b0302dd1", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x110b", + "output": "0x000000000000000000000000de3a93028f2283cc28756b3674bd657eafb992f4" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0xbefdb05a1d08b22e5821dd5b3443f0d7dec045b5f36f42c4eb8fde7318c056ae", + "transaction_position": 83, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x054086d40cf8fd5bf6200eda7f9c6877b0302dd1", + "callType": "delegatecall", + "gas": "0x1598a", + "input": "0xbe00bbd8f1f3eb40f5bc1ad1344716ced8b8a0431d840b5783aea1fd01786bc26f35ac0f6b20a3010614eeebf2138ccec99f028a61c811b3b1a3343b6ff635985c75c91f", + "to": "0x2b33cf282f867a7ff693a66e11b0fcc5552e4425", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5f0", + "output": "0x000000000000000000000000de3a93028f2283cc28756b3674bd657eafb992f4" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0xbefdb05a1d08b22e5821dd5b3443f0d7dec045b5f36f42c4eb8fde7318c056ae", + "transaction_position": 83, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf0cc626f04f0149f1f4ad3746b2589d6fa198b45", + "callType": "delegatecall", + "gas": "0x15278", + "input": "0x4a39314900000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb88000000000000000000000000577752be1c7524622c326b181a9fa84292383d4700000000000000000000000000000000000000000000004c836323f9f1d60000", + "to": "0xde3a93028f2283cc28756b3674bd657eafb992f4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x46d1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0xbefdb05a1d08b22e5821dd5b3443f0d7dec045b5f36f42c4eb8fde7318c056ae", + "transaction_position": 83, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf0cc626f04f0149f1f4ad3746b2589d6fa198b45", + "callType": "call", + "gas": "0x13c04", + "input": "0x70a08231000000000000000000000000577752be1c7524622c326b181a9fa84292383d47", + "to": "0x3f382dbd960e3a9bbceae22651e88158d2791550", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8af", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0 + ], + "transaction_hash": "0xbefdb05a1d08b22e5821dd5b3443f0d7dec045b5f36f42c4eb8fde7318c056ae", + "transaction_position": 83, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf0cc626f04f0149f1f4ad3746b2589d6fa198b45", + "callType": "call", + "gas": "0x12917", + "input": "0x70a0823100000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb88", + "to": "0x3f382dbd960e3a9bbceae22651e88158d2791550", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1dc0", + "output": "0x000000000000000000000000000000000000000000007072c2f641b7e0f386be" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1 + ], + "transaction_hash": "0xbefdb05a1d08b22e5821dd5b3443f0d7dec045b5f36f42c4eb8fde7318c056ae", + "transaction_position": 83, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc4a92358757ef8d22580c5efed30d5241ac725ae", + "callType": "call", + "gas": "0x74878", + "input": "0x4ab0d1907da38e6ee3263d47747f4a781fd09c4f1af1967f4cf8f0339a34cf49108da6c7000000000000000000000000000000000000000000000000089aaeb710be00000000000000000000000000001eeaf25f2ecbcaf204ecadc8db7b0db9da8453276a9705b400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005f6be57f0000000000000000000000000000000000000000000000000004eeadc47b2400", + "to": "0x7a9d706b2a3b54f7cf3b5f2fcf94c5e2b3d7b24b", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x12d2a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x4f731d24bdf636c53e307a27a64e876de83391b20b99ec07123f816d2df98235", + "transaction_position": 84, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a9d706b2a3b54f7cf3b5f2fcf94c5e2b3d7b24b", + "callType": "call", + "gas": "0x6eee5", + "input": "0x6a9705b47da38e6ee3263d47747f4a781fd09c4f1af1967f4cf8f0339a34cf49108da6c70000000000000000000000000000000000000000000000000004eeadc47b2400", + "to": "0x1eeaf25f2ecbcaf204ecadc8db7b0db9da845327", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xef6c", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x4f731d24bdf636c53e307a27a64e876de83391b20b99ec07123f816d2df98235", + "transaction_position": 84, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc8f53fae35468100df31901e939d8ff80b667166", + "callType": "call", + "gas": "0x74878", + "input": "0x4ab0d19034aeb39dfd8e82b6343a1c1e08896f8aa3c9511c5b326c6416c8614470017d6d000000000000000000000000000000000000000000000000089aaeb710be00000000000000000000000000001eeaf25f2ecbcaf204ecadc8db7b0db9da8453276a9705b400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005f6be57f0000000000000000000000000000000000000000000000000004f69068c05000", + "to": "0x8cfb1d4269f0daa003cdea567ac8f76c0647764a", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf292", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x783315cee057dda5d23a5e95d318dfbb207d0e04253d39cc047d59d5d9a65daa", + "transaction_position": 85, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8cfb1d4269f0daa003cdea567ac8f76c0647764a", + "callType": "call", + "gas": "0x6eee5", + "input": "0x6a9705b434aeb39dfd8e82b6343a1c1e08896f8aa3c9511c5b326c6416c8614470017d6d0000000000000000000000000000000000000000000000000004f69068c05000", + "to": "0x1eeaf25f2ecbcaf204ecadc8db7b0db9da845327", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xb4d4", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x783315cee057dda5d23a5e95d318dfbb207d0e04253d39cc047d59d5d9a65daa", + "transaction_position": 85, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd45727e3d7405c6ab3b2b3a57474012e1f998483", + "callType": "call", + "gas": "0x74878", + "input": "0x4ab0d190ce1b7dc35e3c49c41bcb3ff4f5e239cfadf8a0d45b415f994bd2e29e45de6323000000000000000000000000000000000000000000000000089aaeb710be00000000000000000000000000001eeaf25f2ecbcaf204ecadc8db7b0db9da8453276a9705b400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005f6be57f0000000000000000000000000000000000000000000000000004ea93b3887800", + "to": "0x4565300c576431e5228e8aa32642d5739cf9247d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf59e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x066907b818782b2ab57aa9330d01a9932786ed587862045ee4b7cf437cbe39b4", + "transaction_position": 86, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x4565300c576431e5228e8aa32642d5739cf9247d", + "callType": "call", + "gas": "0x6ebee", + "input": "0x6a9705b4ce1b7dc35e3c49c41bcb3ff4f5e239cfadf8a0d45b415f994bd2e29e45de63230000000000000000000000000000000000000000000000000004ea93b3887800", + "to": "0x1eeaf25f2ecbcaf204ecadc8db7b0db9da845327", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xb4d4", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x066907b818782b2ab57aa9330d01a9932786ed587862045ee4b7cf437cbe39b4", + "transaction_position": 86, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d0da42f1f1658db74c0650bbd587f0c6d279afd", + "callType": "call", + "gas": "0x74878", + "input": "0x4ab0d19043168994633bd400a3a1b8a84bb195508690881a8c8d4a3ee6309b2198bbccba000000000000000000000000000000000000000000000000089aaeb710be00000000000000000000000000001eeaf25f2ecbcaf204ecadc8db7b0db9da8453276a9705b400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005f6be57f0000000000000000000000000000000000000000000000000004ee7bb9645cb5", + "to": "0x180486507e7e20490fc0228efd182989e0bd61cc", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf292", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x3f8dde500a4355c128bf499c654b0e05fe03b5fff93b08c1ada0dac40e1fb37e", + "transaction_position": 87, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x180486507e7e20490fc0228efd182989e0bd61cc", + "callType": "call", + "gas": "0x6eee5", + "input": "0x6a9705b443168994633bd400a3a1b8a84bb195508690881a8c8d4a3ee6309b2198bbccba0000000000000000000000000000000000000000000000000004ee7bb9645cb5", + "to": "0x1eeaf25f2ecbcaf204ecadc8db7b0db9da845327", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xb4d4", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x3f8dde500a4355c128bf499c654b0e05fe03b5fff93b08c1ada0dac40e1fb37e", + "transaction_position": 87, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0eb2177f9bff55a8df857f08b73724d52a7d92ba", + "callType": "call", + "gas": "0x74878", + "input": "0x4ab0d190df2492ef3f134f877206476acaa7ab72b1209a6f3cde831575fcc49e252ae8ba000000000000000000000000000000000000000000000000089aaeb710be00000000000000000000000000001eeaf25f2ecbcaf204ecadc8db7b0db9da8453276a9705b400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005f6be57f0000000000000000000000000000000000000000000000000004f69068c05000", + "to": "0x64fd0abd4d8f5a0a7502c0078d959e57ca1207ab", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf292", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x8ead25d41f782a691fdc4b75469ddb88ae6b0f4c1f014ba8f15b6cfa745cb180", + "transaction_position": 88, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x64fd0abd4d8f5a0a7502c0078d959e57ca1207ab", + "callType": "call", + "gas": "0x6eee5", + "input": "0x6a9705b4df2492ef3f134f877206476acaa7ab72b1209a6f3cde831575fcc49e252ae8ba0000000000000000000000000000000000000000000000000004f69068c05000", + "to": "0x1eeaf25f2ecbcaf204ecadc8db7b0db9da845327", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xb4d4", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x8ead25d41f782a691fdc4b75469ddb88ae6b0f4c1f014ba8f15b6cfa745cb180", + "transaction_position": 88, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0699a397c3cf614c9a7db23a4be28fc4c8f3a755", + "callType": "call", + "gas": "0x74878", + "input": "0x4ab0d190725f0391625a81a53c39e14b597cfdbd6f778cc486327c2175ea954653ce4ee9000000000000000000000000000000000000000000000000089aaeb710be00000000000000000000000000001eeaf25f2ecbcaf204ecadc8db7b0db9da8453276a9705b400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005f6be57f00000000000000000000000000000000000000000000000000050763c6adf800", + "to": "0xf5a3d443fccd7ee567000e43b23b0e98d96445ce", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x238c8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x2697f8f97b7a8fa856a931aaf8b4d4b1ea2340873705f6602274452609fee3fe", + "transaction_position": 89, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf5a3d443fccd7ee567000e43b23b0e98d96445ce", + "callType": "call", + "gas": "0x6eee5", + "input": "0x6a9705b4725f0391625a81a53c39e14b597cfdbd6f778cc486327c2175ea954653ce4ee900000000000000000000000000000000000000000000000000050763c6adf800", + "to": "0x1eeaf25f2ecbcaf204ecadc8db7b0db9da845327", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1fb0a", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x2697f8f97b7a8fa856a931aaf8b4d4b1ea2340873705f6602274452609fee3fe", + "transaction_position": 89, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc0ec046bb414521dc038414df7e2cf7b123e23a9", + "callType": "call", + "gas": "0x1b1b10", + "input": "0xbeafc48e000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000003fbacc0700000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000398ec7346dcd622edc5ae82352f02be94c62d1190000000000000000000000001eeaf25f2ecbcaf204ecadc8db7b0db9da8453270000000000000000000000000000000000000000000000000000000000000d25", + "to": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x171fb8", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "delegatecall", + "gas": "0x1aa400", + "input": "0xbeafc48e000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000003fbacc0700000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000398ec7346dcd622edc5ae82352f02be94c62d1190000000000000000000000001eeaf25f2ecbcaf204ecadc8db7b0db9da8453270000000000000000000000000000000000000000000000000000000000000d25", + "to": "0x4a74ba1dc9ae0f132ed751fcbeafaa960fd724dd", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x13abc8", + "output": "0x" + }, + "subtraces": 8, + "trace_address": [ + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "staticcall", + "gas": "0x1a2f41", + "input": "0xb5ab58dc0000000000000000000000000000000000000000000000000000000000000d25", + "to": "0x1eeaf25f2ecbcaf204ecadc8db7b0db9da845327", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5a9", + "output": "0x0000000000000000000000000000000000000000000000000004f29f169dba00" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "staticcall", + "gas": "0x1a180e", + "input": "0xe6a43905000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4f0", + "output": "0x0000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "staticcall", + "gas": "0x1a0a7a", + "input": "0xe6a4390500000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4f0", + "output": "0x000000000000000000000000ab3f9bf1d81ddb224a2014e98b238638824bcf20" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "staticcall", + "gas": "0x19e3b0", + "input": "0x70a082310000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x97f", + "output": "0x0000000000000000000000000000000000000000000000000000ac8aa502df50" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "staticcall", + "gas": "0x19d25a", + "input": "0x70a082310000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000007e429d2d051dd0658675" + }, + "subtraces": 0, + "trace_address": [ + 0, + 4 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "staticcall", + "gas": "0x19c62b", + "input": "0x0dfe1681", + "to": "0xab3f9bf1d81ddb224a2014e98b238638824bcf20", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x439", + "output": "0x00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03" + }, + "subtraces": 0, + "trace_address": [ + 0, + 5 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "staticcall", + "gas": "0x19bac6", + "input": "0xd21220a7", + "to": "0xab3f9bf1d81ddb224a2014e98b238638824bcf20", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x421", + "output": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + "subtraces": 0, + "trace_address": [ + 0, + 6 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "call", + "gas": "0x199dc5", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002ec69e725c7a5b0f000000000000000000000000f2d9e54f0e317b8ac94825b2543908e7552fe9c7000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000003fbacc0700000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f18520000000000000000000000000000000000000000000000002ec69e725c7a5b0f00000000000000000000000000000000000000000000000000000000000000600000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000398ec7346dcd622edc5ae82352f02be94c62d119", + "to": "0xab3f9bf1d81ddb224a2014e98b238638824bcf20", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x130d16", + "output": "0x" + }, + "subtraces": 4, + "trace_address": [ + 0, + 7 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xab3f9bf1d81ddb224a2014e98b238638824bcf20", + "callType": "call", + "gas": "0x190f4b", + "input": "0xa9059cbb000000000000000000000000f2d9e54f0e317b8ac94825b2543908e7552fe9c70000000000000000000000000000000000000000000000002ec69e725c7a5b0f", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x75d2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xab3f9bf1d81ddb224a2014e98b238638824bcf20", + "callType": "call", + "gas": "0x18933d", + "input": "0x10d1e85c000000000000000000000000f2d9e54f0e317b8ac94825b2543908e7552fe9c700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002ec69e725c7a5b0f000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000003fbacc0700000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f18520000000000000000000000000000000000000000000000002ec69e725c7a5b0f00000000000000000000000000000000000000000000000000000000000000600000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000398ec7346dcd622edc5ae82352f02be94c62d119", + "to": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x11ecf3", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "delegatecall", + "gas": "0x18261b", + "input": "0x10d1e85c000000000000000000000000f2d9e54f0e317b8ac94825b2543908e7552fe9c700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002ec69e725c7a5b0f000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000003fbacc0700000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f18520000000000000000000000000000000000000000000000002ec69e725c7a5b0f00000000000000000000000000000000000000000000000000000000000000600000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000398ec7346dcd622edc5ae82352f02be94c62d119", + "to": "0x4a74ba1dc9ae0f132ed751fcbeafaa960fd724dd", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x11e183", + "output": "0x" + }, + "subtraces": 10, + "trace_address": [ + 0, + 7, + 1, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "staticcall", + "gas": "0x17ad2b", + "input": "0x0dfe1681", + "to": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x439", + "output": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "staticcall", + "gas": "0x17a1c6", + "input": "0xd21220a7", + "to": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x421", + "output": "0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 1 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "call", + "gas": "0x1794e5", + "input": "0xa9059cbb0000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f18520000000000000000000000000000000000000000000000002ec69e725c7a5b0f", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 2 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "call", + "gas": "0x176035", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003fbacc07000000000000000000000000f2d9e54f0e317b8ac94825b2543908e7552fe9c700000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x12d6a", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 0, + 7, + 1, + 0, + 3 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "callType": "call", + "gas": "0x16dab1", + "input": "0xa9059cbb000000000000000000000000f2d9e54f0e317b8ac94825b2543908e7552fe9c7000000000000000000000000000000000000000000000000000000003fbacc07", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 3, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "callType": "staticcall", + "gas": "0x164f25", + "input": "0x70a082310000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000007e42cbf3a3902cdfe184" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 3, + 1 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "callType": "staticcall", + "gas": "0x164434", + "input": "0x70a082310000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x97f", + "output": "0x0000000000000000000000000000000000000000000000000000ac8a65481349" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 3, + 2 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "staticcall", + "gas": "0x162d94", + "input": "0x70a08231000000000000000000000000ab3f9bf1d81ddb224a2014e98b238638824bcf20", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000001457033f61b0707a7cc" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 4 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "staticcall", + "gas": "0x162106", + "input": "0x70a08231000000000000000000000000ab3f9bf1d81ddb224a2014e98b238638824bcf20", + "to": "0x80fb784b7ed66730e8b1dbd9820afd29931aab03", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5dd", + "output": "0x0000000000000000000000000000000000000000000394a8976f6bcb3ab7ad6a" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 5 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "call", + "gas": "0x160d21", + "input": "0x00a718a900000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c000000000000000000000000000000000000000000000000000000003fbacc070000000000000000000000000000000000000000000000000000000000000000", + "to": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf9233", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "delegatecall", + "gas": "0x15aa94", + "input": "0x00a718a900000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c000000000000000000000000000000000000000000000000000000003fbacc070000000000000000000000000000000000000000000000000000000000000000", + "to": "0x6d252baea75459ed0077410613c5f6e51cab4750", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf878a", + "output": "0x" + }, + "subtraces": 4, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0x153346", + "input": "0x05075d6e000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf76", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x14d435", + "input": "0x05075d6e000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4df", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0x151a83", + "input": "0x05075d6e00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf76", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 1 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x14bbd5", + "input": "0x05075d6e00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4df", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 1, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0x1501ed", + "input": "0x5834eb9a", + "to": "0x24a42fd28c976a61df5d00d0599c34c4f90748c8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4ea", + "output": "0x00000000000000000000000031cceeb1fa3dbeaf7baad25125b972a17624a40a" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 2 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "delegatecall", + "gas": "0x14f685", + "input": "0x00a718a900000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c000000000000000000000000000000000000000000000000000000003fbacc070000000000000000000000000000000000000000000000000000000000000000", + "to": "0x31cceeb1fa3dbeaf7baad25125b972a17624a40a", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf2265", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000094e6f206572726f72730000000000000000000000000000000000000000000000" + }, + "subtraces": 18, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0x14974c", + "input": "0x2c6d0e9b0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8936c", + "output": "0x0000000000000000000000000000000000000000000000019c78b65b79a710f00000000000000000000000000000000000000000000000019c78b65b79a710f000000000000000000000000000000000000000000000000111b2ae29aa9309660000000000000000000000000000000000000000000000000012f9fd9b52cb1c000000000000000000000000000000000000000000000000000000000000003300000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000000000000000dccb7bef5c0a3c50000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "delegatecall", + "gas": "0x143aab", + "input": "0x2c6d0e9b0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x60853118431dafba53d4d8fcc9bd3d17279b61fe", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x888b1", + "output": "0x0000000000000000000000000000000000000000000000019c78b65b79a710f00000000000000000000000000000000000000000000000019c78b65b79a710f000000000000000000000000000000000000000000000000111b2ae29aa9309660000000000000000000000000000000000000000000000000012f9fd9b52cb1c000000000000000000000000000000000000000000000000000000000000003300000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000000000000000dccb7bef5c0a3c50000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 38, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x13dfa2", + "input": "0xfca513a8", + "to": "0x24a42fd28c976a61df5d00d0599c34c4f90748c8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4e9", + "output": "0x00000000000000000000000076b47460d7f7c5222cfb6b6a75615ab10895dde4" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x13d074", + "input": "0x0902f1ac", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5d6d", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000140000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000085d4780b73119b644ae5ecd22b376000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000057ab1ec28d129707052df4df418d58a2d46d5f5100000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd2000000000000000000000000001985365e9f78359a9b6ad760e32412f4a445e8620000000000000000000000009f8f72aa9304c8b593d555f12ef6589cc3a579a20000000000000000000000000f5d2fb29fb7d3cfee444a200298f468908cc942000000000000000000000000e41d2489571d322189246dafa5ebde1f4699f498000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000004fabb145d64652a948d72533023f6e7a623c7c53000000000000000000000000f629cbd94d3791c9250152bd8dfbdf380e2a3b9c000000000000000000000000408e41876cccdc0f92210600ef50372656052a380000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 1 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x1376f1", + "input": "0x0902f1ac", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5261", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000140000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000085d4780b73119b644ae5ecd22b376000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000057ab1ec28d129707052df4df418d58a2d46d5f5100000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd2000000000000000000000000001985365e9f78359a9b6ad760e32412f4a445e8620000000000000000000000009f8f72aa9304c8b593d555f12ef6589cc3a579a20000000000000000000000000f5d2fb29fb7d3cfee444a200298f468908cc942000000000000000000000000e41d2489571d322189246dafa5ebde1f4699f498000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000004fabb145d64652a948d72533023f6e7a623c7c53000000000000000000000000f629cbd94d3791c9250152bd8dfbdf380e2a3b9c000000000000000000000000408e41876cccdc0f92210600ef50372656052a380000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x1362d7", + "input": "0xe10076ad0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8e47", + "output": "0x00000000000000000000000000000000000000000000000000001087ae627c7900000000000000000000000000000000000000000000004a09b3e17c7cfb7a6c0000000000000000000000000000000000000000000000000ffaa84c67cc9fb90000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 2 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x130ae5", + "input": "0xe10076ad0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8381", + "output": "0x00000000000000000000000000000000000000000000000000001087ae627c7900000000000000000000000000000000000000000000004a09b3e17c7cfb7a6c0000000000000000000000000000000000000000000000000ffaa84c67cc9fb90000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 2, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0x12b302", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0xfc1e690f61efd961294b3e1ce3313fbd8aa4f85d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3e7c", + "output": "0x00000000000000000000000000000000000000000000000000001087ae627c79" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 2, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xfc1e690f61efd961294b3e1ce3313fbd8aa4f85d", + "callType": "staticcall", + "gas": "0x124c74", + "input": "0xd15e00530000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1cf4", + "output": "0x0000000000000000000000000000000000000000036bf36af68e01091e390e26" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 2, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x11f8df", + "input": "0xd15e00530000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x123d", + "output": "0x0000000000000000000000000000000000000000036bf36af68e01091e390e26" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 2, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x12ccd2", + "input": "0x5fc526ff0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1966", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000004b00000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 3 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x12775b", + "input": "0x5fc526ff0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xec3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000004b00000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 3, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x12acc5", + "input": "0xb3596f070000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1346", + "output": "0x000000000000000000000000000000000000000000000000000b465f54a8c000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 4 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "callType": "staticcall", + "gas": "0x125747", + "input": "0x50d25bcd", + "to": "0x037e8f2125bf532f3e228991e051c8a7253b642c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x79a", + "output": "0x000000000000000000000000000000000000000000000000000b465f54a8c000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 4, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x128850", + "input": "0xe10076ad0000000000000000000000000000000000085d4780b73119b644ae5ecd22b3760000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x96da", + "output": "0x000000000000000000000000000000000000000000000012faa3dfa7e3b1cf290000000000000000000000000000000000000000000000960300a5624e0d1e48000000000000000000000000000000000000000000000000077c094ffd9e36380000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 5 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x1233c9", + "input": "0xe10076ad0000000000000000000000000000000000085d4780b73119b644ae5ecd22b3760000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8c14", + "output": "0x000000000000000000000000000000000000000000000012faa3dfa7e3b1cf290000000000000000000000000000000000000000000000960300a5624e0d1e48000000000000000000000000000000000000000000000000077c094ffd9e36380000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 5, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0x11df42", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x4da9b813057d04baef4e5800e36083717b4a0341", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3e7c", + "output": "0x000000000000000000000000000000000000000000000012faa3dfa7e3b1cf29" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 5, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x4da9b813057d04baef4e5800e36083717b4a0341", + "callType": "staticcall", + "gas": "0x117c03", + "input": "0xd15e00530000000000000000000000000000000000085d4780b73119b644ae5ecd22b376", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1cf4", + "output": "0x0000000000000000000000000000000000000000034a952342d95942cd9f7963" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 5, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x112bb0", + "input": "0xd15e00530000000000000000000000000000000000085d4780b73119b644ae5ecd22b376", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x123d", + "output": "0x0000000000000000000000000000000000000000034a952342d95942cd9f7963" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 5, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x11e9da", + "input": "0x5fc526ff0000000000000000000000000000000000085d4780b73119b644ae5ecd22b376", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1966", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 6 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x1197ef", + "input": "0x5fc526ff0000000000000000000000000000000000085d4780b73119b644ae5ecd22b376", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xec3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 6, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x11c9cd", + "input": "0xb3596f070000000000000000000000000000000000085d4780b73119b644ae5ecd22b376", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1346", + "output": "0x000000000000000000000000000000000000000000000000000b1d664f697c00" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 7 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "callType": "staticcall", + "gas": "0x1177db", + "input": "0x50d25bcd", + "to": "0x73ead35fd6a572ef763b13be65a9db96f7643577", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x79a", + "output": "0x000000000000000000000000000000000000000000000000000b1d664f697c00" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 7, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x11a558", + "input": "0xe10076ad000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 8 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x11545c", + "input": "0xe10076ad000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 8, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0x110353", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x9ba00d6856a4edf4665bca2c2309936572473b7e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 8, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x1173f6", + "input": "0xe10076ad000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x58b1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007f75983000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 9 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x1123c0", + "input": "0xe10076ad000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4deb", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007f75983000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 9, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0x10d379", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x71fc860f7d3a592a4a98740e39db31d25db65ae8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 9, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x1112a0", + "input": "0x5fc526ff000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1966", + "output": "0x0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000460000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 10 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x10c412", + "input": "0x5fc526ff000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xec3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000460000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 10, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x10f293", + "input": "0xb3596f07000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1346", + "output": "0x000000000000000000000000000000000000000000000000000b2e74cae2a16c" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 11 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "callType": "staticcall", + "gas": "0x10a3fe", + "input": "0x50d25bcd", + "to": "0xa874fe207df445ff19e7482c746c4d3fd0cb9ace", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x79a", + "output": "0x000000000000000000000000000000000000000000000000000b2e74cae2a16c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 11, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x10d23f", + "input": "0xe10076ad00000000000000000000000057ab1ec28d129707052df4df418d58a2d46d5f510000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 12 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x108490", + "input": "0xe10076ad00000000000000000000000057ab1ec28d129707052df4df418d58a2d46d5f510000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 12, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0x1036c6", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x625ae63000f46200499120b906716420bd059240", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 12, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x10a0dd", + "input": "0xe10076ad00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5cbf", + "output": "0x000000000000000000000000000000000000000000000303f0969a7f48bf5516000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 13 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x1053f3", + "input": "0xe10076ad00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x51f9", + "output": "0x000000000000000000000000000000000000000000000303f0969a7f48bf5516000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 13, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0x1006eb", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x7d2d3688df45ce7c552e19c27e007673da9204b8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3e7c", + "output": "0x000000000000000000000000000000000000000000000303f0969a7f48bf5516" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 13, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7d2d3688df45ce7c552e19c27e007673da9204b8", + "callType": "staticcall", + "gas": "0xfab0e", + "input": "0xd15e005300000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1cf4", + "output": "0x0000000000000000000000000000000000000000033b376ab56cec1119346567" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 13, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xf61fe", + "input": "0xd15e005300000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x123d", + "output": "0x0000000000000000000000000000000000000000033b376ab56cec1119346567" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 13, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x103b99", + "input": "0x5fc526ff00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1966", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000410000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 14 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xff067", + "input": "0x5fc526ff00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xec3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000410000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 14, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0x101b8c", + "input": "0xb3596f0700000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1346", + "output": "0x0000000000000000000000000000000000000000000000000004f29f169dba00" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 15 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "callType": "staticcall", + "gas": "0xfd053", + "input": "0x50d25bcd", + "to": "0x1eeaf25f2ecbcaf204ecadc8db7b0db9da845327", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x79a", + "output": "0x0000000000000000000000000000000000000000000000000004f29f169dba00" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 15, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xff9ee", + "input": "0xe10076ad0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 16 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xfafa0", + "input": "0xe10076ad0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 16, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xf652a", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 16, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xfc88c", + "input": "0xe10076ad000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5cbf", + "output": "0x0000000000000000000000000000000000000000000000003baf8ba6863bffce000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 17 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xf7f04", + "input": "0xe10076ad000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x51f9", + "output": "0x0000000000000000000000000000000000000000000000003baf8ba6863bffce000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 17, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xf3550", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3a3a65aab0dd2a17e3f1947ba16138cd37d08c04", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3e7c", + "output": "0x0000000000000000000000000000000000000000000000003baf8ba6863bffce" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 17, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3a3a65aab0dd2a17e3f1947ba16138cd37d08c04", + "callType": "staticcall", + "gas": "0xedcb9", + "input": "0xd15e0053000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1cf4", + "output": "0x0000000000000000000000000000000000000000033df9707e320babf49f4309" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 17, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xe96e3", + "input": "0xd15e0053000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x123d", + "output": "0x0000000000000000000000000000000000000000033df9707e320babf49f4309" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 17, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xf6348", + "input": "0x5fc526ff000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1966", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000004b00000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 18 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xf1b77", + "input": "0x5fc526ff000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xec3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000004b00000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 18, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xf433b", + "input": "0xb3596f07000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x53a", + "output": "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 19 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xf2f71", + "input": "0xe10076ad000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5cbf", + "output": "0x000000000000000000000000000000000000000000000000b2d588cc41507b3d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 20 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xee84d", + "input": "0xe10076ad000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x51f9", + "output": "0x000000000000000000000000000000000000000000000000b2d588cc41507b3d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 20, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xea0f4", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0xa64bd6c70cb9051f6a9ba1f163fdc07e0dfb5f84", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3e7c", + "output": "0x000000000000000000000000000000000000000000000000b2d588cc41507b3d" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 20, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa64bd6c70cb9051f6a9ba1f163fdc07e0dfb5f84", + "callType": "staticcall", + "gas": "0xe4aae", + "input": "0xd15e0053000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1cf4", + "output": "0x0000000000000000000000000000000000000000033be4f9e07bac78e791bf30" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 20, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xe0720", + "input": "0xd15e0053000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x123d", + "output": "0x0000000000000000000000000000000000000000033be4f9e07bac78e791bf30" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 20, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xeca2d", + "input": "0x5fc526ff000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1966", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000004100000000000000000000000000000000000000000000000000000000000000460000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 21 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xe84c1", + "input": "0x5fc526ff000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xec3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000004100000000000000000000000000000000000000000000000000000000000000460000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 21, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xeaa21", + "input": "0xb3596f07000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1346", + "output": "0x0000000000000000000000000000000000000000000000000053fc746a7d8000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 22 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "callType": "staticcall", + "gas": "0xe64ae", + "input": "0x50d25bcd", + "to": "0xecfa53a8bda4f0c4dd39c55cc8def3757acfdd07", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x79a", + "output": "0x0000000000000000000000000000000000000000000000000053fc746a7d8000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 22, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xe8882", + "input": "0xe10076ad000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd2000000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5cbf", + "output": "0x00000000000000000000000000000000000000000000003527f2e4a0367ebae7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 23 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xe43fa", + "input": "0xe10076ad000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd2000000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x51f9", + "output": "0x00000000000000000000000000000000000000000000003527f2e4a0367ebae7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 23, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xdff32", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x9d91be44c06d373a8a226e1f3b146956083803eb", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3e7c", + "output": "0x00000000000000000000000000000000000000000000003527f2e4a0367ebae7" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 23, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x9d91be44c06d373a8a226e1f3b146956083803eb", + "callType": "staticcall", + "gas": "0xdab74", + "input": "0xd15e0053000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd200", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1cf4", + "output": "0x0000000000000000000000000000000000000000034eb0cf2513c1c8b51ef8d3" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 23, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xd6a63", + "input": "0xd15e0053000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd200", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x123d", + "output": "0x0000000000000000000000000000000000000000034eb0cf2513c1c8b51ef8d3" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 23, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xe233f", + "input": "0x5fc526ff000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd200", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1966", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000003c00000000000000000000000000000000000000000000000000000000000000410000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 24 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xde06e", + "input": "0x5fc526ff000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd200", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xec3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000003c00000000000000000000000000000000000000000000000000000000000000410000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 24, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xe0332", + "input": "0xb3596f07000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd200", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1346", + "output": "0x00000000000000000000000000000000000000000000000000098445c6019c00" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 25 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "callType": "staticcall", + "gas": "0xdc05b", + "input": "0x50d25bcd", + "to": "0xd0e785973390ff8e77a83961efdb4f271e6b8152", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x79a", + "output": "0x00000000000000000000000000000000000000000000000000098445c6019c00" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 25, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xde194", + "input": "0xe10076ad0000000000000000000000001985365e9f78359a9b6ad760e32412f4a445e8620000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 26 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xd9fa7", + "input": "0xe10076ad0000000000000000000000001985365e9f78359a9b6ad760e32412f4a445e8620000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 26, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xd5d71", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x71010a9d003445ac60c4e6a7017c1e89a477b438", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 26, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xdb031", + "input": "0xe10076ad0000000000000000000000009f8f72aa9304c8b593d555f12ef6589cc3a579a20000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 27 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xd6f0a", + "input": "0xe10076ad0000000000000000000000009f8f72aa9304c8b593d555f12ef6589cc3a579a20000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 27, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xd2d96", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x7deb5e830be29f91e298ba5ff1356bb7f8146998", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 27, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xd7ecf", + "input": "0xe10076ad0000000000000000000000000f5d2fb29fb7d3cfee444a200298f468908cc9420000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 28 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xd3e6e", + "input": "0xe10076ad0000000000000000000000000f5d2fb29fb7d3cfee444a200298f468908cc9420000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 28, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xcfdbc", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x6fce4a401b6b80ace52baaefe4421bd188e76f6f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 28, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xd4d6d", + "input": "0xe10076ad000000000000000000000000e41d2489571d322189246dafa5ebde1f4699f4980000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 29 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xd0dd1", + "input": "0xe10076ad000000000000000000000000e41d2489571d322189246dafa5ebde1f4699f4980000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 29, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xccde2", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x6fb0855c404e09c47c3fbca25f08d4e41f9f062f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 29, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xd1c0a", + "input": "0xe10076ad000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5cbf", + "output": "0x0000000000000000000000000000000000000000000000074135d1a1a340d7be000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 30 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xcdd34", + "input": "0xe10076ad000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x51f9", + "output": "0x0000000000000000000000000000000000000000000000074135d1a1a340d7be000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 30, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xc9e07", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x328c4c80bc7aca0834db37e6600a6c49e12da4de", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3e7c", + "output": "0x0000000000000000000000000000000000000000000000074135d1a1a340d7be" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 30, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x328c4c80bc7aca0834db37e6600a6c49e12da4de", + "callType": "staticcall", + "gas": "0xc4fcd", + "input": "0xd15e0053000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1cf4", + "output": "0x0000000000000000000000000000000000000000037ae3995dedd5dde4c282a4" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 30, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xc142b", + "input": "0xd15e0053000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x123d", + "output": "0x0000000000000000000000000000000000000000037ae3995dedd5dde4c282a4" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 30, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xcb6c7", + "input": "0x5fc526ff000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1966", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 31 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xc79a8", + "input": "0x5fc526ff000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xec3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 31, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xc96ba", + "input": "0xb3596f07000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1346", + "output": "0x00000000000000000000000000000000000000000000000000297ee5eafa0000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 32 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "callType": "staticcall", + "gas": "0xc5994", + "input": "0x50d25bcd", + "to": "0xe23d1142de4e83c08bb048bcab54d50907390828", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x79a", + "output": "0x00000000000000000000000000000000000000000000000000297ee5eafa0000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 32, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xc751c", + "input": "0xe10076ad0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 33 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xc38e1", + "input": "0xe10076ad0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 33, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xbfc46", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0xfc4b8ed459e00e5400be803a9bb3954234fd50e3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 33, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xc43b9", + "input": "0xe10076ad0000000000000000000000004fabb145d64652a948d72533023f6e7a623c7c530000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 34 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xc0844", + "input": "0xe10076ad0000000000000000000000004fabb145d64652a948d72533023f6e7a623c7c530000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 34, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xbcc6b", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x6ee0f7bb50a54ab5253da0667b0dc2ee526c30a8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 34, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xc1257", + "input": "0xe10076ad000000000000000000000000f629cbd94d3791c9250152bd8dfbdf380e2a3b9c0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 35 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xbd7a7", + "input": "0xe10076ad000000000000000000000000f629cbd94d3791c9250152bd8dfbdf380e2a3b9c0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 35, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xb9c91", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x712db54daa836b53ef1ecbb9c6ba3b9efb073f40", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 35, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xbe0f5", + "input": "0xe10076ad000000000000000000000000408e41876cccdc0f92210600ef50372656052a380000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 36 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xba70b", + "input": "0xe10076ad000000000000000000000000408e41876cccdc0f92210600ef50372656052a380000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 36, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xb6cb7", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x69948cc03f478b95283f7dbf1ce764d0fc7ec54c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 36, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "callType": "staticcall", + "gas": "0xbaf92", + "input": "0xe10076ad0000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 37 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xb766d", + "input": "0xe10076ad0000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e0000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 37, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xb3cdb", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x12e51e77daaa58aa0e9247db7510ea4b46f9bead", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 0, + 0, + 37, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0xc1c90", + "input": "0x18a4dbca00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5455", + "output": "0x000000000000000000000000000000000000000000000303f0969a7f48bf5516" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 1 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xbe1d7", + "input": "0x18a4dbca00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x49bb", + "output": "0x000000000000000000000000000000000000000000000303f0969a7f48bf5516" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 1, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xba7c7", + "input": "0x70a082310000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x7d2d3688df45ce7c552e19c27e007673da9204b8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3e7c", + "output": "0x000000000000000000000000000000000000000000000303f0969a7f48bf5516" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 1, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7d2d3688df45ce7c552e19c27e007673da9204b8", + "callType": "staticcall", + "gas": "0xb5d66", + "input": "0xd15e005300000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1cf4", + "output": "0x0000000000000000000000000000000000000000033b376ab56cec1119346567" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 1, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xb258d", + "input": "0xd15e005300000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x123d", + "output": "0x0000000000000000000000000000000000000000033b376ab56cec1119346567" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 1, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0xbc019", + "input": "0x18f9bbae00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf8b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 2 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xb86d5", + "input": "0x18f9bbae00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4f4", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 2, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0xba746", + "input": "0x9e3c4f3b00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1031", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 3 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xb6e43", + "input": "0x9e3c4f3b00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x577", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 3, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0xb8dbe", + "input": "0x9fb8afcd000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x432a", + "output": "0x000000000000000000000000000000000000000000000000000000007f40d297000000000000000000000000000000000000000000000000000000007f759830000000000000000000000000000000000000000000000000000000000034c599" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 4 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xb5521", + "input": "0x9fb8afcd000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x386a", + "output": "0x000000000000000000000000000000000000000000000000000000007f40d297000000000000000000000000000000000000000000000000000000007f759830000000000000000000000000000000000000000000000000000000000034c599" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 4, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0xb4087", + "input": "0xfca513a8", + "to": "0x24a42fd28c976a61df5d00d0599c34c4f90748c8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4e9", + "output": "0x00000000000000000000000076b47460d7f7c5222cfb6b6a75615ab10895dde4" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 5 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0xb34c1", + "input": "0xb3596f0700000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1346", + "output": "0x0000000000000000000000000000000000000000000000000004f29f169dba00" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 6 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "callType": "staticcall", + "gas": "0xafd23", + "input": "0x50d25bcd", + "to": "0x1eeaf25f2ecbcaf204ecadc8db7b0db9da845327", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x79a", + "output": "0x0000000000000000000000000000000000000000000000000004f29f169dba00" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 6, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0xb1b6d", + "input": "0xb3596f07000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1346", + "output": "0x000000000000000000000000000000000000000000000000000b2e74cae2a16c" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 7 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "callType": "staticcall", + "gas": "0xae435", + "input": "0x50d25bcd", + "to": "0xa874fe207df445ff19e7482c746c4d3fd0cb9ace", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x79a", + "output": "0x000000000000000000000000000000000000000000000000000b2e74cae2a16c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 7, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0xaff0c", + "input": "0xc76a6c9c00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xfa2", + "output": "0x000000000000000000000000000000000000000000000000000000000000006e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 8 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xac8ad", + "input": "0xc76a6c9c00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4eb", + "output": "0x000000000000000000000000000000000000000000000000000000000000006e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 8, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0xae63c", + "input": "0xa2353fdc000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf78", + "output": "0x0000000000000000000000000000000000000000000000000000000000000006" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 9 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xab040", + "input": "0xa2353fdc000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000006" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 9, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0xacd9a", + "input": "0xa2353fdc00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf78", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 10 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xa9800", + "input": "0xa2353fdc00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 10, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0xab0df", + "input": "0xfeab31ac000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x103d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 11 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xa7bb5", + "input": "0xfeab31ac000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x583", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 11, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0xa9729", + "input": "0xe240301900000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x18d6", + "output": "0x0000000000000000000000000000000000000000016eb64e4daa2a7ff4c9900d" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 12 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xa6269", + "input": "0xe240301900000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xe1f", + "output": "0x0000000000000000000000000000000000000000016eb64e4daa2a7ff4c9900d" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 12, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0xa3142", + "input": "0x70a082310000000000000000000000003dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "to": "0x80fb784b7ed66730e8b1dbd9820afd29931aab03", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5dd", + "output": "0x0000000000000000000000000000000000000000016eb64e4daa2a7ff4c9900d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 12, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "call", + "gas": "0xa73d2", + "input": "0x68beb4d6000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c000000000000000000000000000000000000000000000000000000003fbacc07000000000000000000000000000000000000000000000090166c7a71e953a93100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c5990000000000000000000000000000000000000000000000000000000000000000", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2b6f3", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 13 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0xa3f93", + "input": "0x68beb4d6000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c000000000000000000000000000000000000000000000000000000003fbacc07000000000000000000000000000000000000000000000090166c7a71e953a93100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c5990000000000000000000000000000000000000000000000000000000000000000", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ac32", + "output": "0x" + }, + "subtraces": 4, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 13, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0x8de63", + "input": "0x70a082310000000000000000000000003dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x97f", + "output": "0x0000000000000000000000000000000000000000000000000000b76681c60061" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 13, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0x8c485", + "input": "0x57e37af0000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000b766c180cc6800000000000000000000000000000000000000000000000000000e26cbb36218000000000000000000000000000000000000000000000000000029d9740699b20000000000000000000000000000000000000000002d490b828b0989a84d1fc3", + "to": "0x247227714bd121c528310e3bbff401ae34c9f9f6", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x373a", + "output": "0x00000000000000000000000000000000000000000006c0efd88ed92397b543f400000000000000000000000000000000000000000029d9d5f308c350a33861060000000000000000000000000000000000000000001752434221dfe9da41c687" + }, + "subtraces": 2, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 13, + 0, + 1 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x247227714bd121c528310e3bbff401ae34c9f9f6", + "callType": "staticcall", + "gas": "0x89452", + "input": "0x3618abba", + "to": "0x24a42fd28c976a61df5d00d0599c34c4f90748c8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4bf", + "output": "0x0000000000000000000000004d728a4496e4de35f218d5a214366bde3a62b51c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 13, + 0, + 1, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x247227714bd121c528310e3bbff401ae34c9f9f6", + "callType": "staticcall", + "gas": "0x8895c", + "input": "0xbb85c0bb000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "to": "0x4d728a4496e4de35f218d5a214366bde3a62b51c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x48c", + "output": "0x0000000000000000000000000000000000000000001cf389cd46047d03000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 13, + 0, + 1, + 1 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0x822bb", + "input": "0x70a082310000000000000000000000003dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "to": "0x80fb784b7ed66730e8b1dbd9820afd29931aab03", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5dd", + "output": "0x0000000000000000000000000000000000000000016eb64e4daa2a7ff4c9900d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 13, + 0, + 2 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "staticcall", + "gas": "0x80c7d", + "input": "0x57e37af000000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000000000000000000000016eb5be373db00e0b75e6dc00000000000000000000000000000000000000000000009693629134e2210aed0000000000000000000000000000000000000000000046613c0ff064818aa87b000000000000000000000000000000000000000000193e6bd53f8de732d0d2f2", + "to": "0x85b6c5e82886be58e99c3aeab8c74f566dc5811a", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x373a", + "output": "0x00000000000000000000000000000000000000000000000f2129e9b41b1c665300000000000000000000000000000000000000000018f44b3867b79e762f50820000000000000000000000000000000000000000000018e1f91e9770b75451f5" + }, + "subtraces": 2, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 13, + 0, + 3 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x85b6c5e82886be58e99c3aeab8c74f566dc5811a", + "callType": "staticcall", + "gas": "0x7df2a", + "input": "0x3618abba", + "to": "0x24a42fd28c976a61df5d00d0599c34c4f90748c8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4bf", + "output": "0x0000000000000000000000004d728a4496e4de35f218d5a214366bde3a62b51c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 13, + 0, + 3, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x85b6c5e82886be58e99c3aeab8c74f566dc5811a", + "callType": "staticcall", + "gas": "0x7d434", + "input": "0xbb85c0bb00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x4d728a4496e4de35f218d5a214366bde3a62b51c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x48c", + "output": "0x00000000000000000000000000000000000000000018d0bf423c03d8de000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 13, + 0, + 3, + 1 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "staticcall", + "gas": "0x7be7c", + "input": "0x34b3beee00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf8c", + "output": "0x0000000000000000000000007d2d3688df45ce7c552e19c27e007673da9204b8" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 14 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x7953e", + "input": "0x34b3beee00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4f5", + "output": "0x0000000000000000000000007d2d3688df45ce7c552e19c27e007673da9204b8" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 14, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "call", + "gas": "0x7a8ab", + "input": "0x3edb7cb80000000000000000000000008d8d912fe4db5917da92d14fea05225b803c359c000000000000000000000000000000000000000000000090166c7a71e953a931", + "to": "0x7d2d3688df45ce7c552e19c27e007673da9204b8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xdb20", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 15 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7d2d3688df45ce7c552e19c27e007673da9204b8", + "callType": "staticcall", + "gas": "0x766ea", + "input": "0xd15e005300000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c9a", + "output": "0x0000000000000000000000000000000000000000033b376ab56cec1119346567" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 15, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x73eeb", + "input": "0xd15e005300000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x11e3", + "output": "0x0000000000000000000000000000000000000000033b376ab56cec1119346567" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 15, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7d2d3688df45ce7c552e19c27e007673da9204b8", + "callType": "staticcall", + "gas": "0x703d3", + "input": "0xd15e005300000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c9a", + "output": "0x0000000000000000000000000000000000000000033b376ab56cec1119346567" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 15, + 1 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x6dd60", + "input": "0xd15e005300000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x11e3", + "output": "0x0000000000000000000000000000000000000000033b376ab56cec1119346567" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 15, + 1, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "call", + "gas": "0x6c73b", + "input": "0xfa93b2a500000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03000000000000000000000000f2d9e54f0e317b8ac94825b2543908e7552fe9c7000000000000000000000000000000000000000000000090166c7a71e953a931", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x9c61", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 16 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x6a1b2", + "input": "0xfa93b2a500000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03000000000000000000000000f2d9e54f0e317b8ac94825b2543908e7552fe9c7000000000000000000000000000000000000000000000090166c7a71e953a931", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x91a4", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 16, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "call", + "gas": "0x679d9", + "input": "0xa9059cbb000000000000000000000000f2d9e54f0e317b8ac94825b2543908e7552fe9c7000000000000000000000000000000000000000000000090166c7a71e953a931", + "to": "0x80fb784b7ed66730e8b1dbd9820afd29931aab03", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x82fc", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 16, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "callType": "call", + "gas": "0x623db", + "input": "0x28fcf4d3000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000f2d9e54f0e317b8ac94825b2543908e7552fe9c7000000000000000000000000000000000000000000000000000000003fbacc07", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5848", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 17 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "delegatecall", + "gas": "0x600ff", + "input": "0x28fcf4d3000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000f2d9e54f0e317b8ac94825b2543908e7552fe9c7000000000000000000000000000000000000000000000000000000003fbacc07", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4dab", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 17, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "callType": "call", + "gas": "0x5db28", + "input": "0x23b872dd000000000000000000000000f2d9e54f0e317b8ac94825b2543908e7552fe9c70000000000000000000000003dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3000000000000000000000000000000000000000000000000000000003fbacc07", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3f02", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 6, + 0, + 3, + 17, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "staticcall", + "gas": "0x6b222", + "input": "0x70a08231000000000000000000000000f2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "to": "0x80fb784b7ed66730e8b1dbd9820afd29931aab03", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5dd", + "output": "0x000000000000000000000000000000000000000000000090166c7a71e953a931" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 7 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "call", + "gas": "0x6a3a1", + "input": "0xa9059cbb000000000000000000000000c0ec046bb414521dc038414df7e2cf7b123e23a900000000000000000000000000000000000000000000000bf026db50f6d82b92", + "to": "0x80fb784b7ed66730e8b1dbd9820afd29931aab03", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x37fc", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 8 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "call", + "gas": "0x66432", + "input": "0xa9059cbb000000000000000000000000ab3f9bf1d81ddb224a2014e98b238638824bcf2000000000000000000000000000000000000000000000008426459f20f27b7d9f", + "to": "0x80fb784b7ed66730e8b1dbd9820afd29931aab03", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x37fc", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 1, + 0, + 9 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xab3f9bf1d81ddb224a2014e98b238638824bcf20", + "callType": "staticcall", + "gas": "0x6e7fb", + "input": "0x70a08231000000000000000000000000ab3f9bf1d81ddb224a2014e98b238638824bcf20", + "to": "0x80fb784b7ed66730e8b1dbd9820afd29931aab03", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5dd", + "output": "0x00000000000000000000000000000000000000000003952cbdb50aec2d332b09" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 2 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xab3f9bf1d81ddb224a2014e98b238638824bcf20", + "callType": "staticcall", + "gas": "0x6dc03", + "input": "0x70a08231000000000000000000000000ab3f9bf1d81ddb224a2014e98b238638824bcf20", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000001457033f61b0707a7cc" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7, + 3 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7", + "callType": "call", + "gas": "0x736b0", + "input": "0x5f2e2b450000000000000000000000003817fae0168df9158628b1d77dc959e6a17701f6000000000000000000000000000000000000000000000000000000000000001e", + "to": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x35836", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 30, + "trace_address": [ + 1 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x6c270", + "input": "0x", + "to": "0x35ab5afb49d73b67cad0c8a63f2e237333c521b7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x35ab5afb49d73b67cad0c8a63f2e237333c521b7", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 0, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x6a84f", + "input": "0x", + "to": "0xb3b4d30930c7e57ff95756c6dbc2d134cf75081f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 1 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xb3b4d30930c7e57ff95756c6dbc2d134cf75081f", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 1, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x68e2e", + "input": "0x", + "to": "0x268dd1e0619ef4d80e69acdb18c6bb6a96c750ee", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 2 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x268dd1e0619ef4d80e69acdb18c6bb6a96c750ee", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 2, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x6740d", + "input": "0x", + "to": "0x49f2524312380fa997a7e1b597da15713b515b3b", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 3 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x49f2524312380fa997a7e1b597da15713b515b3b", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 3, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x659ec", + "input": "0x", + "to": "0xf39415ae2852090b2f971ffbcbff937d9737fd77", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 4 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xf39415ae2852090b2f971ffbcbff937d9737fd77", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 4, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x63fcb", + "input": "0x", + "to": "0xd49a1f80d703a07b27c2e205381e1ab1de3cb996", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 5 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xd49a1f80d703a07b27c2e205381e1ab1de3cb996", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 5, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x625aa", + "input": "0x", + "to": "0x3e2ffb5f5ed0398b4e4e972e740909a8d0b27fe7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 6 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x3e2ffb5f5ed0398b4e4e972e740909a8d0b27fe7", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 6, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x60b89", + "input": "0x", + "to": "0xd2deec90340c78a8692def55ee357b9abfb967fe", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 7 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xd2deec90340c78a8692def55ee357b9abfb967fe", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 7, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x5f168", + "input": "0x", + "to": "0x3f730d82751316ac51b476f726c6671c666c76d2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 8 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x3f730d82751316ac51b476f726c6671c666c76d2", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 8, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x5d747", + "input": "0x", + "to": "0x48adb5d1850790d774f70c10c6c73c990cc5ed44", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 9 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x48adb5d1850790d774f70c10c6c73c990cc5ed44", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 9, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x5bd26", + "input": "0x", + "to": "0xfc476047949c7fdefcf326e6c0411a83640bb9d8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 10 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xfc476047949c7fdefcf326e6c0411a83640bb9d8", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 10, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x5a305", + "input": "0x", + "to": "0x7cdeea4f5502f58dec709c025cb21fda059a36fa", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 11 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x7cdeea4f5502f58dec709c025cb21fda059a36fa", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 11, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x588e4", + "input": "0x", + "to": "0x2ddac158fd7a6402fa1a3dd077637b7669425eaf", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 12 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x2ddac158fd7a6402fa1a3dd077637b7669425eaf", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 12, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x56ec3", + "input": "0x", + "to": "0x9f0044296e5839c0741f93eabe5c60ff99582515", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 13 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x9f0044296e5839c0741f93eabe5c60ff99582515", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 13, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x554a2", + "input": "0x", + "to": "0xe8d52b215abd15fd7324fe38e067ea694f1e60f9", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 14 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xe8d52b215abd15fd7324fe38e067ea694f1e60f9", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 14, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x53a81", + "input": "0x", + "to": "0x985bc7e772835f797c4081b9c38783cb07a8428f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 15 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x985bc7e772835f797c4081b9c38783cb07a8428f", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 15, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x52060", + "input": "0x", + "to": "0xce0c2d997bde12e918b167938ef40cd1b915e90e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 16 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xce0c2d997bde12e918b167938ef40cd1b915e90e", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 16, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x5063f", + "input": "0x", + "to": "0x32f64222a87684aa97574a7398e945676d962dce", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 17 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x32f64222a87684aa97574a7398e945676d962dce", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 17, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x4ec1e", + "input": "0x", + "to": "0xab88919e9e40a6e8b7c0eb0b27b7dd68ba109cd7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 18 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xab88919e9e40a6e8b7c0eb0b27b7dd68ba109cd7", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 18, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x4d1fc", + "input": "0x", + "to": "0xfdd6097d35ab134ac1acadd93977ebb0aa29e51b", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 19 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xfdd6097d35ab134ac1acadd93977ebb0aa29e51b", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 19, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x4b7db", + "input": "0x", + "to": "0xad22e7931f58225351bea197805fd541d6b6a0b3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 20 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xad22e7931f58225351bea197805fd541d6b6a0b3", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 20, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x49dba", + "input": "0x", + "to": "0x65bfcd879e77f1c831a3953ee66638a9c97e9566", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 21 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x65bfcd879e77f1c831a3953ee66638a9c97e9566", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 21, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x48399", + "input": "0x", + "to": "0x7031f44d8c00779203a5fe1ebfb0e46eb3b94b14", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 22 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x7031f44d8c00779203a5fe1ebfb0e46eb3b94b14", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 22, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x46978", + "input": "0x", + "to": "0xf49e99a8f6a06fc3d9f45104fdb399fd2b29b178", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 23 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xf49e99a8f6a06fc3d9f45104fdb399fd2b29b178", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 23, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x44f57", + "input": "0x", + "to": "0x294e1c3d7f3dccaf6a92c6712260b689eabcbe72", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 24 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x294e1c3d7f3dccaf6a92c6712260b689eabcbe72", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 24, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x43536", + "input": "0x", + "to": "0xc349e6b5561f9cbb832cb12ef5ab2d8faddfc4cb", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 25 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xc349e6b5561f9cbb832cb12ef5ab2d8faddfc4cb", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 25, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x41b15", + "input": "0x", + "to": "0x43238d35c314eddec38a07c2492a5b40722239df", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 26 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x43238d35c314eddec38a07c2492a5b40722239df", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 26, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x400f4", + "input": "0x", + "to": "0xa3f01c3355b2abd68724b6b6aa37402161ef4a24", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 27 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xa3f01c3355b2abd68724b6b6aa37402161ef4a24", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 27, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x3e6d2", + "input": "0x", + "to": "0xdf8e48ba35fa1fb973d990f8b2e508ff8d8b7c36", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 28 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0xdf8e48ba35fa1fb973d990f8b2e508ff8d8b7c36", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 28, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "callType": "call", + "gas": "0x3ccb1", + "input": "0x", + "to": "0x6d8b4fc92125155316820468de13304b7bbacc88", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x139e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 1, + 29 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "call", + "error": null + }, + { + "action": { + "address": "0x6d8b4fc92125155316820468de13304b7bbacc88", + "refundAddress": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "balance": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [ + 1, + 29, + 0 + ], + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_position": 90, + "type": "suicide", + "error": null + }, + { + "action": { + "from": "0x469b2379badaf80d2856923912b87a26a1bc02b7", + "callType": "call", + "gas": "0x3e8", + "input": "0x", + "to": "0x469b2379badaf80d2856923912b87a26a1bc02b7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x9353046bbece779d6194bb6b73c6dfbe4b1ce5c6693e695323d49c23ba53ac8a", + "transaction_position": 91, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf64f48bb61bc2ae3a6098023a89bb569a3a0f70e", + "callType": "call", + "gas": "0x4c91", + "input": "0xa9059cbb0000000000000000000000007acf2f53adc3bd0eb1308f07312c3e1ef218ce0c0000000000000000000000000000000000000000000000000000000002faf080", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x2d78078a01149a0d0a921bd521ba0a8b6f653e83660ca95e3ee52dac3490eaf0", + "transaction_position": 92, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe8d1ea76b97f427ff07493890405b9169ad6fa61", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x8fa87484cc6e0df0f98087047bfd8cbff1fecd1a", + "value": "0x85a002e84916800" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x447296c4bc7058467411e811f1e50ddf17a3f9fda31a80cf82c61973e2e59c23", + "transaction_position": 93, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3144d9885e57e6931cf51a2cac6a70dad6b805b2", + "callType": "call", + "gas": "0xd5a30", + "input": "0x3901366f00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000007e63b110ba85e400000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000004eb2816b0d7300000000000000000000000000000000000000000000000000000000000000000200000000000000000000000077f5f3dfd95d0b061c9ef47c4f4ca4681d807776000000000000000000000000c40d16476380e4037e6b1a2594caf6a6cc8da9670000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000015af1d78b58c400000000000000000000000000000000000000000000000000015af1d78b58c400000000000000000000000000000000000000000000000000000006c00a3912c000", + "to": "0x91a19bc2b92ffb867cd5bd691346d6847cc2a842", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x50f7", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 4, + "trace_address": [], + "transaction_hash": "0x80380024c396ea85304c994771dbf572145d76716d31eb1f734641a61090cc7e", + "transaction_position": 94, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x91a19bc2b92ffb867cd5bd691346d6847cc2a842", + "callType": "staticcall", + "gas": "0xd1475", + "input": "0xf8b2cb4f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbaf", + "output": "0x000000000000000000000000000000000000000000000023c51d8643314ad39f" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x80380024c396ea85304c994771dbf572145d76716d31eb1f734641a61090cc7e", + "transaction_position": 94, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x91a19bc2b92ffb867cd5bd691346d6847cc2a842", + "callType": "staticcall", + "gas": "0xd0221", + "input": "0xf8b2cb4f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbaf", + "output": "0x0000000000000000000000000000000000000000000005fb814dfde097ce29c0" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x80380024c396ea85304c994771dbf572145d76716d31eb1f734641a61090cc7e", + "transaction_position": 94, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x91a19bc2b92ffb867cd5bd691346d6847cc2a842", + "callType": "staticcall", + "gas": "0xcef70", + "input": "0xba9530a6000000000000000000000000000000000000000000000023c51d8643314ad39f0000000000000000000000000000000000000000000000015af1d78b58c400000000000000000000000000000000000000000000000005fb814dfde097ce29c00000000000000000000000000000000000000000000000015af1d78b58c400000000000000000000000000000000000000000000000000007e63b110ba85e4000000000000000000000000000000000000000000000000000006c00a3912c000", + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x92c", + "output": "0x000000000000000000000000000000000000000000000014cfbbac8279ce30b2" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x80380024c396ea85304c994771dbf572145d76716d31eb1f734641a61090cc7e", + "transaction_position": 94, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x91a19bc2b92ffb867cd5bd691346d6847cc2a842", + "callType": "staticcall", + "gas": "0xcdf28", + "input": "0x0902f1ac", + "to": "0xc40d16476380e4037e6b1a2594caf6a6cc8da967", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c1", + "output": "0x00000000000000000000000000000000000000000000f4de6c901baf039c590e0000000000000000000000000000000000000000000005cbe9d03f2017f3b1b3000000000000000000000000000000000000000000000000000000005f6be315" + }, + "subtraces": 0, + "trace_address": [ + 3 + ], + "transaction_hash": "0x80380024c396ea85304c994771dbf572145d76716d31eb1f734641a61090cc7e", + "transaction_position": 94, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x83b927fcd317d31ffdf432bb1de50b289191ee3c", + "callType": "call", + "gas": "0xc2cf", + "input": "0xa9059cbb0000000000000000000000005c8f544f0ac1bac2edf50141742450e40e4e900200000000000000000000000000000000000000000000010f0cf064dd59200000", + "to": "0x466912baa9430a4a460b141ee8c580d817441449", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x72fb", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xd6709ace0c1f27476187019f58a190a7c2e94ea6285986fb2124e0bae5285bfb", + "transaction_position": 95, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d14beaad67c167598528cbfc45e1169a66114f1", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xf3a4101f94831d404f2fbab0d333fad42d79e06d", + "value": "0x2ff8b685845463c" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xaf18b3ceb458b30d7a570daf53e8f32f1b0d39684dd807fd4b6ccb7212b8c018", + "transaction_position": 96, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1f97506976f700423d5cfe32217580f528e6259b", + "callType": "call", + "gas": "0x8cf4", + "input": "0xa9059cbb000000000000000000000000445284ffd1de5998c6db43aec2a5c1cc627d9ea00000000000000000000000000000000000000000000000000000000020c85580", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xea5bc1f234f7d53c397045fbdf9382a0abf7ce26f098ba8cc92324187e0684ac", + "transaction_position": 97, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8241f48f8dcc373af60194a4f100962fe6eec98d", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xe1f922d47e415ead0819894999667fd7c1b2bf16", + "value": "0xa6fa4040718000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x996762b28091b9d3deefeac29deb770828cde15645f64dc4b18592b412e151fd", + "transaction_position": 98, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x9c19b0497997fe9e75862688a295168070456951", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xd7f7a061cf539c090156c3816412588e7113a176", + "value": "0x16345785d8a0000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xf1e8f13819d2a76e3415eb5cb8bf3200d77cae9ccf3f6ba8bc1de9c92bee63be", + "transaction_position": 99, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x08fbd06f3d72f38dca32760c236977d98ecdd3bd", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x886ac8a5e4f80a52d464a43d5fd1f6fa2377c3bf", + "value": "0x6f92bcea3a3a7f" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x6e970e7a5b8017be707c3e7c47c030ceaea12e48510cb6424f8a473ad3490bb7", + "transaction_position": 100, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb8deb16f18e4c974a72244cb89869aa6adb1ca98", + "callType": "call", + "gas": "0x2d80b", + "input": "0x38ed173900000000000000000000000000000000000000000000000d513c62b40f256830000000000000000000000000000000000000000000000000000000000a7b745200000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000b8deb16f18e4c974a72244cb89869aa6adb1ca98000000000000000000000000000000000000000000000000000000005f6be8eb00000000000000000000000000000000000000000000000000000000000000030000000000000000000000006f87d756daf0503d08eb8993686c7fc01dc44fb1000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x256c8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000d513c62b40f25683000000000000000000000000000000000000000000000000008d745d2e178ee51000000000000000000000000000000000000000000000000000000000c0b5ccb" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_position": 101, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x2bf56", + "input": "0x0902f1ac", + "to": "0xd2e0c4928789e5db620e53af29f5fc7bca262635", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000000e597a76f77e1f4e259e4000000000000000000000000000000000000000000000098e95b3e6c3a3d987e000000000000000000000000000000000000000000000000000000005f6be34a" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_position": 101, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x2ad23", + "input": "0x0902f1ac", + "to": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000000000000009b63e0fff9520000000000000000000000000000000000000000000071b7e4046d296094a9f9000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_position": 101, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x29b5f", + "input": "0x23b872dd000000000000000000000000b8deb16f18e4c974a72244cb89869aa6adb1ca98000000000000000000000000d2e0c4928789e5db620e53af29f5fc7bca26263500000000000000000000000000000000000000000000000d513c62b40f256830", + "to": "0x6f87d756daf0503d08eb8993686c7fc01dc44fb1", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5a30", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_position": 101, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x232bb", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008d745d2e178ee51000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xd2e0c4928789e5db620e53af29f5fc7bca262635", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xdd3d", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 3 + ], + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_position": 101, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd2e0c4928789e5db620e53af29f5fc7bca262635", + "callType": "call", + "gas": "0x201ed", + "input": "0xa9059cbb000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc00000000000000000000000000000000000000000000000008d745d2e178ee51", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3b3a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_position": 101, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd2e0c4928789e5db620e53af29f5fc7bca262635", + "callType": "staticcall", + "gas": "0x1c0a9", + "input": "0x70a08231000000000000000000000000d2e0c4928789e5db620e53af29f5fc7bca262635", + "to": "0x6f87d756daf0503d08eb8993686c7fc01dc44fb1", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c2", + "output": "0x00000000000000000000000000000000000000000000e5a4f8abda960407c214" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_position": 101, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd2e0c4928789e5db620e53af29f5fc7bca262635", + "callType": "staticcall", + "gas": "0x1b5c8", + "input": "0x70a08231000000000000000000000000d2e0c4928789e5db620e53af29f5fc7bca262635", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000000098e083f89958c4aa2d" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_position": 101, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x14d16", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000c0b5ccb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b8deb16f18e4c974a72244cb89869aa6adb1ca9800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xcf0f", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 4 + ], + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_position": 101, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "call", + "gas": "0x11ffd", + "input": "0xa9059cbb000000000000000000000000b8deb16f18e4c974a72244cb89869aa6adb1ca98000000000000000000000000000000000000000000000000000000000c0b5ccb", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5125", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 4, + 0 + ], + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_position": 101, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x110ef", + "input": "0xa9059cbb000000000000000000000000b8deb16f18e4c974a72244cb89869aa6adb1ca98000000000000000000000000000000000000000000000000000000000c0b5ccb", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4640", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 4, + 0, + 0 + ], + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_position": 101, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "staticcall", + "gas": "0xc912", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf99", + "output": "0x00000000000000000000000000000000000000000000000000009b63d4f49c87" + }, + "subtraces": 1, + "trace_address": [ + 4, + 1 + ], + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_position": 101, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0xbb63", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b7", + "output": "0x00000000000000000000000000000000000000000000000000009b63d4f49c87" + }, + "subtraces": 0, + "trace_address": [ + 4, + 1, + 0 + ], + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_position": 101, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "staticcall", + "gas": "0xb385", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000071b7ecdbb2fc420d984a" + }, + "subtraces": 0, + "trace_address": [ + 4, + 2 + ], + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_position": 101, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa5246e7c740110be07e39cc5395c49fb891d900c", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x4316952cc65994c44ad61e72ed30fad159ed762e", + "value": "0x5fec5b60ef8000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x4a54f198d08882258d364d595e3902f343e3ac74954a58662727dfe5ba9d027d", + "transaction_position": 102, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x6244ba7e6f1e05d5c5002c59185d88b29e3f58f2", + "callType": "call", + "gas": "0x5c2c", + "input": "0x", + "to": "0x8e66faee6e40555f140acb32a3c1e8167ba99877", + "value": "0xe520642aaebb92" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x33f9", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x3199242d96635126113f92ff6c79300b0aca3bbececcb0cc6015e52339880714", + "transaction_position": 103, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8e66faee6e40555f140acb32a3c1e8167ba99877", + "callType": "call", + "gas": "0x3a86", + "input": "0x", + "to": "0x131a99859a8bfa3251d899f0675607766736ffae", + "value": "0xe520642aaebb92" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xb1c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x3199242d96635126113f92ff6c79300b0aca3bbececcb0cc6015e52339880714", + "transaction_position": 103, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x131a99859a8bfa3251d899f0675607766736ffae", + "callType": "delegatecall", + "gas": "0x36c8", + "input": "0x", + "to": "0x5b9e8728e316bbeb692d22daaab74f6cbf2c4691", + "value": "0xe520642aaebb92" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x822", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x3199242d96635126113f92ff6c79300b0aca3bbececcb0cc6015e52339880714", + "transaction_position": 103, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xe5ed7196486c21c2f7819a895543dbbdb30f9eeb", + "callType": "call", + "gas": "0x4e24", + "input": "0x", + "to": "0x1a17adeecf2d3c6635125f30d5bd3593674b4528", + "value": "0x3166a4fd64734f" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2841", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x69f6b799678ac94ff01c4267e32725bc02e22bdca86da7f5183d1f8f8e9c8fcf", + "transaction_position": 104, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1a17adeecf2d3c6635125f30d5bd3593674b4528", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xaf1931c20ee0c11bea17a41bfbbad299b2763bc0", + "value": "0x3166a4fd64734f" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x69f6b799678ac94ff01c4267e32725bc02e22bdca86da7f5183d1f8f8e9c8fcf", + "transaction_position": 104, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x10e2abc1d597a9010c271b36bd246c3041229586", + "callType": "call", + "gas": "0xb4fd", + "input": "0xa9059cbb00000000000000000000000059bc8a5a001a2662a458fc95816325a77410b186000000000000000000000000000000000000000000000000000000098381af60", + "to": "0x9d86b1b2554ec410eccffbf111a6994910111340", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x77bf", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x000284ee1dc5b5884e531f631910823ca865e79af5c61388b6588ad13b9b1825", + "transaction_position": 105, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xcb2fcd25c7847354df4a55863f5377a6e1360a66", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x4fab46250598907f8323706a5029ac228040fbaa", + "value": "0x16446e2aac3f10" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xbfc92ce884044abe083878c19132fd23241fa09175ba7003e86ac3beb374271f", + "transaction_position": 106, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1323dcafe41ab2f4459c701ef993f316a467d311", + "callType": "call", + "gas": "0x10d88", + "input": "0x", + "to": "0x37a6f7019fb0f9967a6eafa9ef80a631444d3245", + "value": "0x446fdd9b48800" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x9e124b66ca502df7b2fdc162fedf149e508dd8622ec4f21ac1777a16aee3652f", + "transaction_position": 107, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x51e8afd5387f90a50bb35f13c4eaddd113927464", + "callType": "call", + "gas": "0x149b4", + "input": "0xa9059cbb0000000000000000000000004c9fe216d6b413242d902380abaea203cf2ce6b90000000000000000000000000000000000000000000000000000000008954400", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x526c135fa544fac4bb711e1c2f1d00b69780a9bb8044ab274e0165aa9b0caf4e", + "transaction_position": 108, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8b5969fcd6644139e715c2359a00eb31962af0e3", + "callType": "call", + "gas": "0x6945c", + "input": "0x8853b53e00000000000000000000000000000000000000000000000000000000000a250f", + "to": "0xbcf935d206ca32929e1b887a07ed240f0d8ccd22", + "value": "0x6a94d74f430000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4fc87", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xc41da469cd94d2924433446611eba7841a01726d5ed6cf10a3d7d03ac2b530aa", + "transaction_position": 109, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbcf935d206ca32929e1b887a07ed240f0d8ccd22", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xf9c51fdc9005fc8af1a2c9d2c8aa9d83197fadfe", + "value": "0x6a94d74f430000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xc41da469cd94d2924433446611eba7841a01726d5ed6cf10a3d7d03ac2b530aa", + "transaction_position": 109, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x04e8be993dcf2e5e046255809ff4dec58b38287c", + "callType": "call", + "gas": "0x10d88", + "input": "0x", + "to": "0x37a6f7019fb0f9967a6eafa9ef80a631444d3245", + "value": "0x97698cd0a326000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x794e27c399f52d3be45f63a29399747acfc1244545f1bfcda1d86704171ff58d", + "transaction_position": 110, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x76c7f37674379c4fda517397d32ecfc5e4cf9ce0", + "callType": "call", + "gas": "0x5850", + "input": "0x", + "to": "0x0c531fa74c38aaa5588ffe499a043bc68575ebad", + "value": "0x11cbc6f217c1cc00" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3101", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xd3e81681f63fb50fa32070bd1fe49d564293d88fa2468ef15b0e817c8e950e28", + "transaction_position": 111, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0c531fa74c38aaa5588ffe499a043bc68575ebad", + "callType": "call", + "gas": "0x36b8", + "input": "0x", + "to": "0x94b18793b93b524b110fead408b955422b982fa4", + "value": "0x11cbc6f217c1cc00" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x823", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xd3e81681f63fb50fa32070bd1fe49d564293d88fa2468ef15b0e817c8e950e28", + "transaction_position": 111, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa23e65fee20cfa54377d832a83e5bafdc6f0a57a", + "callType": "call", + "gas": "0x23775", + "input": "0x18cbafe50000000000000000000000000000000000000000000000011f90b188ade6bc2700000000000000000000000000000000000000000000000011096e9a4ebda21c00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a23e65fee20cfa54377d832a83e5bafdc6f0a57a000000000000000000000000000000000000000000000000000000005f6be8f60000000000000000000000000000000000000000000000000000000000000002000000000000000000000000aa62a002ce856d9fe1874e7f8558a38fc1e49cca000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1f453", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000011f90b188ade6bc2700000000000000000000000000000000000000000000000012bd9343569d6586" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0x201454ba2b83344cb65438cc8e93a18bdf19a644a853eb4a51cc442358356308", + "transaction_position": 112, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x220f0", + "input": "0x0902f1ac", + "to": "0x9d9e276ae68e658a9c6c322a8527f4de8467cb7c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000000002e198c8b7400b8df90000000000000000000000000000000000000000000000003162863df1459f4d7000000000000000000000000000000000000000000000000000000005f6be2d1" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x201454ba2b83344cb65438cc8e93a18bdf19a644a853eb4a51cc442358356308", + "transaction_position": 112, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x20f35", + "input": "0x23b872dd000000000000000000000000a23e65fee20cfa54377d832a83e5bafdc6f0a57a0000000000000000000000009d9e276ae68e658a9c6c322a8527f4de8467cb7c0000000000000000000000000000000000000000000000011f90b188ade6bc27", + "to": "0xaa62a002ce856d9fe1874e7f8558a38fc1e49cca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5943", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x201454ba2b83344cb65438cc8e93a18bdf19a644a853eb4a51cc442358356308", + "transaction_position": 112, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1aa29", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012bd9343569d65860000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x9d9e276ae68e658a9c6c322a8527f4de8467cb7c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x11864", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2 + ], + "transaction_hash": "0x201454ba2b83344cb65438cc8e93a18bdf19a644a853eb4a51cc442358356308", + "transaction_position": 112, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x9d9e276ae68e658a9c6c322a8527f4de8467cb7c", + "callType": "call", + "gas": "0x17b7d", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000012bd9343569d6586", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x75d2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0x201454ba2b83344cb65438cc8e93a18bdf19a644a853eb4a51cc442358356308", + "transaction_position": 112, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x9d9e276ae68e658a9c6c322a8527f4de8467cb7c", + "callType": "staticcall", + "gas": "0x1008c", + "input": "0x70a082310000000000000000000000009d9e276ae68e658a9c6c322a8527f4de8467cb7c", + "to": "0xaa62a002ce856d9fe1874e7f8558a38fc1e49cca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x551", + "output": "0x00000000000000000000000000000000000000000000002f391d3cfcae9f9bb7" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1 + ], + "transaction_hash": "0x201454ba2b83344cb65438cc8e93a18bdf19a644a853eb4a51cc442358356308", + "transaction_position": 112, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x9d9e276ae68e658a9c6c322a8527f4de8467cb7c", + "callType": "staticcall", + "gas": "0xf51d", + "input": "0x70a082310000000000000000000000009d9e276ae68e658a9c6c322a8527f4de8467cb7c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000000003036ad09bbdbc8f51" + }, + "subtraces": 0, + "trace_address": [ + 2, + 2 + ], + "transaction_hash": "0x201454ba2b83344cb65438cc8e93a18bdf19a644a853eb4a51cc442358356308", + "transaction_position": 112, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x8f8e", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000012bd9343569d6586", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2e93", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 3 + ], + "transaction_hash": "0x201454ba2b83344cb65438cc8e93a18bdf19a644a853eb4a51cc442358356308", + "transaction_position": 112, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x12bd9343569d6586" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x53", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x201454ba2b83344cb65438cc8e93a18bdf19a644a853eb4a51cc442358356308", + "transaction_position": 112, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x43d5", + "input": "0x", + "to": "0xa23e65fee20cfa54377d832a83e5bafdc6f0a57a", + "value": "0x12bd9343569d6586" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x201454ba2b83344cb65438cc8e93a18bdf19a644a853eb4a51cc442358356308", + "transaction_position": 112, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x490e7706ebdbc9a6e307d12ea5384316d74d6749", + "callType": "call", + "gas": "0x687e", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xc34", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x19770235170b723992233a7eed8447e1f27c065bd959bffa9f873e415a3e8821", + "transaction_position": 113, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x490e7706ebdbc9a6e307d12ea5384316d74d6749", + "callType": "call", + "gas": "0x696e", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x5befbb272290dd5b8521d4a938f6c4757742c430", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x580e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x92db4ae17fa506b9e16c85ec2d98c601e2aa94893b7a15a7191f016828a616f2", + "transaction_position": 114, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xeae98e98cea0577cf78e2efce00b3faa9444130c", + "callType": "call", + "gas": "0x1f30f", + "input": "0xe8e33700000000000000000000000000042afd3869a47e2d5d42cc787d5c9e19df32185f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000001dd7f302367bc8d3e80000000000000000000000000000000000000000000000000f230f8590ab5d7d00000000000000000000000000000000000000000000001d8b8cbd121944426d0000000000000000000000000000000000000000000000000efc4f5dd457bb45000000000000000000000000eae98e98cea0577cf78e2efce00b3faa9444130c000000000000000000000000000000000000000000000000000000005f6be894", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 2, + "trace_address": [], + "transaction_hash": "0x332bab853b613d5445dd4b69bef35330433f6e0c57b818fce1ea6fbfdc74f239", + "transaction_position": 115, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1e387", + "input": "0xe6a43905000000000000000000000000042afd3869a47e2d5d42cc787d5c9e19df32185f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4f0", + "output": "0x000000000000000000000000dc61511da969a32a29da5464d1bc71c546ac7578" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x332bab853b613d5445dd4b69bef35330433f6e0c57b818fce1ea6fbfdc74f239", + "transaction_position": 115, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1d543", + "input": "0x0902f1ac", + "to": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000001e6c6df13573a4fea47d0000000000000000000000000000000000000000000000111450e387b5991bd1000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x332bab853b613d5445dd4b69bef35330433f6e0c57b818fce1ea6fbfdc74f239", + "transaction_position": 115, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf6933fecabfb59656bc04e7fe5cec104a73368f4", + "callType": "call", + "gas": "0x210a4", + "input": "0xfb3bdb41000000000000000000000000000000000000000000000002b6272f7cec4380000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f6933fecabfb59656bc04e7fe5cec104a73368f4000000000000000000000000000000000000000000000000000000005f6be5e60000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007d1afa7b718fb893db30a3abc0cfc608aacfebb0", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0xa4a6475721b40" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1d11c", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a3075a4476d94000000000000000000000000000000000000000000000002b6272f7cec438000" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0xd9f867d7450b4046de6ac06e8d43f4523b14b347c9fdeb1c5aab943c5215ec13", + "transaction_position": 116, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1face", + "input": "0x0902f1ac", + "to": "0x819f3450da6f110ba6ea52195b3beafa246062de", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000001cf3a6b6892f56792433b000000000000000000000000000000000000000000000006c77019c317f9fcf4000000000000000000000000000000000000000000000000000000005f6be405" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xd9f867d7450b4046de6ac06e8d43f4523b14b347c9fdeb1c5aab943c5215ec13", + "transaction_position": 116, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1d1e0", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0xa3075a4476d94" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5892", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xd9f867d7450b4046de6ac06e8d43f4523b14b347c9fdeb1c5aab943c5215ec13", + "transaction_position": 116, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x17158", + "input": "0xa9059cbb000000000000000000000000819f3450da6f110ba6ea52195b3beafa246062de000000000000000000000000000000000000000000000000000a3075a4476d94", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0xd9f867d7450b4046de6ac06e8d43f4523b14b347c9fdeb1c5aab943c5215ec13", + "transaction_position": 116, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x13a94", + "input": "0x022c0d9f000000000000000000000000000000000000000000000002b6272f7cec4380000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f6933fecabfb59656bc04e7fe5cec104a73368f400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x819f3450da6f110ba6ea52195b3beafa246062de", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xdf48", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 3 + ], + "transaction_hash": "0xd9f867d7450b4046de6ac06e8d43f4523b14b347c9fdeb1c5aab943c5215ec13", + "transaction_position": 116, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x819f3450da6f110ba6ea52195b3beafa246062de", + "callType": "call", + "gas": "0x10dc5", + "input": "0xa9059cbb000000000000000000000000f6933fecabfb59656bc04e7fe5cec104a73368f4000000000000000000000000000000000000000000000002b6272f7cec438000", + "to": "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3cd4", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0xd9f867d7450b4046de6ac06e8d43f4523b14b347c9fdeb1c5aab943c5215ec13", + "transaction_position": 116, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x819f3450da6f110ba6ea52195b3beafa246062de", + "callType": "staticcall", + "gas": "0xcada", + "input": "0x70a08231000000000000000000000000819f3450da6f110ba6ea52195b3beafa246062de", + "to": "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x533", + "output": "0x00000000000000000000000000000000000000000001cf37b54163787b4ec33b" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0xd9f867d7450b4046de6ac06e8d43f4523b14b347c9fdeb1c5aab943c5215ec13", + "transaction_position": 116, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x819f3450da6f110ba6ea52195b3beafa246062de", + "callType": "staticcall", + "gas": "0xbf89", + "input": "0x70a08231000000000000000000000000819f3450da6f110ba6ea52195b3beafa246062de", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000000006c77a4a38bc416a88" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0xd9f867d7450b4046de6ac06e8d43f4523b14b347c9fdeb1c5aab943c5215ec13", + "transaction_position": 116, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x4048", + "input": "0x", + "to": "0xf6933fecabfb59656bc04e7fe5cec104a73368f4", + "value": "0x19eed12aadac" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0xd9f867d7450b4046de6ac06e8d43f4523b14b347c9fdeb1c5aab943c5215ec13", + "transaction_position": 116, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x614f93a1d01ba1212783f9019516774f7dd017ef", + "callType": "call", + "gas": "0x1f350", + "input": "0x7ff36ab500000000000000000000000000000000000000000000000565060341f773ed450000000000000000000000000000000000000000000000000000000000000080000000000000000000000000614f93a1d01ba1212783f9019516774f7dd017ef000000000000000000000000000000000000000000000000000000005f6be8eb0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000ef8ba8cba86f81b3108f60186fce9c81b5096d5c", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x1ac8bcc640810000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1b61f", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000001ac8bcc6408100000000000000000000000000000000000000000000000000056bedb908b24a4438" + }, + "subtraces": 4, + "trace_address": [], + "transaction_hash": "0xbab835727e492a82495afb97af9a1dd2a2bb57ae105e840f013941d4ba8d20e9", + "transaction_position": 117, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1de1e", + "input": "0x0902f1ac", + "to": "0xac523eb684be6e3fc5ef20a8b2328256b27d36e4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x0000000000000000000000000000000000000000000000034d56f99a9a8acdc70000000000000000000000000000000000000000000000b10c742270ccd06391000000000000000000000000000000000000000000000000000000005f6be287" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xbab835727e492a82495afb97af9a1dd2a2bb57ae105e840f013941d4ba8d20e9", + "transaction_position": 117, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1b567", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x1ac8bcc640810000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5892", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xbab835727e492a82495afb97af9a1dd2a2bb57ae105e840f013941d4ba8d20e9", + "transaction_position": 117, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x154e8", + "input": "0xa9059cbb000000000000000000000000ac523eb684be6e3fc5ef20a8b2328256b27d36e40000000000000000000000000000000000000000000000001ac8bcc640810000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0xbab835727e492a82495afb97af9a1dd2a2bb57ae105e840f013941d4ba8d20e9", + "transaction_position": 117, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x11e42", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056bedb908b24a4438000000000000000000000000614f93a1d01ba1212783f9019516774f7dd017ef00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xac523eb684be6e3fc5ef20a8b2328256b27d36e4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xe3d4", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 3 + ], + "transaction_hash": "0xbab835727e492a82495afb97af9a1dd2a2bb57ae105e840f013941d4ba8d20e9", + "transaction_position": 117, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xac523eb684be6e3fc5ef20a8b2328256b27d36e4", + "callType": "call", + "gas": "0xf1c6", + "input": "0xa9059cbb000000000000000000000000614f93a1d01ba1212783f9019516774f7dd017ef0000000000000000000000000000000000000000000000056bedb908b24a4438", + "to": "0xef8ba8cba86f81b3108f60186fce9c81b5096d5c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x41e7", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0xbab835727e492a82495afb97af9a1dd2a2bb57ae105e840f013941d4ba8d20e9", + "transaction_position": 117, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xac523eb684be6e3fc5ef20a8b2328256b27d36e4", + "callType": "staticcall", + "gas": "0xa9f0", + "input": "0x70a08231000000000000000000000000ac523eb684be6e3fc5ef20a8b2328256b27d36e4", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000000003681fb660db0bcdc7" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0xbab835727e492a82495afb97af9a1dd2a2bb57ae105e840f013941d4ba8d20e9", + "transaction_position": 117, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xac523eb684be6e3fc5ef20a8b2328256b27d36e4", + "callType": "staticcall", + "gas": "0x9efe", + "input": "0x70a08231000000000000000000000000ac523eb684be6e3fc5ef20a8b2328256b27d36e4", + "to": "0xef8ba8cba86f81b3108f60186fce9c81b5096d5c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4ac", + "output": "0x0000000000000000000000000000000000000000000000aba08669681a861f59" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0xbab835727e492a82495afb97af9a1dd2a2bb57ae105e840f013941d4ba8d20e9", + "transaction_position": 117, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x9a8c4bdcd75cfa1059a6e453ac5ce9d3f5c82a35", + "callType": "call", + "gas": "0x95b0", + "input": "0xa9059cbb000000000000000000000000d31785ea7c13d9db5ab78b1ee7e97801f41736c1000000000000000000000000000000000000000000000a9a653f22176de69980", + "to": "0x4e15361fd6b4bb609fa63c81a2be19d873717870", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x828f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x13e77405f87de514759d176564716d341cc176f7db276a58836c4a4cdff949c6", + "transaction_position": 118, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x534644929a8d1e2b685e408386a6ee640d96e9b1", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xcce8d59affdd93be338fc77fa0a298c2cb65da59", + "value": "0x2780aeb46a5d500" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x3d13bc752dbc14f9d4a86e9bec1cf77d77a8945dc79e246dc3d0dcfd9ab0cb2b", + "transaction_position": 119, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x32eac51f54c02502415a89c34bd7d1bce345daae", + "callType": "call", + "gas": "0x95bc", + "input": "0xa9059cbb000000000000000000000000539aad6e7fee79e36a8576111eb8658c9e1f627d000000000000000000000000000000000000000000000009f95038e30ecea9da", + "to": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x38bd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xd620e4dead830048f17ac4d3446a0fa9f394bbd54fb31bf2a04c1857a3af686f", + "transaction_position": 120, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x00000000c0293c8ca34dac9bcc0f953532d34e4d", + "callType": "call", + "gas": "0xa7a0", + "input": "0xca722cdc469ba25316075034ae9523883b836bfa33762bcf17233a84a41f9a7357e59fa8cbd48253b124a85b4459e02391f9df6707046c3ff1a7afba5864ac519422bbad", + "to": "0xd1ceeeeee83f8bcf3bedad437202b6154e9f5405", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x688e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x08dc17763bb9fbe95238ed2ef265b8d3a30d335cdd62eecd2653b725cbe6da64", + "transaction_position": 121, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd1ceeeeee83f8bcf3bedad437202b6154e9f5405", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xc6c9a9559aa224caf7e0f7a8a4d4962517efcfba", + "value": "0x23b1945f7a4e0000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x08dc17763bb9fbe95238ed2ef265b8d3a30d335cdd62eecd2653b725cbe6da64", + "transaction_position": 121, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x781cfc5e2c30af27b83b2c5b62896f031d74ea34", + "callType": "call", + "gas": "0x10af8", + "input": "0xa9059cbb000000000000000000000000e93381fb4c4f14bda253907b18fad305d799241a00000000000000000000000000000000000000000000007d0f0f5f45434c8000", + "to": "0xca1207647ff814039530d7d35df0e1dd2e91fa84", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x43ac", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xfc6b2591687ef437b387943edf8c4c0f06cec078e86fe4ccb2ec135091d1740b", + "transaction_position": 122, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xca1207647ff814039530d7d35df0e1dd2e91fa84", + "callType": "delegatecall", + "gas": "0xfc4e", + "input": "0xa9059cbb000000000000000000000000e93381fb4c4f14bda253907b18fad305d799241a00000000000000000000000000000000000000000000007d0f0f5f45434c8000", + "to": "0x50a6b25101173b41e41c1a30a5bae42f213b2687", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x38da", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xfc6b2591687ef437b387943edf8c4c0f06cec078e86fe4ccb2ec135091d1740b", + "transaction_position": 122, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf68eaf47855375ab83e89cd029d62b047a277a22", + "callType": "call", + "gas": "0x10aec", + "input": "0xa9059cbb000000000000000000000000e93381fb4c4f14bda253907b18fad305d799241a000000000000000000000000000000000000000000000110d8c894bb9a3ba400", + "to": "0xca1207647ff814039530d7d35df0e1dd2e91fa84", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x43ac", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xbe2d1193cc01138bc62749c0b7687b15aa52b3d0609c03a11451e2342098ecb8", + "transaction_position": 123, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xca1207647ff814039530d7d35df0e1dd2e91fa84", + "callType": "delegatecall", + "gas": "0xfc42", + "input": "0xa9059cbb000000000000000000000000e93381fb4c4f14bda253907b18fad305d799241a000000000000000000000000000000000000000000000110d8c894bb9a3ba400", + "to": "0x50a6b25101173b41e41c1a30a5bae42f213b2687", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x38da", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xbe2d1193cc01138bc62749c0b7687b15aa52b3d0609c03a11451e2342098ecb8", + "transaction_position": 123, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc42d4347c44a759fabfe9a773c68899c740ced0a", + "callType": "call", + "gas": "0x10a8d", + "input": "0xa9059cbb000000000000000000000000b47f1dffe7c73b6a3a3898d77791f8058c9755d20000000000000000000000000000000000000000000000000000000077912180", + "to": "0x829aa8e3455d0d6f18ed46121a64268ca0782465", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5aed", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x987fbefd3be69040508e74ebf255ee7549f8086954f64dc73d39737fcaf789fb", + "transaction_position": 124, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc935d8381ad021a2c142eec4e792700fc56c9b8e", + "callType": "call", + "gas": "0x95ec", + "input": "0xa9059cbb0000000000000000000000003ac26b127c54575ece71ff0dca3f6d7f06b5d60100000000000000000000000000000000000000000000000000000016e8ae0840", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x8bb69626d581955598943b67518a9b45e53ff8c096b56506d2d1887a982a7466", + "transaction_position": 125, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x15d71c6095faa45fb4e7883f0e7077a7a741e453", + "callType": "call", + "gas": "0x9604", + "input": "0xa9059cbb000000000000000000000000a3cd1539cc8cbf8f369f221b275a04ae09d8a01a000000000000000000000000000000000000000000000000000000003b9aca00", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x13e07985deb8fbe59f192062cb06c0c026b6721c441f52ff28b86fbf44ca6f79", + "transaction_position": 126, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd0b8e4c6416ddab6063c9decfede250b42509768", + "callType": "call", + "gas": "0x3a61", + "input": "0xa9059cbb0000000000000000000000000211f3cedbef3143223d3acf0e589747933e852700000000000000000000000000000000000000000000000c8c80273dc6a3240f", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3a61", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xce7720cae6393bf63472f14888b4330ef4a88b4a08d175596765b75cd761e719", + "transaction_position": 127, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc659b16ca4e4330840be3cd7e3cca11b964b6586", + "callType": "call", + "gas": "0x1ed35", + "input": "0x7ff36ab5000000000000000000000000000000000000000000000017a3d33c62bd8c9eda0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c659b16ca4e4330840be3cd7e3cca11b964b6586000000000000000000000000000000000000000000000000000000005f6be4ef0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000087b008e57f640d94ee44fd893f0323af933f9195", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0xde0b6b3a7640000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1b0aa", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000001c5e30aedce3758b6c" + }, + "subtraces": 4, + "trace_address": [], + "transaction_hash": "0x1638eef95ea9f68d2acc3092d3a0bcd450deef0d25ccdb2a36198df79fe36bd5", + "transaction_position": 128, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1d807", + "input": "0x0902f1ac", + "to": "0xcce852e473ecfdebfd6d3fd5bae9e964fd2a3fa7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000002312b32d5dc3174ba4530000000000000000000000000000000000000000000000110d6dbb6b28eab696000000000000000000000000000000000000000000000000000000005f6be391" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x1638eef95ea9f68d2acc3092d3a0bcd450deef0d25ccdb2a36198df79fe36bd5", + "transaction_position": 128, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1af47", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0xde0b6b3a7640000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5892", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x1638eef95ea9f68d2acc3092d3a0bcd450deef0d25ccdb2a36198df79fe36bd5", + "transaction_position": 128, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x14ebe", + "input": "0xa9059cbb000000000000000000000000cce852e473ecfdebfd6d3fd5bae9e964fd2a3fa70000000000000000000000000000000000000000000000000de0b6b3a7640000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x1638eef95ea9f68d2acc3092d3a0bcd450deef0d25ccdb2a36198df79fe36bd5", + "transaction_position": 128, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x117fb", + "input": "0x022c0d9f00000000000000000000000000000000000000000000001c5e30aedce3758b6c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c659b16ca4e4330840be3cd7e3cca11b964b658600000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xcce852e473ecfdebfd6d3fd5bae9e964fd2a3fa7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xde19", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 3 + ], + "transaction_hash": "0x1638eef95ea9f68d2acc3092d3a0bcd450deef0d25ccdb2a36198df79fe36bd5", + "transaction_position": 128, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xcce852e473ecfdebfd6d3fd5bae9e964fd2a3fa7", + "callType": "call", + "gas": "0xebb7", + "input": "0xa9059cbb000000000000000000000000c659b16ca4e4330840be3cd7e3cca11b964b658600000000000000000000000000000000000000000000001c5e30aedce3758b6c", + "to": "0x87b008e57f640d94ee44fd893f0323af933f9195", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3c34", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x1638eef95ea9f68d2acc3092d3a0bcd450deef0d25ccdb2a36198df79fe36bd5", + "transaction_position": 128, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xcce852e473ecfdebfd6d3fd5bae9e964fd2a3fa7", + "callType": "staticcall", + "gas": "0xa969", + "input": "0x70a08231000000000000000000000000cce852e473ecfdebfd6d3fd5bae9e964fd2a3fa7", + "to": "0x87b008e57f640d94ee44fd893f0323af933f9195", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4a4", + "output": "0x0000000000000000000000000000000000000000000022f654fcaee633d618e7" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0x1638eef95ea9f68d2acc3092d3a0bcd450deef0d25ccdb2a36198df79fe36bd5", + "transaction_position": 128, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xcce852e473ecfdebfd6d3fd5bae9e964fd2a3fa7", + "callType": "staticcall", + "gas": "0x9ea5", + "input": "0x70a08231000000000000000000000000cce852e473ecfdebfd6d3fd5bae9e964fd2a3fa7", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000000111b4e721ed04eb696" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0x1638eef95ea9f68d2acc3092d3a0bcd450deef0d25ccdb2a36198df79fe36bd5", + "transaction_position": 128, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd99c4d61f385327ec94beb52244166003287c1ad", + "callType": "call", + "gas": "0xb2fe", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x3f382dbd960e3a9bbceae22651e88158d2791550", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x9aee", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x7d1bee77a81394967af380b2f541b595bebe089e722693903d334f8768e85d7f", + "transaction_position": 129, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3f382dbd960e3a9bbceae22651e88158d2791550", + "callType": "call", + "gas": "0x990b", + "input": "0xda682aeb000000000000000000000000d99c4d61f385327ec94beb52244166003287c1ad0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xf0cc626f04f0149f1f4ad3746b2589d6fa198b45", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ce3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "trace_address": [ + 0 + ], + "transaction_hash": "0x7d1bee77a81394967af380b2f541b595bebe089e722693903d334f8768e85d7f", + "transaction_position": 129, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf0cc626f04f0149f1f4ad3746b2589d6fa198b45", + "callType": "call", + "gas": "0x8907", + "input": "0xbe00bbd8f1f3eb40f5bc1ad1344716ced8b8a0431d840b5783aea1fd01786bc26f35ac0f6b20a3010614eeebf2138ccec99f028a61c811b3b1a3343b6ff635985c75c91f", + "to": "0x054086d40cf8fd5bf6200eda7f9c6877b0302dd1", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x110b", + "output": "0x000000000000000000000000de3a93028f2283cc28756b3674bd657eafb992f4" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x7d1bee77a81394967af380b2f541b595bebe089e722693903d334f8768e85d7f", + "transaction_position": 129, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x054086d40cf8fd5bf6200eda7f9c6877b0302dd1", + "callType": "delegatecall", + "gas": "0x59d1", + "input": "0xbe00bbd8f1f3eb40f5bc1ad1344716ced8b8a0431d840b5783aea1fd01786bc26f35ac0f6b20a3010614eeebf2138ccec99f028a61c811b3b1a3343b6ff635985c75c91f", + "to": "0x2b33cf282f867a7ff693a66e11b0fcc5552e4425", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5f0", + "output": "0x000000000000000000000000de3a93028f2283cc28756b3674bd657eafb992f4" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0x7d1bee77a81394967af380b2f541b595bebe089e722693903d334f8768e85d7f", + "transaction_position": 129, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf0cc626f04f0149f1f4ad3746b2589d6fa198b45", + "callType": "delegatecall", + "gas": "0x4eb0", + "input": "0xda682aeb000000000000000000000000d99c4d61f385327ec94beb52244166003287c1ad0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xde3a93028f2283cc28756b3674bd657eafb992f4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x6a3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x7d1bee77a81394967af380b2f541b595bebe089e722693903d334f8768e85d7f", + "transaction_position": 129, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x27b77419682e8ff5c992c8663e3d3bfe8971256a", + "callType": "call", + "gas": "0x1f8a3", + "input": "0x18cbafe5000000000000000000000000000000000000000000000002f04d1391cb8da1a60000000000000000000000000000000000000000000000000a1bcb2f0194aef300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000027b77419682e8ff5c992c8663e3d3bfe8971256a000000000000000000000000000000000000000000000000000000005f6be8eb00000000000000000000000000000000000000000000000000000000000000020000000000000000000000001f9840a85d5af5bf1d1762f925bdaddc4201f984000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1ea27", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000002f04d1391cb8da1a60000000000000000000000000000000000000000000000000a28d84b52335413" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0xac24ac76e1f96bab8fad61567a79aeb5b11dab71ce6937a28fc97a3d3bff8b4c", + "transaction_position": 130, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1e319", + "input": "0x0902f1ac", + "to": "0xd3d2e2692501a5c9ca623199d38826e513033a17", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000041c5aa990cd2c34d39505000000000000000000000000000000000000000000000e412bdad676a883f19a000000000000000000000000000000000000000000000000000000005f6be453" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xac24ac76e1f96bab8fad61567a79aeb5b11dab71ce6937a28fc97a3d3bff8b4c", + "transaction_position": 130, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1d15e", + "input": "0x23b872dd00000000000000000000000027b77419682e8ff5c992c8663e3d3bfe8971256a000000000000000000000000d3d2e2692501a5c9ca623199d38826e513033a17000000000000000000000000000000000000000000000002f04d1391cb8da1a6", + "to": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4e8f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xac24ac76e1f96bab8fad61567a79aeb5b11dab71ce6937a28fc97a3d3bff8b4c", + "transaction_position": 130, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x176db", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a28d84b523354130000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xd3d2e2692501a5c9ca623199d38826e513033a17", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x118ec", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2 + ], + "transaction_hash": "0xac24ac76e1f96bab8fad61567a79aeb5b11dab71ce6937a28fc97a3d3bff8b4c", + "transaction_position": 130, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd3d2e2692501a5c9ca623199d38826e513033a17", + "callType": "call", + "gas": "0x148fd", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000a28d84b52335413", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x75d2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0xac24ac76e1f96bab8fad61567a79aeb5b11dab71ce6937a28fc97a3d3bff8b4c", + "transaction_position": 130, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd3d2e2692501a5c9ca623199d38826e513033a17", + "callType": "staticcall", + "gas": "0xce0b", + "input": "0x70a08231000000000000000000000000d3d2e2692501a5c9ca623199d38826e513033a17", + "to": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5d9", + "output": "0x000000000000000000000000000000000000000000041c5d99dde0be006136ab" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1 + ], + "transaction_hash": "0xac24ac76e1f96bab8fad61567a79aeb5b11dab71ce6937a28fc97a3d3bff8b4c", + "transaction_position": 130, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd3d2e2692501a5c9ca623199d38826e513033a17", + "callType": "staticcall", + "gas": "0xc217", + "input": "0x70a08231000000000000000000000000d3d2e2692501a5c9ca623199d38826e513033a17", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000000e4121b1fe2b56509d87" + }, + "subtraces": 0, + "trace_address": [ + 2, + 2 + ], + "transaction_hash": "0xac24ac76e1f96bab8fad61567a79aeb5b11dab71ce6937a28fc97a3d3bff8b4c", + "transaction_position": 130, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x5bbb", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000000a28d84b52335413", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2e93", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 3 + ], + "transaction_hash": "0xac24ac76e1f96bab8fad61567a79aeb5b11dab71ce6937a28fc97a3d3bff8b4c", + "transaction_position": 130, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0xa28d84b52335413" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x53", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0xac24ac76e1f96bab8fad61567a79aeb5b11dab71ce6937a28fc97a3d3bff8b4c", + "transaction_position": 130, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1002", + "input": "0x", + "to": "0x27b77419682e8ff5c992c8663e3d3bfe8971256a", + "value": "0xa28d84b52335413" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0xac24ac76e1f96bab8fad61567a79aeb5b11dab71ce6937a28fc97a3d3bff8b4c", + "transaction_position": 130, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xffec0067f5a79cff07527f63d83dd5462ccf8ba4", + "callType": "call", + "gas": "0x1815a4", + "input": "0xa9059cbb000000000000000000000000d7b1ab60b1e7e3e84691148eaa7261b9fc7fb304000000000000000000000000000000000000000000000000000000003b9aca00", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8bbd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x390dd9a5161844112bb66edb187e366533cc2c9c7b77e85f8b964e7b55147327", + "transaction_position": 131, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x17aac0", + "input": "0xa9059cbb000000000000000000000000d7b1ab60b1e7e3e84691148eaa7261b9fc7fb304000000000000000000000000000000000000000000000000000000003b9aca00", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x80d8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x390dd9a5161844112bb66edb187e366533cc2c9c7b77e85f8b964e7b55147327", + "transaction_position": 131, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x03596a5ac91e97fc7ee6e4d7088683fe4b179dfd", + "callType": "call", + "gas": "0x6d60", + "input": "0x", + "to": "0x2a69cc67f659e1d634fc92abba8de6a193403a0b", + "value": "0x55b7f1e1401cf5e0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xc7b6ec527a4a28fb180c9ce9b40868e68d7e423f0fc2bf84108ab6b85b39832a", + "transaction_position": 132, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x03596a5ac91e97fc7ee6e4d7088683fe4b179dfd", + "callType": "call", + "gas": "0x6d60", + "input": "0x", + "to": "0x2a69cc67f659e1d634fc92abba8de6a193403a0b", + "value": "0x2a6f64e40c587160" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x294ccd0b61a490653e1fd1f27eb02f57bd0e606cad18bb35987b9ad10bf0366b", + "transaction_position": 133, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf687bfa503376e088c6032cd277eebdf19af4c7d", + "callType": "call", + "gas": "0x74878", + "input": "0x4ab0d19065d851c66b23bffe7334f7b5969348d4f82f1541231f84ad8047c6c8015a8280000000000000000000000000000000000000000000000000089aaeb710be00000000000000000000000000001eeaf25f2ecbcaf204ecadc8db7b0db9da8453276a9705b400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005f6be57f0000000000000000000000000000000000000000000000000004f69068c05000", + "to": "0x85aeace84a130bc1accce2a9f4f933f6765b0b9b", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x166c9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xdd3ce0abef2a5f2f135c7625fbb85eff7bbf1688f52dbf3e7874515e4ddeff6f", + "transaction_position": 134, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x85aeace84a130bc1accce2a9f4f933f6765b0b9b", + "callType": "call", + "gas": "0x6eee5", + "input": "0x6a9705b465d851c66b23bffe7334f7b5969348d4f82f1541231f84ad8047c6c8015a82800000000000000000000000000000000000000000000000000004f69068c05000", + "to": "0x1eeaf25f2ecbcaf204ecadc8db7b0db9da845327", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1290b", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xdd3ce0abef2a5f2f135c7625fbb85eff7bbf1688f52dbf3e7874515e4ddeff6f", + "transaction_position": 134, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc8edaa481a69ad8d90f4d310810d1d389c8f639a", + "callType": "call", + "gas": "0x5208", + "input": "0x", + "to": "0xb4722fd211680151ce4e238b00ccbe684d059708", + "value": "0x853a0d2313c0000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x9e4fe8540c07cb34b6db35cada620b11461de26731ab7e46a010d804954fe3cc", + "transaction_position": 135, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb26314635252b4ee8b454423e5299a092dea8a4a", + "callType": "call", + "gas": "0x100fe", + "input": "0xa9059cbb00000000000000000000000050d24b505ba556722d5b9c2031f0f77a7393a65e000000000000000000000000000000000000000000000012f5492161085ce000", + "to": "0x0d8775f648430679a709e98d2b0cb6250d2887ef", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x76bc", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xf689950e95133e3b37459ab3624a6592f7d22a1da1d3972c35b4c686424ad220", + "transaction_position": 136, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa9c7d31bb1879bff8be25ead2f59b310a52b7c5a", + "callType": "call", + "gas": "0x18028", + "input": "0xa9059cbb000000000000000000000000b8001c3ec9aa1985f6c747e25c28324e4a361ec100000000000000000000000000000000000000000000207d2f1bdb951e53a800", + "to": "0x7e9e431a0b8c4d532c745b1043c7fa29a48d4fba", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": null, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x7488379b2a307807ea2657ff193225b2409f06cb4bb22c1d88a94dcca60bf50d", + "transaction_position": 137, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "from": "0xb37a0100f2fb55bc6f8bd5bf3f08873e92b62a19", + "callType": "call", + "gas": "0x5208", + "input": "0x", + "to": "0x3ebcf7f093b5b0f9a005be0b503dfdb982a042a1", + "value": "0x35b5f7e0a5b38d0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x6a7fc1ba67c331db4dd89e8f33ee8ba220496784e42af358496f0ece279d4d62", + "transaction_position": 138, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd1d5da437bafabd4faf2eccd1973928373b42261", + "callType": "call", + "gas": "0x9604", + "input": "0xa9059cbb000000000000000000000000551fe2b155823da8722e0df9d3cbdfa53253624700000000000000000000000000000000000000000000000000000000446d1700", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x5632ab025fcf2c167358b1f76b4af97f9c8f9224263c7f210d7518ffef8dc05e", + "transaction_position": 139, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf975e65e4bf9be4a1f49dbd403d5bbbe2dcaff63", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x791963328239fa7bd763d5e275afd6707f1d7861", + "value": "0x2c68af0bb140000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x0692d68ea00f94144820d190c47909766ec8488ba217844c9808ba3ad5eb10b3", + "transaction_position": 140, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x61af7c11db9ae32edd532dc87ecfd04b76c07fa7", + "callType": "call", + "gas": "0x95ec", + "input": "0xa9059cbb00000000000000000000000014a20b334ee94d0edb37a3708ce0a0104700deb5000000000000000000000000000000000000000000000014d1120d7b16000000", + "to": "0x2e4d380052c2db43cbed951e511db84aaa1b3c6e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x733c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xddacfa70bcbc2e3bca00c0c4398fb8a0f8f88ffb8f850fe1bba73881f17da15c", + "transaction_position": 141, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x42a7aa8f4371ac446ee73893eb57a4a26eba1a57", + "callType": "call", + "gas": "0x3101", + "input": "0x", + "to": "0x75202a27c4d5285f0a2428560b954f17489189b7", + "value": "0x6f05b59d3b20000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3101", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x485ed926a3a9ea5956a33d9daa1941c9332c1efbbc60e444335a3e508e787e15", + "transaction_position": 142, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x75202a27c4d5285f0a2428560b954f17489189b7", + "callType": "call", + "gas": "0x1006", + "input": "0x", + "to": "0xbf0c5d82748ed81b5794e59055725579911e3e4e", + "value": "0x6f05b59d3b20000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x823", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x485ed926a3a9ea5956a33d9daa1941c9332c1efbbc60e444335a3e508e787e15", + "transaction_position": 142, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x22a202d7f72472fb8e1dc415999aa484ee1a4b6b", + "callType": "call", + "gas": "0x9d07", + "input": "0xa9059cbb0000000000000000000000003f7499b1d75b5c8b14339680cb77c1ebae7f02d40000000000000000000000000000000000000000000000000000000035a4e900", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xb5e017dc98ed514a198d29d9aa1fdbdac95fca4ca2b9239c07c96b1ad2a27f6c", + "transaction_position": 143, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x9826c6959206b9930703993928762ea012e18f68", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x51dbda9c53da4806ac116097862ffa73caff7df1", + "value": "0x470188873023b1" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x50dbdcf2232618d7ff9707206ae775256bb68e4cde71e20c629ec8f5b01e68f3", + "transaction_position": 144, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa4a3b6ee833b473d85281ebfd585c04bdaecb298", + "callType": "call", + "gas": "0x2a79d", + "input": "0xfb3bdb410000000000000000000000000000000000000000000000000000e35fa931a0000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a4a3b6ee833b473d85281ebfd585c04bdaecb298000000000000000000000000000000000000000000000000000000005f6be8af0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000009a7a4c141a3bcce4a31e42c1192ac6add35069b4", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x6bc31ff96b39b55" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x25a5f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000006ab1fc2c2d5504b0000000000000000000000000000000000000000000000000000e35fa931a000" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0x16cb6ef1c313376e2bcd48da6d89d31afad902525b1a39082b777dfa79deba33", + "transaction_position": 145, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x28f6b", + "input": "0x0902f1ac", + "to": "0xb469899812f74ee43bffe2d2022590111da86425", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000000000016340e024d9959400000000000000000000000000000000000000000000000a5c98ae857a8a8bae000000000000000000000000000000000000000000000000000000005f6bda87" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x16cb6ef1c313376e2bcd48da6d89d31afad902525b1a39082b777dfa79deba33", + "transaction_position": 145, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x2667d", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x6ab1fc2c2d5504b" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5892", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x16cb6ef1c313376e2bcd48da6d89d31afad902525b1a39082b777dfa79deba33", + "transaction_position": 145, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x205f5", + "input": "0xa9059cbb000000000000000000000000b469899812f74ee43bffe2d2022590111da8642500000000000000000000000000000000000000000000000006ab1fc2c2d5504b", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x16cb6ef1c313376e2bcd48da6d89d31afad902525b1a39082b777dfa79deba33", + "transaction_position": 145, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1cf31", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000e35fa931a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4a3b6ee833b473d85281ebfd585c04bdaecb29800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xb469899812f74ee43bffe2d2022590111da86425", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1688b", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 3 + ], + "transaction_hash": "0x16cb6ef1c313376e2bcd48da6d89d31afad902525b1a39082b777dfa79deba33", + "transaction_position": 145, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb469899812f74ee43bffe2d2022590111da86425", + "callType": "call", + "gas": "0x1a010", + "input": "0xa9059cbb000000000000000000000000a4a3b6ee833b473d85281ebfd585c04bdaecb2980000000000000000000000000000000000000000000000000000e35fa931a000", + "to": "0x9a7a4c141a3bcce4a31e42c1192ac6add35069b4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xc645", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x16cb6ef1c313376e2bcd48da6d89d31afad902525b1a39082b777dfa79deba33", + "transaction_position": 145, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb469899812f74ee43bffe2d2022590111da86425", + "callType": "staticcall", + "gas": "0xd5da", + "input": "0x70a08231000000000000000000000000b469899812f74ee43bffe2d2022590111da86425", + "to": "0x9a7a4c141a3bcce4a31e42c1192ac6add35069b4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x505", + "output": "0x00000000000000000000000000000000000000000000000001625d807ba7f594" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0x16cb6ef1c313376e2bcd48da6d89d31afad902525b1a39082b777dfa79deba33", + "transaction_position": 145, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb469899812f74ee43bffe2d2022590111da86425", + "callType": "staticcall", + "gas": "0xcab6", + "input": "0x70a08231000000000000000000000000b469899812f74ee43bffe2d2022590111da86425", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x00000000000000000000000000000000000000000000000a6343ce483d5fdbf9" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0x16cb6ef1c313376e2bcd48da6d89d31afad902525b1a39082b777dfa79deba33", + "transaction_position": 145, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x4dc7", + "input": "0x", + "to": "0xa4a3b6ee833b473d85281ebfd585c04bdaecb298", + "value": "0x11123cd3de4b0a" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x16cb6ef1c313376e2bcd48da6d89d31afad902525b1a39082b777dfa79deba33", + "transaction_position": 145, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x55e32598a1f00d9dbd5dece3e79a5c50fdcb8de9", + "callType": "call", + "gas": "0x74bf8", + "input": "0x2da0340900000000000000000000000091842c21f2fb8d614042c1b9d4565c3d900bcfd2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x23b88d66fa8df792fa1d607b559414c0fda61b6a", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8800", + "output": "0x2da0340900000000000000000000000091842c21f2fb8d614042c1b9d4565c3d" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x0c9aad8afb31d66492c8988e0402d90bf787cf8e3c0c47da5e39d83235d33c46", + "transaction_position": 146, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x23b88d66fa8df792fa1d607b559414c0fda61b6a", + "callType": "delegatecall", + "gas": "0x72be5", + "input": "0x2da0340900000000000000000000000091842c21f2fb8d614042c1b9d4565c3d900bcfd2000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x5b9e8728e316bbeb692d22daaab74f6cbf2c4691", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x84f7", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x0c9aad8afb31d66492c8988e0402d90bf787cf8e3c0c47da5e39d83235d33c46", + "transaction_position": 146, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x23b88d66fa8df792fa1d607b559414c0fda61b6a", + "callType": "call", + "gas": "0x6e690", + "input": "0x3ef13367000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", + "to": "0x91842c21f2fb8d614042c1b9d4565c3d900bcfd2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5b80", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x0c9aad8afb31d66492c8988e0402d90bf787cf8e3c0c47da5e39d83235d33c46", + "transaction_position": 146, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x91842c21f2fb8d614042c1b9d4565c3d900bcfd2", + "callType": "call", + "gas": "0x6bf86", + "input": "0x70a0823100000000000000000000000091842c21f2fb8d614042c1b9d4565c3d900bcfd2", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x54b", + "output": "0x00000000000000000000000000000000000000000000000ad78ebc5ac6200000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0x0c9aad8afb31d66492c8988e0402d90bf787cf8e3c0c47da5e39d83235d33c46", + "transaction_position": 146, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x91842c21f2fb8d614042c1b9d4565c3d900bcfd2", + "callType": "call", + "gas": "0x6b014", + "input": "0xa9059cbb00000000000000000000000023b88d66fa8df792fa1d607b559414c0fda61b6a00000000000000000000000000000000000000000000000ad78ebc5ac6200000", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3a61", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 1 + ], + "transaction_hash": "0x0c9aad8afb31d66492c8988e0402d90bf787cf8e3c0c47da5e39d83235d33c46", + "transaction_position": 146, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc34a2d428f00b22aa15940d9e839512e2a2b1443", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x69ae0b74d23a741a25a6e997de6418f374a0cf4d", + "value": "0x2eb4b3f918fc00" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x539154f50b41095a69d99a7e531a409ce6711230bdded84513b625e50008e27f", + "transaction_position": 147, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1a776c84d64ecada985c968c3589b3c8615a1e7c", + "callType": "call", + "gas": "0x2b788", + "input": "0x095ea7b3000000000000000000000000ee9156c93ebb836513968f92b4a67721f3cea08affffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x6cdb", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x69e1524be311eb441b1c7111bcb7a303bf1c1863dc42d48a27cdbbbaea276114", + "transaction_position": 148, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x2a21c", + "input": "0x095ea7b3000000000000000000000000ee9156c93ebb836513968f92b4a67721f3cea08affffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x61f6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x69e1524be311eb441b1c7111bcb7a303bf1c1863dc42d48a27cdbbbaea276114", + "transaction_position": 148, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x584a38ef69915b36f08d711f1c8dbf41b3094959", + "callType": "call", + "gas": "0xa974", + "input": "0xa9059cbb00000000000000000000000088c255dca418adf94cfb5cf0f4da6b8c7324d57700000000000000000000000000000000000000000000000000000001dce82f4d", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xf6e9aa8e675bf22538e5f435cae677e8a8fac1b844c6d568fc74fb82e5b7eeab", + "transaction_position": 149, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8e1737b9de00bb644c2d4d0264177ba8cbf47391", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x69ae0b74d23a741a25a6e997de6418f374a0cf4d", + "value": "0x2eb582ba05ac00" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xc90569e2c148691f426484d450cddb43d958f7ad402ed6ae0dc0647243c8b131", + "transaction_position": 150, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf469edf62477a96e2f34f1073368c1438af3eba8", + "callType": "call", + "gas": "0xb386", + "input": "0x095ea7b3000000000000000000000000e4c9194962532feb467dce8b3d42419641c6ed2effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5b1c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x030f0876122bf9d2ebc9637568f3f02ab5968cf66338f5abed535a5b21cc0e36", + "transaction_position": 151, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xece09813018e688d9555a06d2c0ac4aa6b82f08e", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x69ae0b74d23a741a25a6e997de6418f374a0cf4d", + "value": "0x2eb4b3f918fc00" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xa88b17e7804065a9afd888ec54b40dd0988086979c8b65cbcc7c63f2beb493bc", + "transaction_position": 152, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x88703548812ce1923bc99521f65ce5d8e5497284", + "callType": "call", + "gas": "0xf4f1", + "input": "0xa9059cbb000000000000000000000000b5357064906d93310555db9cb0502cd389c3cef7000000000000000000000000000000000000000000000000000000000df28e80", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x085e0aaf3cca64dd7e9e8fda3210b40d2d3f2ce41cde094af8986ad0df4c72eb", + "transaction_position": 153, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb37a00813366017005fef010a3e4e228e2218671", + "callType": "call", + "gas": "0xbd25", + "input": "0x095ea7b300000000000000000000000009fe5f0236f0ea5d930197dce254d77b0412807500000000000000000000000000000000000000000000000000000000001cc7cf", + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x61fa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xcd915f504c29de63d6c35776013c18021cd4ae9925a1db7e015125bdd5e108c2", + "transaction_position": 154, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb37a00813366017005fef010a3e4e228e2218671", + "callType": "call", + "gas": "0xbd25", + "input": "0x095ea7b300000000000000000000000009fe5f0236f0ea5d930197dce254d77b0412807500000000000000000000000000000000000000000000000000000000001cd0da", + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x61fa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xef6d52940a818478956e10020ece697c2c127fea54713cbc2058bbf95a3d4fa1", + "transaction_position": 155, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb37a00813366017005fef010a3e4e228e2218671", + "callType": "call", + "gas": "0xbd25", + "input": "0x095ea7b300000000000000000000000009fe5f0236f0ea5d930197dce254d77b0412807500000000000000000000000000000000000000000000000000000000001cdca1", + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x61fa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x037cff14db0ba83c1fda9af9f6961ee5ddaad0e59bfb57658e5366961a6376f1", + "transaction_position": 156, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa415d8e8c3b1e14d8fbe76df1eed3fba19ab08e0", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xf42e50d39b68751c2ac8251ecb6a205c402647d2", + "value": "0xfc3e1fb30d8000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xe4f1f55cbf2b0a2e69e480d72c8b008f36286614ccfba26726e6bbd5c2accac9", + "transaction_position": 157, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x2906c37c1fbfc488bae2de304e09509321c4bd1b", + "callType": "call", + "gas": "0x1ea3c", + "input": "0x7ff36ab5000000000000000000000000000000000000000000000008ed600a2518bead1e00000000000000000000000000000000000000000000000000000000000000800000000000000000000000002906c37c1fbfc488bae2de304e09509321c4bd1b000000000000000000000000000000000000000000000000000000005f6be8f60000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000ab7aaf9e485a3bc885985184abe9fc6aba727bd6", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x853a0d2313c0000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1ae00", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000853a0d2313c00000000000000000000000000000000000000000000000000091b1529115bccbad2" + }, + "subtraces": 4, + "trace_address": [], + "transaction_hash": "0x0d1fc181c30c2732a4c8f625d55c9a0bbc952bacbd66264bf2bab35f8bdbea26", + "transaction_position": 158, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1d51a", + "input": "0x0902f1ac", + "to": "0x55a06945e79f2d6a14b5c4f18e8e73091e2e57d6", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x0000000000000000000000000000000000000000000006a85ab57ec2a3730965000000000000000000000000000000000000000000000006098c20e998c894f6000000000000000000000000000000000000000000000000000000005f6be43b" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x0d1fc181c30c2732a4c8f625d55c9a0bbc952bacbd66264bf2bab35f8bdbea26", + "transaction_position": 158, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1ac59", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x853a0d2313c0000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5892", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x0d1fc181c30c2732a4c8f625d55c9a0bbc952bacbd66264bf2bab35f8bdbea26", + "transaction_position": 158, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x14bd1", + "input": "0xa9059cbb00000000000000000000000055a06945e79f2d6a14b5c4f18e8e73091e2e57d60000000000000000000000000000000000000000000000000853a0d2313c0000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x0d1fc181c30c2732a4c8f625d55c9a0bbc952bacbd66264bf2bab35f8bdbea26", + "transaction_position": 158, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1150e", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000091b1529115bccbad200000000000000000000000000000000000000000000000000000000000000000000000000000000000000002906c37c1fbfc488bae2de304e09509321c4bd1b00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x55a06945e79f2d6a14b5c4f18e8e73091e2e57d6", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xdb6f", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 3 + ], + "transaction_hash": "0x0d1fc181c30c2732a4c8f625d55c9a0bbc952bacbd66264bf2bab35f8bdbea26", + "transaction_position": 158, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x55a06945e79f2d6a14b5c4f18e8e73091e2e57d6", + "callType": "call", + "gas": "0xe8d5", + "input": "0xa9059cbb0000000000000000000000002906c37c1fbfc488bae2de304e09509321c4bd1b0000000000000000000000000000000000000000000000091b1529115bccbad2", + "to": "0xab7aaf9e485a3bc885985184abe9fc6aba727bd6", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x396c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x0d1fc181c30c2732a4c8f625d55c9a0bbc952bacbd66264bf2bab35f8bdbea26", + "transaction_position": 158, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x55a06945e79f2d6a14b5c4f18e8e73091e2e57d6", + "callType": "staticcall", + "gas": "0xa945", + "input": "0x70a0823100000000000000000000000055a06945e79f2d6a14b5c4f18e8e73091e2e57d6", + "to": "0xab7aaf9e485a3bc885985184abe9fc6aba727bd6", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c2", + "output": "0x00000000000000000000000000000000000000000000069f3fa055b147a64e93" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0x0d1fc181c30c2732a4c8f625d55c9a0bbc952bacbd66264bf2bab35f8bdbea26", + "transaction_position": 158, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x55a06945e79f2d6a14b5c4f18e8e73091e2e57d6", + "callType": "staticcall", + "gas": "0x9e63", + "input": "0x70a0823100000000000000000000000055a06945e79f2d6a14b5c4f18e8e73091e2e57d6", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x00000000000000000000000000000000000000000000000611dfc1bbca0494f6" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0x0d1fc181c30c2732a4c8f625d55c9a0bbc952bacbd66264bf2bab35f8bdbea26", + "transaction_position": 158, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd052c5e8af2a2df3386e8e0bfc75cdf30fe01c26", + "callType": "call", + "gas": "0x9604", + "input": "0xa9059cbb000000000000000000000000c3a35ff694bf9ed5e713e64ad26b6dfb185baa730000000000000000000000000000000000000000000000000000000008583b00", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xa379d8bc56786567e729cc9589c001c29d74f4443263c924a4a777f1007f4aa1", + "transaction_position": 159, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf15beb85db6ec7b14e9442c8bd491cb0cf7d1e4c", + "callType": "call", + "gas": "0x1e6e4", + "input": "0xe8e33700000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f5d0fefaab749d8b14c27f0de60cc6e9e7f848d100000000000000000000000000000000000000000000000002c68af0bb140000000000000000000000000000000000000000000000000465e3a4538d56adc6f600000000000000000000000000000000000000000000000002c2fd72164d80000000000000000000000000000000000000000000000004604280f1dab63ed40b000000000000000000000000f15beb85db6ec7b14e9442c8bd491cb0cf7d1e4c000000000000000000000000000000000000000000000000000000005f6be8f6", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1a9fd", + "output": "0x00000000000000000000000000000000000000000000000002c68af0bb140000000000000000000000000000000000000000000000000465e3a4538d56adc6f6000000000000000000000000000000000000000000000002f7876a64e12e3d26" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0xff29b7d49444cbcb9a55c397190e09e42ebfcbdad9f02008b631ab0f9a828cb0", + "transaction_position": 160, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1d78c", + "input": "0xe6a43905000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f5d0fefaab749d8b14c27f0de60cc6e9e7f848d1", + "to": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4f0", + "output": "0x00000000000000000000000022dd2b8985a9288341af1265b7a95d00e6d2126e" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xff29b7d49444cbcb9a55c397190e09e42ebfcbdad9f02008b631ab0f9a828cb0", + "transaction_position": 160, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1c948", + "input": "0x0902f1ac", + "to": "0x22dd2b8985a9288341af1265b7a95d00e6d2126e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000000003aee74543b17bafe200000000000000000000000000000000000000000005d6136e6e0d084b281538000000000000000000000000000000000000000000000000000000005f6bdd0b" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xff29b7d49444cbcb9a55c397190e09e42ebfcbdad9f02008b631ab0f9a828cb0", + "transaction_position": 160, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1ba37", + "input": "0x23b872dd000000000000000000000000f15beb85db6ec7b14e9442c8bd491cb0cf7d1e4c00000000000000000000000022dd2b8985a9288341af1265b7a95d00e6d2126e00000000000000000000000000000000000000000000000002c68af0bb140000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3e99", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0xff29b7d49444cbcb9a55c397190e09e42ebfcbdad9f02008b631ab0f9a828cb0", + "transaction_position": 160, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x17634", + "input": "0x23b872dd000000000000000000000000f15beb85db6ec7b14e9442c8bd491cb0cf7d1e4c00000000000000000000000022dd2b8985a9288341af1265b7a95d00e6d2126e000000000000000000000000000000000000000000000465e3a4538d56adc6f6", + "to": "0xf5d0fefaab749d8b14c27f0de60cc6e9e7f848d1", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5960", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3 + ], + "transaction_hash": "0xff29b7d49444cbcb9a55c397190e09e42ebfcbdad9f02008b631ab0f9a828cb0", + "transaction_position": 160, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1174a", + "input": "0x6a627842000000000000000000000000f15beb85db6ec7b14e9442c8bd491cb0cf7d1e4c", + "to": "0x22dd2b8985a9288341af1265b7a95d00e6d2126e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xde05", + "output": "0x000000000000000000000000000000000000000000000002f7876a64e12e3d26" + }, + "subtraces": 3, + "trace_address": [ + 4 + ], + "transaction_hash": "0xff29b7d49444cbcb9a55c397190e09e42ebfcbdad9f02008b631ab0f9a828cb0", + "transaction_position": 160, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x22dd2b8985a9288341af1265b7a95d00e6d2126e", + "callType": "staticcall", + "gas": "0xef12", + "input": "0x70a0823100000000000000000000000022dd2b8985a9288341af1265b7a95d00e6d2126e", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000000003b1add0346c8fafe2" + }, + "subtraces": 0, + "trace_address": [ + 4, + 0 + ], + "transaction_hash": "0xff29b7d49444cbcb9a55c397190e09e42ebfcbdad9f02008b631ab0f9a828cb0", + "transaction_position": 160, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x22dd2b8985a9288341af1265b7a95d00e6d2126e", + "callType": "staticcall", + "gas": "0xe101", + "input": "0x70a0823100000000000000000000000022dd2b8985a9288341af1265b7a95d00e6d2126e", + "to": "0xf5d0fefaab749d8b14c27f0de60cc6e9e7f848d1", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4fe", + "output": "0x00000000000000000000000000000000000000000005da7952126095a1d5dc2e" + }, + "subtraces": 0, + "trace_address": [ + 4, + 1 + ], + "transaction_hash": "0xff29b7d49444cbcb9a55c397190e09e42ebfcbdad9f02008b631ab0f9a828cb0", + "transaction_position": 160, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x22dd2b8985a9288341af1265b7a95d00e6d2126e", + "callType": "staticcall", + "gas": "0xd1fa", + "input": "0x017e7e58", + "to": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3f6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 4, + 2 + ], + "transaction_hash": "0xff29b7d49444cbcb9a55c397190e09e42ebfcbdad9f02008b631ab0f9a828cb0", + "transaction_position": 160, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1ec679e630849a75e50bb4e009c063db0474b6f2", + "callType": "call", + "gas": "0x7ac60", + "input": "0xc89e4361fc90fac785b6cd79a83351ef80922bb484431e8d689c49c00000000000000000000000000000000000000000000000005a9b83b81749982503000f795065dcc9f64b5614c407a6efdc400da6221fb06b3595068778dd592e39a122f4f5a5cf09c90fe2000f812dcbf51f5a7a000df6e7aaa8557290fd41cf41042afd3869a47e2d5d42cc787d5c9e19df32185f000fdc61511da969a32a29da5464d1bc71c546ac7578000000000000000000000000000000000000000016", + "to": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x718a", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x1a64d8ae05ace2f163fb065f656b4dcba27caeccb05e4d3c3d9d41b8bb8ec9e3", + "transaction_position": 161, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "callType": "delegatecall", + "gas": "0x782ef", + "input": "0x689c49c00000000000000000000000000000000000000000000000005a9b83b81749982503000f795065dcc9f64b5614c407a6efdc400da6221fb06b3595068778dd592e39a122f4f5a5cf09c90fe2000f812dcbf51f5a7a000df6e7aaa8557290fd41cf41042afd3869a47e2d5d42cc787d5c9e19df32185f000fdc61511da969a32a29da5464d1bc71c546ac7578000000000000000000000000000000000000000016", + "to": "0xfc90fac785b6cd79a83351ef80922bb484431e8d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x6687", + "output": "0x" + }, + "subtraces": 6, + "trace_address": [ + 0 + ], + "transaction_hash": "0x1a64d8ae05ace2f163fb065f656b4dcba27caeccb05e4d3c3d9d41b8bb8ec9e3", + "transaction_position": 161, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "callType": "staticcall", + "gas": "0x7575a", + "input": "0x0dfe1681", + "to": "0x795065dcc9f64b5614c407a6efdc400da6221fb0", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x47d", + "output": "0x0000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe2" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x1a64d8ae05ace2f163fb065f656b4dcba27caeccb05e4d3c3d9d41b8bb8ec9e3", + "transaction_position": 161, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "callType": "staticcall", + "gas": "0x74c07", + "input": "0x0902f1ac", + "to": "0x795065dcc9f64b5614c407a6efdc400da6221fb0", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c1", + "output": "0x00000000000000000000000000000000000000000014d68aceae65ec5d88ea7e0000000000000000000000000000000000000000000015091c94dab26ed907cc000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x1a64d8ae05ace2f163fb065f656b4dcba27caeccb05e4d3c3d9d41b8bb8ec9e3", + "transaction_position": 161, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "callType": "staticcall", + "gas": "0x73796", + "input": "0x0dfe1681", + "to": "0x812dcbf51f5a7a000df6e7aaa8557290fd41cf41", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x47d", + "output": "0x000000000000000000000000042afd3869a47e2d5d42cc787d5c9e19df32185f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0x1a64d8ae05ace2f163fb065f656b4dcba27caeccb05e4d3c3d9d41b8bb8ec9e3", + "transaction_position": 161, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "callType": "staticcall", + "gas": "0x72c44", + "input": "0x0902f1ac", + "to": "0x812dcbf51f5a7a000df6e7aaa8557290fd41cf41", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c1", + "output": "0x00000000000000000000000000000000000000000000101c5ec9851f0ed98eb60000000000000000000000000000000000000000000008e14fe60cd422eb220f000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3 + ], + "transaction_hash": "0x1a64d8ae05ace2f163fb065f656b4dcba27caeccb05e4d3c3d9d41b8bb8ec9e3", + "transaction_position": 161, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "callType": "staticcall", + "gas": "0x717d3", + "input": "0x0dfe1681", + "to": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x439", + "output": "0x000000000000000000000000042afd3869a47e2d5d42cc787d5c9e19df32185f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 4 + ], + "transaction_hash": "0x1a64d8ae05ace2f163fb065f656b4dcba27caeccb05e4d3c3d9d41b8bb8ec9e3", + "transaction_position": 161, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66", + "callType": "staticcall", + "gas": "0x70cc3", + "input": "0x0902f1ac", + "to": "0xdc61511da969a32a29da5464d1bc71c546ac7578", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000001e6c6df13573a4fea47d0000000000000000000000000000000000000000000000111450e387b5991bd1000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 0, + 5 + ], + "transaction_hash": "0x1a64d8ae05ace2f163fb065f656b4dcba27caeccb05e4d3c3d9d41b8bb8ec9e3", + "transaction_position": 161, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xeae58cf73797bc85e5c33e5d46e49f9241a73337", + "callType": "call", + "gas": "0x2b15c", + "input": "0x7040ee76000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c000000000000000000000000088723d2dde5b7b88f0e7d49d8c2d26224adcfe9800000000000000000000000000000000000000000000000000000174bd8357410000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000049e833337ece7afe375e44f4e3e8481029218e5c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000049e833337ece7afe375e44f4e3e8481029218e5c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x88723d2dde5b7b88f0e7d49d8c2d26224adcfe98", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x26ce5", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [], + "transaction_hash": "0x83bc3657af694672f484072fca63648064427b292400f386109ce487e4fbe095", + "transaction_position": 162, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x88723d2dde5b7b88f0e7d49d8c2d26224adcfe98", + "callType": "call", + "gas": "0x297b3", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x49e833337ece7afe375e44f4e3e8481029218e5c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x57d6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x83bc3657af694672f484072fca63648064427b292400f386109ce487e4fbe095", + "transaction_position": 162, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x88723d2dde5b7b88f0e7d49d8c2d26224adcfe98", + "callType": "staticcall", + "gas": "0x23adf", + "input": "0x70a0823100000000000000000000000088723d2dde5b7b88f0e7d49d8c2d26224adcfe98", + "to": "0x49e833337ece7afe375e44f4e3e8481029218e5c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4a7", + "output": "0x0000000000000000000000000000000000000000000000000978ba3baaee7afb" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x83bc3657af694672f484072fca63648064427b292400f386109ce487e4fbe095", + "transaction_position": 162, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x88723d2dde5b7b88f0e7d49d8c2d26224adcfe98", + "callType": "call", + "gas": "0x22f0e", + "input": "0x18cbafe50000000000000000000000000000000000000000000000000978ba3baaee7afb000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a000000000000000000000000088723d2dde5b7b88f0e7d49d8c2d26224adcfe9800000000000000000000000000000000000000000000000000000174bd835741000000000000000000000000000000000000000000000000000000000000000200000000000000000000000049e833337ece7afe375e44f4e3e8481029218e5c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1e8e3", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000978ba3baaee7afb000000000000000000000000000000000000000000000000002350784fc27c93" + }, + "subtraces": 5, + "trace_address": [ + 2 + ], + "transaction_hash": "0x83bc3657af694672f484072fca63648064427b292400f386109ce487e4fbe095", + "transaction_position": 162, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x218ab", + "input": "0x0902f1ac", + "to": "0xd9159376499936868a5b061a4633481131e70732", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x0000000000000000000000000000000000000000000000ba7724f5d737dddd82000000000000000000000000000000000000000000000002b974da1eaad010a2000000000000000000000000000000000000000000000000000000005f6be453" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0x83bc3657af694672f484072fca63648064427b292400f386109ce487e4fbe095", + "transaction_position": 162, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x206f0", + "input": "0x23b872dd00000000000000000000000088723d2dde5b7b88f0e7d49d8c2d26224adcfe98000000000000000000000000d9159376499936868a5b061a4633481131e707320000000000000000000000000000000000000000000000000978ba3baaee7afb", + "to": "0x49e833337ece7afe375e44f4e3e8481029218e5c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4900", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1 + ], + "transaction_hash": "0x83bc3657af694672f484072fca63648064427b292400f386109ce487e4fbe095", + "transaction_position": 162, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1b1e5", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002350784fc27c930000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xd9159376499936868a5b061a4633481131e70732", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x117ba", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2, + 2 + ], + "transaction_hash": "0x83bc3657af694672f484072fca63648064427b292400f386109ce487e4fbe095", + "transaction_position": 162, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd9159376499936868a5b061a4633481131e70732", + "callType": "call", + "gas": "0x1831b", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000002350784fc27c93", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x75d2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 2, + 0 + ], + "transaction_hash": "0x83bc3657af694672f484072fca63648064427b292400f386109ce487e4fbe095", + "transaction_position": 162, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd9159376499936868a5b061a4633481131e70732", + "callType": "staticcall", + "gas": "0x10829", + "input": "0x70a08231000000000000000000000000d9159376499936868a5b061a4633481131e70732", + "to": "0x49e833337ece7afe375e44f4e3e8481029218e5c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4a7", + "output": "0x0000000000000000000000000000000000000000000000ba809db012e2cc587d" + }, + "subtraces": 0, + "trace_address": [ + 2, + 2, + 1 + ], + "transaction_hash": "0x83bc3657af694672f484072fca63648064427b292400f386109ce487e4fbe095", + "transaction_position": 162, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd9159376499936868a5b061a4633481131e70732", + "callType": "staticcall", + "gas": "0xfd62", + "input": "0x70a08231000000000000000000000000d9159376499936868a5b061a4633481131e70732", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000000002b95189a65b0d940f" + }, + "subtraces": 0, + "trace_address": [ + 2, + 2, + 2 + ], + "transaction_hash": "0x83bc3657af694672f484072fca63648064427b292400f386109ce487e4fbe095", + "transaction_position": 162, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x97f2", + "input": "0x2e1a7d4d000000000000000000000000000000000000000000000000002350784fc27c93", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2e93", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 2, + 3 + ], + "transaction_hash": "0x83bc3657af694672f484072fca63648064427b292400f386109ce487e4fbe095", + "transaction_position": 162, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x2350784fc27c93" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x53", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 2, + 3, + 0 + ], + "transaction_hash": "0x83bc3657af694672f484072fca63648064427b292400f386109ce487e4fbe095", + "transaction_position": 162, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x4c39", + "input": "0x", + "to": "0x88723d2dde5b7b88f0e7d49d8c2d26224adcfe98", + "value": "0x2350784fc27c93" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x57d", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 2, + 4 + ], + "transaction_hash": "0x83bc3657af694672f484072fca63648064427b292400f386109ce487e4fbe095", + "transaction_position": 162, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x89d04ab19c5590b887bfc87abb50b9264cb6438d", + "callType": "call", + "gas": "0xf5f8", + "input": "0x52a438b80000000000000000000000000000000000000000000000000000048c273950000000000000000000000000000000000000000000000000000000000000000b20", + "to": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf039", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x562ef93582c930b94ef3f28b315c88b7bd81ba707ccfbc225ccc27199dff48b7", + "transaction_position": 163, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x73eb7a4756ef34b903d8f0d320138fa4f2e4ec5b", + "callType": "call", + "gas": "0x2b98c", + "input": "0x441a3e7000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000003614b16174369da3", + "to": "0xbd17b1ce622d73bd438b9e658aca5996dc394b0d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x219aa", + "output": "0x" + }, + "subtraces": 6, + "trace_address": [], + "transaction_hash": "0x72634d8956a0c930b7a0b69920f20fddd1e84360137d69db768c42ec4c497ef4", + "transaction_position": 164, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbd17b1ce622d73bd438b9e658aca5996dc394b0d", + "callType": "staticcall", + "gas": "0x296b8", + "input": "0x70a08231000000000000000000000000bd17b1ce622d73bd438b9e658aca5996dc394b0d", + "to": "0xf79ae82dccb71ca3042485c85588a3e0c395d55b", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000025ce07b01b799251a693" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x72634d8956a0c930b7a0b69920f20fddd1e84360137d69db768c42ec4c497ef4", + "transaction_position": 164, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbd17b1ce622d73bd438b9e658aca5996dc394b0d", + "callType": "call", + "gas": "0x26eb0", + "input": "0x40c10f190000000000000000000000009d074e37d408542fd38be78848e8814afb38db1700000000000000000000000000000000000000000000000000654d90d72ea63a", + "to": "0x429881672b9ae42b8eba0e26cd9c73711b891ca5", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3af8", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x72634d8956a0c930b7a0b69920f20fddd1e84360137d69db768c42ec4c497ef4", + "transaction_position": 164, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbd17b1ce622d73bd438b9e658aca5996dc394b0d", + "callType": "call", + "gas": "0x22b60", + "input": "0x40c10f19000000000000000000000000bd17b1ce622d73bd438b9e658aca5996dc394b0d00000000000000000000000000000000000000000000000013c9264a071c775b", + "to": "0x429881672b9ae42b8eba0e26cd9c73711b891ca5", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2a90", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x72634d8956a0c930b7a0b69920f20fddd1e84360137d69db768c42ec4c497ef4", + "transaction_position": 164, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbd17b1ce622d73bd438b9e658aca5996dc394b0d", + "callType": "staticcall", + "gas": "0x1c191", + "input": "0x70a08231000000000000000000000000bd17b1ce622d73bd438b9e658aca5996dc394b0d", + "to": "0x429881672b9ae42b8eba0e26cd9c73711b891ca5", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x490", + "output": "0x000000000000000000000000000000000000000000000a8f7278cccfcc075bef" + }, + "subtraces": 0, + "trace_address": [ + 3 + ], + "transaction_hash": "0x72634d8956a0c930b7a0b69920f20fddd1e84360137d69db768c42ec4c497ef4", + "transaction_position": 164, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbd17b1ce622d73bd438b9e658aca5996dc394b0d", + "callType": "call", + "gas": "0x1b380", + "input": "0xa9059cbb00000000000000000000000073eb7a4756ef34b903d8f0d320138fa4f2e4ec5b000000000000000000000000000000000000000000000000001a00f2cbb3d9dd", + "to": "0x429881672b9ae42b8eba0e26cd9c73711b891ca5", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x62eb", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x72634d8956a0c930b7a0b69920f20fddd1e84360137d69db768c42ec4c497ef4", + "transaction_position": 164, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbd17b1ce622d73bd438b9e658aca5996dc394b0d", + "callType": "call", + "gas": "0x11745", + "input": "0xa9059cbb00000000000000000000000073eb7a4756ef34b903d8f0d320138fa4f2e4ec5b0000000000000000000000000000000000000000000000003614b16174369da3", + "to": "0xf79ae82dccb71ca3042485c85588a3e0c395d55b", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x7355", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 5 + ], + "transaction_hash": "0x72634d8956a0c930b7a0b69920f20fddd1e84360137d69db768c42ec4c497ef4", + "transaction_position": 164, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x73eb7a4756ef34b903d8f0d320138fa4f2e4ec5b", + "callType": "call", + "gas": "0x5e284", + "input": "0x1b16802c00000000000000000000000073eb7a4756ef34b903d8f0d320138fa4f2e4ec5b6945544800000000000000000000000000000000000000000000000000000000", + "to": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3cded", + "output": "0x00000000000000000000000000000000000000000000000000783e8326183a5600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 15, + "trace_address": [], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "staticcall", + "gas": "0x5c000", + "input": "0x42a28e216945544800000000000000000000000000000000000000000000000000000000", + "to": "0x4534e92eefecc63c6105f53893d355c14aa129cf", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x90a", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "staticcall", + "gas": "0x5ac9d", + "input": "0xf1406dc800000000000000000000000073eb7a4756ef34b903d8f0d320138fa4f2e4ec5b6945544800000000000000000000000000000000000000000000000000000000", + "to": "0x545973f28950f50fc6c7f52aab4ad214a27c0564", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x170e", + "output": "0x000000000000000000000000000000000000000000000000000000005f6bd794" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "staticcall", + "gas": "0x58b77", + "input": "0x23257c2b53797374656d53657474696e677300000000000000000000000000000000000077616974696e67506572696f6453656373000000000000000000000000000000", + "to": "0xc757acba3c0506218b3022266a9dc7f3612d85f5", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x878", + "output": "0x000000000000000000000000000000000000000000000000000000000000012c" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "staticcall", + "gas": "0x5779d", + "input": "0xb44e975300000000000000000000000073eb7a4756ef34b903d8f0d320138fa4f2e4ec5b6945544800000000000000000000000000000000000000000000000000000000", + "to": "0x545973f28950f50fc6c7f52aab4ad214a27c0564", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5e6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "staticcall", + "gas": "0x563e9", + "input": "0x15987eb600000000000000000000000073eb7a4756ef34b903d8f0d320138fa4f2e4ec5b69455448000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x545973f28950f50fc6c7f52aab4ad214a27c0564", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1fd0", + "output": "0x73555344000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000531942cc59044879606945544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000450ac0242d917ebb0000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000005f6bd794000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000200000000000013cb" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "staticcall", + "gas": "0x534de", + "input": "0x23257c2b53797374656d53657474696e677300000000000000000000000000000000000077616974696e67506572696f6453656373000000000000000000000000000000", + "to": "0xc757acba3c0506218b3022266a9dc7f3612d85f5", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x878", + "output": "0x000000000000000000000000000000000000000000000000000000000000012c" + }, + "subtraces": 0, + "trace_address": [ + 5 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "staticcall", + "gas": "0x525e6", + "input": "0x109e46a273555344000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000005f6bd794000000000000000000000000000000000000000000000000000000000000012c", + "to": "0xbcc4ac49b8f57079df1029dd3146c8ecd805acd0", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x18ac", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 6 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "staticcall", + "gas": "0x506fc", + "input": "0x109e46a2694554480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000013cb000000000000000000000000000000000000000000000000000000005f6bd794000000000000000000000000000000000000000000000000000000000000012c", + "to": "0xbcc4ac49b8f57079df1029dd3146c8ecd805acd0", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbf7f", + "output": "0x00000000000000000000000000000000000000000000000200000000000013cc" + }, + "subtraces": 4, + "trace_address": [ + 7 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbcc4ac49b8f57079df1029dd3146c8ecd805acd0", + "callType": "staticcall", + "gas": "0x4e80c", + "input": "0xb5ab58dc00000000000000000000000000000000000000000000000200000000000013cc", + "to": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1f08", + "output": "0x0000000000000000000000000000000000000000000000000000000775bb9a00" + }, + "subtraces": 1, + "trace_address": [ + 7, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "callType": "staticcall", + "gas": "0x4c666", + "input": "0xb5ab58dc00000000000000000000000000000000000000000000000000000000000013cc", + "to": "0xb103ede8acd6f0c106b7a5772e9d24e34f5ebc2c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1027", + "output": "0x0000000000000000000000000000000000000000000000000000000775bb9a00" + }, + "subtraces": 1, + "trace_address": [ + 7, + 0, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb103ede8acd6f0c106b7a5772e9d24e34f5ebc2c", + "callType": "staticcall", + "gas": "0x4a97a", + "input": "0xb5ab58dc00000000000000000000000000000000000000000000000000000000000013cc", + "to": "0xf79d6afbb6da890132f9d7c355e3015f15f3406f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5a9", + "output": "0x0000000000000000000000000000000000000000000000000000000775bb9a00" + }, + "subtraces": 0, + "trace_address": [ + 7, + 0, + 0, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbcc4ac49b8f57079df1029dd3146c8ecd805acd0", + "callType": "staticcall", + "gas": "0x4b3ac", + "input": "0xb633620c00000000000000000000000000000000000000000000000200000000000013cc", + "to": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1f4a", + "output": "0x000000000000000000000000000000000000000000000000000000005f6bd8ba" + }, + "subtraces": 1, + "trace_address": [ + 7, + 1 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "callType": "staticcall", + "gas": "0x492c2", + "input": "0xb633620c00000000000000000000000000000000000000000000000000000000000013cc", + "to": "0xb103ede8acd6f0c106b7a5772e9d24e34f5ebc2c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1053", + "output": "0x000000000000000000000000000000000000000000000000000000005f6bd8ba" + }, + "subtraces": 1, + "trace_address": [ + 7, + 1, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb103ede8acd6f0c106b7a5772e9d24e34f5ebc2c", + "callType": "staticcall", + "gas": "0x4768f", + "input": "0xb633620c00000000000000000000000000000000000000000000000000000000000013cc", + "to": "0xf79d6afbb6da890132f9d7c355e3015f15f3406f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5bf", + "output": "0x000000000000000000000000000000000000000000000000000000005f6bd8ba" + }, + "subtraces": 0, + "trace_address": [ + 7, + 1, + 0, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbcc4ac49b8f57079df1029dd3146c8ecd805acd0", + "callType": "staticcall", + "gas": "0x48a95", + "input": "0xb5ab58dc00000000000000000000000000000000000000000000000200000000000013cd", + "to": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1f08", + "output": "0x000000000000000000000000000000000000000000000000000000077708be41" + }, + "subtraces": 1, + "trace_address": [ + 7, + 2 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "callType": "staticcall", + "gas": "0x46a65", + "input": "0xb5ab58dc00000000000000000000000000000000000000000000000000000000000013cd", + "to": "0xb103ede8acd6f0c106b7a5772e9d24e34f5ebc2c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1027", + "output": "0x000000000000000000000000000000000000000000000000000000077708be41" + }, + "subtraces": 1, + "trace_address": [ + 7, + 2, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb103ede8acd6f0c106b7a5772e9d24e34f5ebc2c", + "callType": "staticcall", + "gas": "0x44ee9", + "input": "0xb5ab58dc00000000000000000000000000000000000000000000000000000000000013cd", + "to": "0xf79d6afbb6da890132f9d7c355e3015f15f3406f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5a9", + "output": "0x000000000000000000000000000000000000000000000000000000077708be41" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbcc4ac49b8f57079df1029dd3146c8ecd805acd0", + "callType": "staticcall", + "gas": "0x45635", + "input": "0xb633620c00000000000000000000000000000000000000000000000200000000000013cd", + "to": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1f4a", + "output": "0x000000000000000000000000000000000000000000000000000000005f6be1d0" + }, + "subtraces": 1, + "trace_address": [ + 7, + 3 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "callType": "staticcall", + "gas": "0x436c1", + "input": "0xb633620c00000000000000000000000000000000000000000000000000000000000013cd", + "to": "0xb103ede8acd6f0c106b7a5772e9d24e34f5ebc2c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1053", + "output": "0x000000000000000000000000000000000000000000000000000000005f6be1d0" + }, + "subtraces": 1, + "trace_address": [ + 7, + 3, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb103ede8acd6f0c106b7a5772e9d24e34f5ebc2c", + "callType": "staticcall", + "gas": "0x41bfe", + "input": "0xb633620c00000000000000000000000000000000000000000000000000000000000013cd", + "to": "0xf79d6afbb6da890132f9d7c355e3015f15f3406f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5bf", + "output": "0x000000000000000000000000000000000000000000000000000000005f6be1d0" + }, + "subtraces": 0, + "trace_address": [ + 7, + 3, + 0, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "staticcall", + "gas": "0x43fb3", + "input": "0x266da16b73555344000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000531942cc59044879606945544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000200000000000013cc", + "to": "0xbcc4ac49b8f57079df1029dd3146c8ecd805acd0", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x79f2", + "output": "0x00000000000000000000000000000000000000000000000044eab84f81b8e967" + }, + "subtraces": 2, + "trace_address": [ + 8 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbcc4ac49b8f57079df1029dd3146c8ecd805acd0", + "callType": "staticcall", + "gas": "0x40d64", + "input": "0xb5ab58dc00000000000000000000000000000000000000000000000200000000000013cc", + "to": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1f08", + "output": "0x0000000000000000000000000000000000000000000000000000000775bb9a00" + }, + "subtraces": 1, + "trace_address": [ + 8, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "callType": "staticcall", + "gas": "0x3ef29", + "input": "0xb5ab58dc00000000000000000000000000000000000000000000000000000000000013cc", + "to": "0xb103ede8acd6f0c106b7a5772e9d24e34f5ebc2c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1027", + "output": "0x0000000000000000000000000000000000000000000000000000000775bb9a00" + }, + "subtraces": 1, + "trace_address": [ + 8, + 0, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb103ede8acd6f0c106b7a5772e9d24e34f5ebc2c", + "callType": "staticcall", + "gas": "0x3d59a", + "input": "0xb5ab58dc00000000000000000000000000000000000000000000000000000000000013cc", + "to": "0xf79d6afbb6da890132f9d7c355e3015f15f3406f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5a9", + "output": "0x0000000000000000000000000000000000000000000000000000000775bb9a00" + }, + "subtraces": 0, + "trace_address": [ + 8, + 0, + 0, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xbcc4ac49b8f57079df1029dd3146c8ecd805acd0", + "callType": "staticcall", + "gas": "0x3d904", + "input": "0xb633620c00000000000000000000000000000000000000000000000200000000000013cc", + "to": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1f4a", + "output": "0x000000000000000000000000000000000000000000000000000000005f6bd8ba" + }, + "subtraces": 1, + "trace_address": [ + 8, + 1 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "callType": "staticcall", + "gas": "0x3bb85", + "input": "0xb633620c00000000000000000000000000000000000000000000000000000000000013cc", + "to": "0xb103ede8acd6f0c106b7a5772e9d24e34f5ebc2c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1053", + "output": "0x000000000000000000000000000000000000000000000000000000005f6bd8ba" + }, + "subtraces": 1, + "trace_address": [ + 8, + 1, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb103ede8acd6f0c106b7a5772e9d24e34f5ebc2c", + "callType": "staticcall", + "gas": "0x3a2af", + "input": "0xb633620c00000000000000000000000000000000000000000000000000000000000013cc", + "to": "0xf79d6afbb6da890132f9d7c355e3015f15f3406f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5bf", + "output": "0x000000000000000000000000000000000000000000000000000000005f6bd8ba" + }, + "subtraces": 0, + "trace_address": [ + 8, + 1, + 0, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "delegatecall", + "gas": "0x3c169", + "input": "0x907af6c0", + "to": "0x84d626b2bb4d0f064067e4bf80fce7055d8f3e7b", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xd4", + "output": "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000" + }, + "subtraces": 0, + "trace_address": [ + 9 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "staticcall", + "gas": "0x3b383", + "input": "0x23257c2b53797374656d53657474696e67730000000000000000000000000000000000007072696365446576696174696f6e5468726573686f6c64466163746f72000000", + "to": "0xc757acba3c0506218b3022266a9dc7f3612d85f5", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x878", + "output": "0x00000000000000000000000000000000000000000000000029a2241af62c0000" + }, + "subtraces": 0, + "trace_address": [ + 10 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "staticcall", + "gas": "0x39ddf", + "input": "0x326080396945544800000000000000000000000000000000000000000000000000000000", + "to": "0x62d6c67b2c06e9d7b889cc1d1b3a24f3370f241a", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4a7", + "output": "0x000000000000000000000000ae55f163337a2a46733aa66da9f35299f9a46e9e" + }, + "subtraces": 0, + "trace_address": [ + 11 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "call", + "gas": "0x392ed", + "input": "0x9dc29fac00000000000000000000000073eb7a4756ef34b903d8f0d320138fa4f2e4ec5b00000000000000000000000000000000000000000000000000783e8326183a56", + "to": "0xae55f163337a2a46733aa66da9f35299f9a46e9e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8ebc", + "output": "0x" + }, + "subtraces": 4, + "trace_address": [ + 12 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xae55f163337a2a46733aa66da9f35299f9a46e9e", + "callType": "call", + "gas": "0x363e8", + "input": "0x70a0823100000000000000000000000073eb7a4756ef34b903d8f0d320138fa4f2e4ec5b", + "to": "0x7b6ab32ca02b31485fbf7265437c2853792cc5d9", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4ad", + "output": "0x000000000000000000000000000000000000000000000000450ac0242d917fee" + }, + "subtraces": 0, + "trace_address": [ + 12, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xae55f163337a2a46733aa66da9f35299f9a46e9e", + "callType": "call", + "gas": "0x35804", + "input": "0xb46310f600000000000000000000000073eb7a4756ef34b903d8f0d320138fa4f2e4ec5b000000000000000000000000000000000000000000000000449281a107794598", + "to": "0x7b6ab32ca02b31485fbf7265437c2853792cc5d9", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1912", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 12, + 1 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xae55f163337a2a46733aa66da9f35299f9a46e9e", + "callType": "call", + "gas": "0x31cd9", + "input": "0x907dff9700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000003ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000073eb7a4756ef34b903d8f0d320138fa4f2e4ec5b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000783e8326183a56", + "to": "0xa9859874e1743a32409f75bb11549892138bba1e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xd4e", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 12, + 2 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xae55f163337a2a46733aa66da9f35299f9a46e9e", + "callType": "call", + "gas": "0x30409", + "input": "0x907dff9700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000002696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df700000000000000000000000073eb7a4756ef34b903d8f0d320138fa4f2e4ec5b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000783e8326183a56", + "to": "0xa9859874e1743a32409f75bb11549892138bba1e", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xbbe", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 12, + 3 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "call", + "gas": "0x2fc0f", + "input": "0xace88afd00000000000000000000000073eb7a4756ef34b903d8f0d320138fa4f2e4ec5b694554480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000783e8326183a56", + "to": "0x6eb3ac83701f624baefbc50db654b53d1f51dc94", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1e72", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 13 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x6eb3ac83701f624baefbc50db654b53d1f51dc94", + "callType": "call", + "gas": "0x2dee5", + "input": "0x907dff9700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000002491df6adf9cabe8ca514806effd6b6b6475572dc88fe4b8b58d0a20ecf45e10500000000000000000000000073eb7a4756ef34b903d8f0d320138fa4f2e4ec5b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040694554480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000783e8326183a56", + "to": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xcc4", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 13, + 0 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4", + "callType": "call", + "gas": "0x2c487", + "input": "0xd0d3d62a00000000000000000000000073eb7a4756ef34b903d8f0d320138fa4f2e4ec5b6945544800000000000000000000000000000000000000000000000000000000", + "to": "0x545973f28950f50fc6c7f52aab4ad214a27c0564", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xba82", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 14 + ], + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_position": 165, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xca1fd4d3d9d8846762a425b5722a1568f44d970d", + "callType": "call", + "gas": "0x7136", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5f21", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x8213591141619e9a2000eab737b259de5f36877db9f89549535043285ca9438d", + "transaction_position": 166, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x86002e128385836600a15791b2643451dc47a15f", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x1f7f6e83fe7f5e9225fe440fb377e662a2859ae6", + "value": "0xa3e7974b6083b200" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xee650cebbcaa74865ed55ad54a444ef2e8cce0f36de79f064f5b875696cb1333", + "transaction_position": 167, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa9f9c599368c82a624b16c5733eb7eea0504aa22", + "callType": "call", + "gas": "0xadea", + "input": "0x095ea7b3000000000000000000000000250e76987d838a75310c34bf422ea9f1ac4cc906000000000000000000000000000000000000000000084595161401484a000000", + "to": "0x2205d2f559ef91580090011aa4e0ef68ec33da44", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x57bf", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x234234a62aaf46b67ada21ab191d0b24d9f997dfe78a3d92d7e647443f223ea1", + "transaction_position": 168, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x161ab01ca9b25e64099055adfb0d789a4594f43a", + "callType": "call", + "gas": "0x42de3", + "input": "0x6a627842000000000000000000000000b4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa", + "to": "0x2c988c3974ad7e604e276ae0294a7228def67974", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2dca5", + "output": "0x" + }, + "subtraces": 4, + "trace_address": [], + "transaction_hash": "0x18ccbeb75795d799681c5793cdf45639561ba132290e4955ea0cdbe48655b05e", + "transaction_position": 169, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x2c988c3974ad7e604e276ae0294a7228def67974", + "callType": "staticcall", + "gas": "0x3c5fc", + "input": "0x3f9095b7000000000000000000000000b4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa", + "to": "0x0c4d90ca69104b4cb937fb21c8533c29554ae32c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4ee", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x18ccbeb75795d799681c5793cdf45639561ba132290e4955ea0cdbe48655b05e", + "transaction_position": 169, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x2c988c3974ad7e604e276ae0294a7228def67974", + "callType": "call", + "gas": "0x3bdf4", + "input": "0x4b820093000000000000000000000000161ab01ca9b25e64099055adfb0d789a4594f43a", + "to": "0xb4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x200a6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 6, + "trace_address": [ + 1 + ], + "transaction_hash": "0x18ccbeb75795d799681c5793cdf45639561ba132290e4955ea0cdbe48655b05e", + "transaction_position": 169, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa", + "callType": "call", + "gas": "0x39113", + "input": "0xb26b238e", + "to": "0xb8baa0e4287890a5f79863ab62b7f175cecbd433", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b6", + "output": "0x000000000000000000000000000000000000000000000000000000005f77bdc3" + }, + "subtraces": 0, + "trace_address": [ + 1, + 0 + ], + "transaction_hash": "0x18ccbeb75795d799681c5793cdf45639561ba132290e4955ea0cdbe48655b05e", + "transaction_position": 169, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa", + "callType": "staticcall", + "gas": "0x38652", + "input": "0x2c4e722e", + "to": "0xb8baa0e4287890a5f79863ab62b7f175cecbd433", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x668", + "output": "0x00000000000000000000000000000000000000000000000003f8b0107b45c294" + }, + "subtraces": 0, + "trace_address": [ + 1, + 1 + ], + "transaction_hash": "0x18ccbeb75795d799681c5793cdf45639561ba132290e4955ea0cdbe48655b05e", + "transaction_position": 169, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa", + "callType": "call", + "gas": "0x3770f", + "input": "0x615e5237000000000000000000000000b4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa", + "to": "0x0c4d90ca69104b4cb937fb21c8533c29554ae32c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3cf1", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1, + 2 + ], + "transaction_hash": "0x18ccbeb75795d799681c5793cdf45639561ba132290e4955ea0cdbe48655b05e", + "transaction_position": 169, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa", + "callType": "staticcall", + "gas": "0x32fae", + "input": "0xd3078c94000000000000000000000000b4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa000000000000000000000000000000000000000000000000000000005f6be180", + "to": "0x0c4d90ca69104b4cb937fb21c8533c29554ae32c", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x993", + "output": "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000" + }, + "subtraces": 0, + "trace_address": [ + 1, + 3 + ], + "transaction_hash": "0x18ccbeb75795d799681c5793cdf45639561ba132290e4955ea0cdbe48655b05e", + "transaction_position": 169, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa", + "callType": "staticcall", + "gas": "0x227a2", + "input": "0x70a08231000000000000000000000000161ab01ca9b25e64099055adfb0d789a4594f43a", + "to": "0xe5e7ddadd563018b0e692c1524b60b754fbd7f02", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x156f", + "output": "0x00000000000000000000000000000000000000000000000000040c93fb4a827b" + }, + "subtraces": 0, + "trace_address": [ + 1, + 4 + ], + "transaction_hash": "0x18ccbeb75795d799681c5793cdf45639561ba132290e4955ea0cdbe48655b05e", + "transaction_position": 169, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa", + "callType": "staticcall", + "gas": "0x20f87", + "input": "0x18160ddd", + "to": "0xe5e7ddadd563018b0e692c1524b60b754fbd7f02", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1ddd", + "output": "0x0000000000000000000000000000000000000000000066a6dd7066888c9f96c2" + }, + "subtraces": 0, + "trace_address": [ + 1, + 5 + ], + "transaction_hash": "0x18ccbeb75795d799681c5793cdf45639561ba132290e4955ea0cdbe48655b05e", + "transaction_position": 169, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x2c988c3974ad7e604e276ae0294a7228def67974", + "callType": "staticcall", + "gas": "0x1c238", + "input": "0x09400707000000000000000000000000161ab01ca9b25e64099055adfb0d789a4594f43a", + "to": "0xb4d0c929cd3a1fbdc6d57e7d3315cf0c4d6b4bfa", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x720", + "output": "0x0000000000000000000000000000000000000000000000001b3d1472b894fceb" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x18ccbeb75795d799681c5793cdf45639561ba132290e4955ea0cdbe48655b05e", + "transaction_position": 169, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x2c988c3974ad7e604e276ae0294a7228def67974", + "callType": "call", + "gas": "0x1b106", + "input": "0x40c10f19000000000000000000000000161ab01ca9b25e64099055adfb0d789a4594f43a000000000000000000000000000000000000000000000000190f78761307c932", + "to": "0xb8baa0e4287890a5f79863ab62b7f175cecbd433", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4897", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3 + ], + "transaction_hash": "0x18ccbeb75795d799681c5793cdf45639561ba132290e4955ea0cdbe48655b05e", + "transaction_position": 169, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x009bc1c74ebfed33df06d4a93e772f399b40d0c8", + "callType": "call", + "gas": "0xfe98", + "input": "0xa9059cbb000000000000000000000000c3af3fb5da55de653ac8a06dca758b45a262e0fb0000000000000000000000000000000000000000000000000000000000989680", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8bbd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x70766b0380f4a7d2fa2e64457d60724c99103c4865f97f40c052287dec871a50", + "transaction_position": 170, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0xf010", + "input": "0xa9059cbb000000000000000000000000c3af3fb5da55de653ac8a06dca758b45a262e0fb0000000000000000000000000000000000000000000000000000000000989680", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x80d8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x70766b0380f4a7d2fa2e64457d60724c99103c4865f97f40c052287dec871a50", + "transaction_position": 170, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x34916349d43f65bccca11ff53a8e0382a1a594a7", + "callType": "call", + "gas": "0x23f39", + "input": "0xfb3bdb410000000000000000000000000000000000000000000000000000000000e4e1c0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000034916349d43f65bccca11ff53a8e0382a1a594a7000000000000000000000000000000000000000000000000000000005f6be8dc0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0xa8b1e2945e6a1e" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1fb7b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000a8017a030f33330000000000000000000000000000000000000000000000000000000000e4e1c0" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0x21de503843c8ad425454085e7273ceb1fc5dc534350a12dae9e09a3840fe56c7", + "transaction_position": 171, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x228a9", + "input": "0x0902f1ac", + "to": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000000000000009b63d4f49c870000000000000000000000000000000000000000000071b7ecdbb2fc420d984a000000000000000000000000000000000000000000000000000000005f6be465" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x21de503843c8ad425454085e7273ceb1fc5dc534350a12dae9e09a3840fe56c7", + "transaction_position": 171, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1ffbb", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0xa8017a030f3333" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5892", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x21de503843c8ad425454085e7273ceb1fc5dc534350a12dae9e09a3840fe56c7", + "transaction_position": 171, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x19f32", + "input": "0xa9059cbb000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc00000000000000000000000000000000000000000000000000a8017a030f3333", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x21de503843c8ad425454085e7273ceb1fc5dc534350a12dae9e09a3840fe56c7", + "transaction_position": 171, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1686f", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000e4e1c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034916349d43f65bccca11ff53a8e0382a1a594a700000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x109a7", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 3 + ], + "transaction_hash": "0x21de503843c8ad425454085e7273ceb1fc5dc534350a12dae9e09a3840fe56c7", + "transaction_position": 171, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "call", + "gas": "0x13ae9", + "input": "0xa9059cbb00000000000000000000000034916349d43f65bccca11ff53a8e0382a1a594a70000000000000000000000000000000000000000000000000000000000e4e1c0", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8bbd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x21de503843c8ad425454085e7273ceb1fc5dc534350a12dae9e09a3840fe56c7", + "transaction_position": 171, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x12b70", + "input": "0xa9059cbb00000000000000000000000034916349d43f65bccca11ff53a8e0382a1a594a70000000000000000000000000000000000000000000000000000000000e4e1c0", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x80d8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0, + 0 + ], + "transaction_hash": "0x21de503843c8ad425454085e7273ceb1fc5dc534350a12dae9e09a3840fe56c7", + "transaction_position": 171, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "staticcall", + "gas": "0xaa50", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf99", + "output": "0x00000000000000000000000000000000000000000000000000009b63d40fbac7" + }, + "subtraces": 1, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0x21de503843c8ad425454085e7273ceb1fc5dc534350a12dae9e09a3840fe56c7", + "transaction_position": 171, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x9d1c", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b7", + "output": "0x00000000000000000000000000000000000000000000000000009b63d40fbac7" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1, + 0 + ], + "transaction_hash": "0x21de503843c8ad425454085e7273ceb1fc5dc534350a12dae9e09a3840fe56c7", + "transaction_position": 171, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "staticcall", + "gas": "0x94c3", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000071b7ed83b476451ccb7d" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0x21de503843c8ad425454085e7273ceb1fc5dc534350a12dae9e09a3840fe56c7", + "transaction_position": 171, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x446d", + "input": "0x", + "to": "0x34916349d43f65bccca11ff53a8e0382a1a594a7", + "value": "0xb068914f36eb" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x21de503843c8ad425454085e7273ceb1fc5dc534350a12dae9e09a3840fe56c7", + "transaction_position": 171, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x036716117e83da70fdac74f243f4b7f27f92abf1", + "callType": "call", + "gas": "0x2ba6c", + "input": "0xa694fc3a000000000000000000000000000000000000000000000000000000000000002a", + "to": "0x8af4bf8677106cebbedf46bfd7e757cdaf68c3d7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x13405", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [], + "transaction_hash": "0x37545b8f2b7a65667e12e574d8fe5a2fde39891f011365c9cbf6d86681f92004", + "transaction_position": 172, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8af4bf8677106cebbedf46bfd7e757cdaf68c3d7", + "callType": "call", + "gas": "0x1c99b", + "input": "0x23b872dd000000000000000000000000036716117e83da70fdac74f243f4b7f27f92abf10000000000000000000000008af4bf8677106cebbedf46bfd7e757cdaf68c3d70000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2374e9ae8bc78e39cffcac0f8ff2470c4469baad", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1ad6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x37545b8f2b7a65667e12e574d8fe5a2fde39891f011365c9cbf6d86681f92004", + "transaction_position": 172, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8af4bf8677106cebbedf46bfd7e757cdaf68c3d7", + "callType": "call", + "gas": "0x1a15d", + "input": "0x23b872dd000000000000000000000000036716117e83da70fdac74f243f4b7f27f92abf1000000000000000000000000289026a9018d5aa8cb05f228dd9460c1229aaf810000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2374e9ae8bc78e39cffcac0f8ff2470c4469baad", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1ad6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x37545b8f2b7a65667e12e574d8fe5a2fde39891f011365c9cbf6d86681f92004", + "transaction_position": 172, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x6644394eec6782a2f4d146bb1f8896c50d7f2990", + "callType": "call", + "gas": "0x26b79", + "input": "0xfb3bdb4100000000000000000000000000000000000000000000000053444835ec58000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000006644394eec6782a2f4d146bb1f8896c50d7f2990000000000000000000000000000000000000000000000000000000005f6be5580000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000c84f7abe4904ee4f20a8c5dfa3cc4bf1829330ab", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x92c0e367702323f" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x223b2", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000087e201f77acb34400000000000000000000000000000000000000000000000053444835ec580000" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0x1521c4008e0c810532a9a132d9920bacb52a7a9af3797b1144eb638ff0aa28a3", + "transaction_position": 173, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x2544b", + "input": "0x0902f1ac", + "to": "0xab664778d218436d508ebc25340ea187687225dc", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000000000a5629e316b5f07c8000000000000000000000000000000000000000000000006adabae02902d6c2a000000000000000000000000000000000000000000000000000000005f6be3e5" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x1521c4008e0c810532a9a132d9920bacb52a7a9af3797b1144eb638ff0aa28a3", + "transaction_position": 173, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x22b67", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x87e201f77acb344" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5892", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x1521c4008e0c810532a9a132d9920bacb52a7a9af3797b1144eb638ff0aa28a3", + "transaction_position": 173, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1cae9", + "input": "0xa9059cbb000000000000000000000000ab664778d218436d508ebc25340ea187687225dc000000000000000000000000000000000000000000000000087e201f77acb344", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x1521c4008e0c810532a9a132d9920bacb52a7a9af3797b1144eb638ff0aa28a3", + "transaction_position": 173, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x19443", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000053444835ec5800000000000000000000000000006644394eec6782a2f4d146bb1f8896c50d7f299000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xab664778d218436d508ebc25340ea187687225dc", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x13224", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 3 + ], + "transaction_hash": "0x1521c4008e0c810532a9a132d9920bacb52a7a9af3797b1144eb638ff0aa28a3", + "transaction_position": 173, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xab664778d218436d508ebc25340ea187687225dc", + "callType": "call", + "gas": "0x165ef", + "input": "0xa9059cbb0000000000000000000000006644394eec6782a2f4d146bb1f8896c50d7f299000000000000000000000000000000000000000000000000053444835ec580000", + "to": "0xc84f7abe4904ee4f20a8c5dfa3cc4bf1829330ab", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8c5a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x1521c4008e0c810532a9a132d9920bacb52a7a9af3797b1144eb638ff0aa28a3", + "transaction_position": 173, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xab664778d218436d508ebc25340ea187687225dc", + "callType": "staticcall", + "gas": "0xd4d0", + "input": "0x70a08231000000000000000000000000ab664778d218436d508ebc25340ea187687225dc", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000000000ade0be50e30bbb0c" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0x1521c4008e0c810532a9a132d9920bacb52a7a9af3797b1144eb638ff0aa28a3", + "transaction_position": 173, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xab664778d218436d508ebc25340ea187687225dc", + "callType": "staticcall", + "gas": "0xc9de", + "input": "0x70a08231000000000000000000000000ab664778d218436d508ebc25340ea187687225dc", + "to": "0xc84f7abe4904ee4f20a8c5dfa3cc4bf1829330ab", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x889", + "output": "0x0000000000000000000000000000000000000000000000065a6765cca3d56c2a" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0x1521c4008e0c810532a9a132d9920bacb52a7a9af3797b1144eb638ff0aa28a3", + "transaction_position": 173, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x4866", + "input": "0x", + "to": "0x6644394eec6782a2f4d146bb1f8896c50d7f2990", + "value": "0xadee16ff557efb" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x1521c4008e0c810532a9a132d9920bacb52a7a9af3797b1144eb638ff0aa28a3", + "transaction_position": 173, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x84273285c94c0cad664a0858b340b8384d0771e0", + "callType": "call", + "gas": "0x846d", + "input": "0xa9059cbb00000000000000000000000025abe7c2de605701f89ee6dceb2942bca33566fe000000000000000000000000000000000000000000000b667785d7dab005c795", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x3c0e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x345308aefab67028a4b8446890d4db018881ee237e960506436e4f48745b8d82", + "transaction_position": 174, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa2aa62a9ee639826565b82fd80d72d46bedc084e", + "callType": "call", + "gas": "0x7296", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xd55bd2c12b30075b325bc35aef0b46363b3818f8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5fa9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x05eee02949040a340ff28c2c558f5a91d17e0ea5861db37de404aee67da40c9d", + "transaction_position": 175, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd55bd2c12b30075b325bc35aef0b46363b3818f8", + "callType": "delegatecall", + "gas": "0x6937", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x80e68bb617ca3e096bdcf460a7e863bfd708b5cc", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x574b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x05eee02949040a340ff28c2c558f5a91d17e0ea5861db37de404aee67da40c9d", + "transaction_position": 175, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x87881f29b3b7686d54df948fbc0e79aecd74140b", + "callType": "call", + "gas": "0xfcaa0", + "input": "0xc89e4361b493becdd1ed1a952c4d4f13f5a8f68e7a450ed4628642fe0abf20dcc2c82f28fe4f3e406928c229f25efb2a079fae31cd64423564cf4019000000004016b85263804f8a3761fe70339fd194816f21422f0243001a7863030000001255000000042afd3869a47e2d5d42cc787d5c9e19df32185f5500000c55000001", + "to": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x17ef", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xa80a693a0c2e494f818e3fda9b1ff4c6c0612f179fefb488b6d2e3dd2ede16dc", + "transaction_position": 176, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8", + "callType": "call", + "gas": "0xf7fd2", + "input": "0xb1d926ee000000000000000000000000000000000000000000000000cd64423564cf4019", + "to": "0x628642fe0abf20dcc2c82f28fe4f3e406928c229", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5f8", + "output": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xa80a693a0c2e494f818e3fda9b1ff4c6c0612f179fefb488b6d2e3dd2ede16dc", + "transaction_position": 176, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x1d84b6c6fa570e96ec8919240e9d4880dd71c9c9", + "callType": "call", + "gas": "0x2173e", + "input": "0x18cbafe500000000000000000000000000000000000000000000010f0cf064dd5920000000000000000000000000000000000000000000000000000006771c4e5a96649d00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000001d84b6c6fa570e96ec8919240e9d4880dd71c9c9000000000000000000000000000000000000000000000000000000005f6be8b5000000000000000000000000000000000000000000000000000000000000000200000000000000000000000026ce25148832c04f3d7f26f32478a9fe55197166000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x205fa", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000010f0cf064dd592000000000000000000000000000000000000000000000000000000908430f6be098c7" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0x6deb53d8bfb524f8c6a5381c4f6c65419ee8da843bdf2ebcd8f0e9bb7df35116", + "transaction_position": 177, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x2013a", + "input": "0x0902f1ac", + "to": "0x37a0464f8f4c207b54821f3c799afd3d262aa944", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000003e8490e223420910665ec00000000000000000000000000000000000000000000002177e25876d021ea51000000000000000000000000000000000000000000000000000000005f6be42c" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x6deb53d8bfb524f8c6a5381c4f6c65419ee8da843bdf2ebcd8f0e9bb7df35116", + "transaction_position": 177, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1ef7f", + "input": "0x23b872dd0000000000000000000000001d84b6c6fa570e96ec8919240e9d4880dd71c9c900000000000000000000000037a0464f8f4c207b54821f3c799afd3d262aa94400000000000000000000000000000000000000000000010f0cf064dd59200000", + "to": "0x26ce25148832c04f3d7f26f32478a9fe55197166", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x6b6c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x6deb53d8bfb524f8c6a5381c4f6c65419ee8da843bdf2ebcd8f0e9bb7df35116", + "transaction_position": 177, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x17892", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000908430f6be098c70000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x37a0464f8f4c207b54821f3c799afd3d262aa944", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x117e2", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2 + ], + "transaction_hash": "0x6deb53d8bfb524f8c6a5381c4f6c65419ee8da843bdf2ebcd8f0e9bb7df35116", + "transaction_position": 177, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x37a0464f8f4c207b54821f3c799afd3d262aa944", + "callType": "call", + "gas": "0x14aad", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000908430f6be098c7", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x75d2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0x6deb53d8bfb524f8c6a5381c4f6c65419ee8da843bdf2ebcd8f0e9bb7df35116", + "transaction_position": 177, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x37a0464f8f4c207b54821f3c799afd3d262aa944", + "callType": "staticcall", + "gas": "0xcfbb", + "input": "0x70a0823100000000000000000000000037a0464f8f4c207b54821f3c799afd3d262aa944", + "to": "0x26ce25148832c04f3d7f26f32478a9fe55197166", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4cf", + "output": "0x00000000000000000000000000000000000000000003e9581b1298fdea2665ec" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1 + ], + "transaction_hash": "0x6deb53d8bfb524f8c6a5381c4f6c65419ee8da843bdf2ebcd8f0e9bb7df35116", + "transaction_position": 177, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x37a0464f8f4c207b54821f3c799afd3d262aa944", + "callType": "staticcall", + "gas": "0xc4cd", + "input": "0x70a0823100000000000000000000000037a0464f8f4c207b54821f3c799afd3d262aa944", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000000216eda15676441518a" + }, + "subtraces": 0, + "trace_address": [ + 2, + 2 + ], + "transaction_hash": "0x6deb53d8bfb524f8c6a5381c4f6c65419ee8da843bdf2ebcd8f0e9bb7df35116", + "transaction_position": 177, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x5e78", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000000908430f6be098c7", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2e93", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 3 + ], + "transaction_hash": "0x6deb53d8bfb524f8c6a5381c4f6c65419ee8da843bdf2ebcd8f0e9bb7df35116", + "transaction_position": 177, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x908430f6be098c7" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x53", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x6deb53d8bfb524f8c6a5381c4f6c65419ee8da843bdf2ebcd8f0e9bb7df35116", + "transaction_position": 177, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x12bf", + "input": "0x", + "to": "0x1d84b6c6fa570e96ec8919240e9d4880dd71c9c9", + "value": "0x908430f6be098c7" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x6deb53d8bfb524f8c6a5381c4f6c65419ee8da843bdf2ebcd8f0e9bb7df35116", + "transaction_position": 177, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf941d0bc11f5aeade5c3ff6d4bfd87e3066c69ae", + "callType": "call", + "gas": "0x9d07", + "input": "0xa9059cbb000000000000000000000000c3ffb030afb34f85fe9196bdba46285eda15a1a4000000000000000000000000000000000000000000000000000000000bebc200", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xc916d9d5a6e3ef116126d4cfda84dc4b1af4e90d6c73553d75923ff8a908173a", + "transaction_position": 178, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xf941d0bc11f5aeade5c3ff6d4bfd87e3066c69ae", + "callType": "call", + "gas": "0x9d07", + "input": "0xa9059cbb00000000000000000000000004d85f12f5cd413a044c3db516b73023d3266a58000000000000000000000000000000000000000000000000000000002faf0800", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x5b9ca858d653c17720ac9253e9401c233e0e92f1da7c23571922ca355c105d0b", + "transaction_position": 179, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xede0b337d9e326d49057d479ba3783b5500d2be7", + "callType": "call", + "gas": "0x1ce60", + "input": "0xd482135c0000000000000000000000000000000000000000000000000000000000000003", + "to": "0xcc30be6f85b97bd3e9b8c582d0e28aa6a7b7485e", + "value": "0x11c37937e080000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1a750", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [], + "transaction_hash": "0xd9f834f32e74a735653d5e48054f5f311e553db7ce6aa24a9a3826fddb3e4530", + "transaction_position": 180, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xcc30be6f85b97bd3e9b8c582d0e28aa6a7b7485e", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xac1fb32a0c5aa3feb9069451a9fd5591ffd2a738", + "value": "0xeebe0b40e80000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xd9f834f32e74a735653d5e48054f5f311e553db7ce6aa24a9a3826fddb3e4530", + "transaction_position": 180, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xcc30be6f85b97bd3e9b8c582d0e28aa6a7b7485e", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x4cd2d08ab9497a01490d3bff87bb3fb6d3199a27", + "value": "0x2d79883d200000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xd9f834f32e74a735653d5e48054f5f311e553db7ce6aa24a9a3826fddb3e4530", + "transaction_position": 180, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xcc30be6f85b97bd3e9b8c582d0e28aa6a7b7485e", + "callType": "call", + "gas": "0xd314", + "input": "0x40c10f19000000000000000000000000ede0b337d9e326d49057d479ba3783b5500d2be700000000000000000000000000000000000000000000000821ab0d4414980000", + "to": "0xcdefbf7471f441081276dec587d28af9b3106712", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5836", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0xd9f834f32e74a735653d5e48054f5f311e553db7ce6aa24a9a3826fddb3e4530", + "transaction_position": 180, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xfe574e38e6eeb09d0231e50469759f68c583c01f", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xcd4954d843cc5d7762799e450b05d84f5ce9a1d5", + "value": "0x1d01fbb30d719a2e" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x36191b21db16ef709b8bced661757dabf821e2aa632fda541593c37f5c62f359", + "transaction_position": 181, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x45acee69a04ebc47a4b917489dec7ef15d21df2b", + "callType": "call", + "gas": "0xe2c8", + "input": "0x095ea7b300000000000000000000000007c7dc3e99d36b2b9aae70544c415b694c4f9615ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x6560f7209cb51ada2ca28de1756ee8cd13ac8a4a", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5746", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xb84de3c333d820eb1c86b971e19d554a3e18ab998a6a1ab5ff6ac4efae7ee566", + "transaction_position": 182, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xd185bddb50833422b5839f6f06867c1de059581f", + "callType": "call", + "gas": "0x1fff5", + "input": "0x38ed173900000000000000000000000000000000000000000000000028f32d2bcf329eaf000000000000000000000000000000000000000000000000000000000d29316200000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000d185bddb50833422b5839f6f06867c1de059581f000000000000000000000000000000000000000000000000000000005f6be4680000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0246c9032bc3a600820415ae600c6388619a14d000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1c03b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000028f32d2bcf329eaf000000000000000000000000000000000000000000000000000000000d3a09f4" + }, + "subtraces": 3, + "trace_address": [], + "transaction_hash": "0xd7395e26bb67b740593aa48b43877652f88ad6cb44f6ecfe09ec8623e3fc4760", + "transaction_position": 183, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1eaad", + "input": "0x0902f1ac", + "to": "0x514906fc121c7878424a5c928cad1852cc545892", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000000070e406dc40ad250bc770000000000000000000000000000000000000000000000000000024938c7a99e000000000000000000000000000000000000000000000000000000005f6be3d2" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xd7395e26bb67b740593aa48b43877652f88ad6cb44f6ecfe09ec8623e3fc4760", + "transaction_position": 183, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1d8f2", + "input": "0x23b872dd000000000000000000000000d185bddb50833422b5839f6f06867c1de059581f000000000000000000000000514906fc121c7878424a5c928cad1852cc54589200000000000000000000000000000000000000000000000028f32d2bcf329eaf", + "to": "0xa0246c9032bc3a600820415ae600c6388619a14d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5935", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xd7395e26bb67b740593aa48b43877652f88ad6cb44f6ecfe09ec8623e3fc4760", + "transaction_position": 183, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x173f2", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d3a09f4000000000000000000000000d185bddb50833422b5839f6f06867c1de059581f00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x514906fc121c7878424a5c928cad1852cc545892", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x13855", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2 + ], + "transaction_hash": "0xd7395e26bb67b740593aa48b43877652f88ad6cb44f6ecfe09ec8623e3fc4760", + "transaction_position": 183, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x514906fc121c7878424a5c928cad1852cc545892", + "callType": "call", + "gas": "0x1461f", + "input": "0xa9059cbb000000000000000000000000d185bddb50833422b5839f6f06867c1de059581f000000000000000000000000000000000000000000000000000000000d3a09f4", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x8bbd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0xd7395e26bb67b740593aa48b43877652f88ad6cb44f6ecfe09ec8623e3fc4760", + "transaction_position": 183, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x13679", + "input": "0xa9059cbb000000000000000000000000d185bddb50833422b5839f6f06867c1de059581f000000000000000000000000000000000000000000000000000000000d3a09f4", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x80d8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0 + ], + "transaction_hash": "0xd7395e26bb67b740593aa48b43877652f88ad6cb44f6ecfe09ec8623e3fc4760", + "transaction_position": 183, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x514906fc121c7878424a5c928cad1852cc545892", + "callType": "staticcall", + "gas": "0xb59b", + "input": "0x70a08231000000000000000000000000514906fc121c7878424a5c928cad1852cc545892", + "to": "0xa0246c9032bc3a600820415ae600c6388619a14d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x490", + "output": "0x00000000000000000000000000000000000000000000070e6960f136a1835b26" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1 + ], + "transaction_hash": "0xd7395e26bb67b740593aa48b43877652f88ad6cb44f6ecfe09ec8623e3fc4760", + "transaction_position": 183, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x514906fc121c7878424a5c928cad1852cc545892", + "callType": "staticcall", + "gas": "0xaaea", + "input": "0x70a08231000000000000000000000000514906fc121c7878424a5c928cad1852cc545892", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xf99", + "output": "0x000000000000000000000000000000000000000000000000000002492b8d9faa" + }, + "subtraces": 1, + "trace_address": [ + 2, + 2 + ], + "transaction_hash": "0xd7395e26bb67b740593aa48b43877652f88ad6cb44f6ecfe09ec8623e3fc4760", + "transaction_position": 183, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x9db4", + "input": "0x70a08231000000000000000000000000514906fc121c7878424a5c928cad1852cc545892", + "to": "0xb7277a6e95992041568d9391d09d0122023778a2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b7", + "output": "0x000000000000000000000000000000000000000000000000000002492b8d9faa" + }, + "subtraces": 0, + "trace_address": [ + 2, + 2, + 0 + ], + "transaction_hash": "0xd7395e26bb67b740593aa48b43877652f88ad6cb44f6ecfe09ec8623e3fc4760", + "transaction_position": 183, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xb27b24bc2c2527f2104b664bb485c733b311446b", + "callType": "call", + "gas": "0xadc5", + "input": "0x095ea7b3000000000000000000000000577af3dce5aaa89510135d7f6e095e33c06b8b1fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x5cfd4ee2886cf42c716be1e20847bda15547c693", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5746", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xea9ca7b646ac93e2d5766fb0b57da2332e67fa3c0b3216cece0ce41c21117259", + "transaction_position": 184, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8d92da578ce8439f5443dd9bc536d3ef72b1deeb", + "callType": "call", + "gas": "0xbd25", + "input": "0x095ea7b3000000000000000000000000a10740ff9ff6852eac84cdcff9184e1d6d27c05700000000000000000000000000000000000000000000000000000000000b7092", + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x61fa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x72b4a9a7dbbc70e0854552116d6c7d0687c23fddb55cdfc775744ea1848d6cd4", + "transaction_position": 185, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8d92da578ce8439f5443dd9bc536d3ef72b1deeb", + "callType": "call", + "gas": "0xbd25", + "input": "0x095ea7b3000000000000000000000000a10740ff9ff6852eac84cdcff9184e1d6d27c05700000000000000000000000000000000000000000000000000000000000b7084", + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x61fa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xf9039e41c7349da4267954e1e425231946617b01e7c7dee26551d940a0988c19", + "transaction_position": 186, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8d92da578ce8439f5443dd9bc536d3ef72b1deeb", + "callType": "call", + "gas": "0xbd25", + "input": "0x095ea7b3000000000000000000000000a10740ff9ff6852eac84cdcff9184e1d6d27c05700000000000000000000000000000000000000000000000000000000000b2530", + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x61fa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xdd1c45110834c6ee14257a85af9c124bba83706693d5f6a41975d4c807d90eb1", + "transaction_position": 187, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8d92da578ce8439f5443dd9bc536d3ef72b1deeb", + "callType": "call", + "gas": "0xbd25", + "input": "0x095ea7b3000000000000000000000000a10740ff9ff6852eac84cdcff9184e1d6d27c05700000000000000000000000000000000000000000000000000000000000b23b2", + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x61fa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x7ecdae008d1f677ac84b5b392ee83923b318800e799d9476491b3f284ffd1de7", + "transaction_position": 188, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8d92da578ce8439f5443dd9bc536d3ef72b1deeb", + "callType": "call", + "gas": "0xbd25", + "input": "0x095ea7b3000000000000000000000000a10740ff9ff6852eac84cdcff9184e1d6d27c05700000000000000000000000000000000000000000000000000000000000b2221", + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x61fa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x03bb2b430b354d1a911088228c834a6d0ac824fb053da4618413820a4217ed36", + "transaction_position": 189, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8d92da578ce8439f5443dd9bc536d3ef72b1deeb", + "callType": "call", + "gas": "0xbd25", + "input": "0x095ea7b3000000000000000000000000a10740ff9ff6852eac84cdcff9184e1d6d27c05700000000000000000000000000000000000000000000000000000000000b1de1", + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x61fa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x77fd7b16bbb7bf9b71e40dae962f729ebad0943443ec909556c5c536fb170ad8", + "transaction_position": 190, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x8d92da578ce8439f5443dd9bc536d3ef72b1deeb", + "callType": "call", + "gas": "0xbd25", + "input": "0x095ea7b3000000000000000000000000a10740ff9ff6852eac84cdcff9184e1d6d27c0570000000000000000000000000000000000000000000000000000000000096153", + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x61fa", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x13a0efa983f852fdf4ec4dfef56898deb25fb5e61fc3ac05851174fc7d22fa46", + "transaction_position": 191, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc27ab44ae649e3edddb20f8ad15a86223870724e", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x0aeee23d16084d763e7a65577020c1f3d18804f2", + "value": "0x518df1e1977f400" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x1a3a1ea2911a25b4cf69d9bbb96992882948c2d6f178484a1d3bcec08eb7ec79", + "transaction_position": 192, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x718999898fcdd99fc6b2747e5d790e3682bc9037", + "callType": "call", + "gas": "0x23bc2", + "input": "0x18cbafe50000000000000000000000000000000000000000000000056bc75e2d631000000000000000000000000000000000000000000000000000000193c5745e63ed4000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000718999898fcdd99fc6b2747e5d790e3682bc9037000000000000000000000000000000000000000000000000000000005f6be7bf0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000d17e374a7d49287f583ddfbdeb6ad4da21c00ce3000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1f83e", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000056bc75e2d631000000000000000000000000000000000000000000000000000000197cf1beeb1b9dd" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0x4cea26f3ecd3fa51651dad3702f24f120943fc1c2aab7e179fd43faed92db4ed", + "transaction_position": 193, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x22518", + "input": "0x0902f1ac", + "to": "0xad4940d81728560787d3b8a5b35ecefad51f0861", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000000000032469d94e9005a510000000000000000000000000000000000000000000000a52bd7326bb898dfe8000000000000000000000000000000000000000000000000000000005f6be391" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x4cea26f3ecd3fa51651dad3702f24f120943fc1c2aab7e179fd43faed92db4ed", + "transaction_position": 193, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x2134a", + "input": "0x23b872dd000000000000000000000000718999898fcdd99fc6b2747e5d790e3682bc9037000000000000000000000000ad4940d81728560787d3b8a5b35ecefad51f08610000000000000000000000000000000000000000000000056bc75e2d63100000", + "to": "0xd17e374a7d49287f583ddfbdeb6ad4da21c00ce3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5d3b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x4cea26f3ecd3fa51651dad3702f24f120943fc1c2aab7e179fd43faed92db4ed", + "transaction_position": 193, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1aa38", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000197cf1beeb1b9dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xad4940d81728560787d3b8a5b35ecefad51f0861", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x11811", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2 + ], + "transaction_hash": "0x4cea26f3ecd3fa51651dad3702f24f120943fc1c2aab7e179fd43faed92db4ed", + "transaction_position": 193, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xad4940d81728560787d3b8a5b35ecefad51f0861", + "callType": "call", + "gas": "0x17bab", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000197cf1beeb1b9dd", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x75d2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0x4cea26f3ecd3fa51651dad3702f24f120943fc1c2aab7e179fd43faed92db4ed", + "transaction_position": 193, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xad4940d81728560787d3b8a5b35ecefad51f0861", + "callType": "staticcall", + "gas": "0x100a6", + "input": "0x70a08231000000000000000000000000ad4940d81728560787d3b8a5b35ecefad51f0861", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x00000000000000000000000000000000000000000000000030aece78fa4ea074" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1 + ], + "transaction_hash": "0x4cea26f3ecd3fa51651dad3702f24f120943fc1c2aab7e179fd43faed92db4ed", + "transaction_position": 193, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xad4940d81728560787d3b8a5b35ecefad51f0861", + "callType": "staticcall", + "gas": "0xf5b4", + "input": "0x70a08231000000000000000000000000ad4940d81728560787d3b8a5b35ecefad51f0861", + "to": "0xd17e374a7d49287f583ddfbdeb6ad4da21c00ce3", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4fe", + "output": "0x0000000000000000000000000000000000000000000000aa979e90991ba8dfe8" + }, + "subtraces": 0, + "trace_address": [ + 2, + 2 + ], + "transaction_hash": "0x4cea26f3ecd3fa51651dad3702f24f120943fc1c2aab7e179fd43faed92db4ed", + "transaction_position": 193, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x8fef", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000000197cf1beeb1b9dd", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2e93", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 3 + ], + "transaction_hash": "0x4cea26f3ecd3fa51651dad3702f24f120943fc1c2aab7e179fd43faed92db4ed", + "transaction_position": 193, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x197cf1beeb1b9dd" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x53", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x4cea26f3ecd3fa51651dad3702f24f120943fc1c2aab7e179fd43faed92db4ed", + "transaction_position": 193, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x4436", + "input": "0x", + "to": "0x718999898fcdd99fc6b2747e5d790e3682bc9037", + "value": "0x197cf1beeb1b9dd" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x4cea26f3ecd3fa51651dad3702f24f120943fc1c2aab7e179fd43faed92db4ed", + "transaction_position": 193, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x35a94822f1e9d5009fb1917de7d58d2403e20d9c", + "callType": "call", + "gas": "0x115a8", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000002d424d8292327b7c1b", + "to": "0x9a54fe35d41bc7c8f7071abf0ccd952505e29ceb", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x9b3e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xe89fc0c9a81bc25954884fb747c93df9e269d1555e36bdfaa7a5f0906a294006", + "transaction_position": 194, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x9a54fe35d41bc7c8f7071abf0ccd952505e29ceb", + "callType": "delegatecall", + "gas": "0x106d5", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000002d424d8292327b7c1b", + "to": "0x0dba21f1e0a7f164a6f4072822f969ad7d4c255d", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x906e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0xe89fc0c9a81bc25954884fb747c93df9e269d1555e36bdfaa7a5f0906a294006", + "transaction_position": 194, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x9a54fe35d41bc7c8f7071abf0ccd952505e29ceb", + "callType": "call", + "gas": "0xc8b5", + "input": "0xa9059cbb00000000000000000000000035a94822f1e9d5009fb1917de7d58d2403e20d9c00000000000000000000000000000000000000000000002d424d8292327b7c1b", + "to": "0x0417912b3a7af768051765040a55bb0925d4ddcf", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4ff8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0xe89fc0c9a81bc25954884fb747c93df9e269d1555e36bdfaa7a5f0906a294006", + "transaction_position": 194, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x0417912b3a7af768051765040a55bb0925d4ddcf", + "callType": "delegatecall", + "gas": "0xbb13", + "input": "0xa9059cbb00000000000000000000000035a94822f1e9d5009fb1917de7d58d2403e20d9c00000000000000000000000000000000000000000000002d424d8292327b7c1b", + "to": "0xb392b506552b4708bcc213be1793038008cfce74", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4522", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0xe89fc0c9a81bc25954884fb747c93df9e269d1555e36bdfaa7a5f0906a294006", + "transaction_position": 194, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x4d76ba909c924fa3c221084d3eac2718c5ba7ae7", + "callType": "call", + "gas": "0x1ea17", + "input": "0x7ff36ab5000000000000000000000000000000000000000000000306054a96bf2e865bfe00000000000000000000000000000000000000000000000000000000000000800000000000000000000000004d76ba909c924fa3c221084d3eac2718c5ba7ae7000000000000000000000000000000000000000000000000000000005f6be8af0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000cb8d1260f9c92a3a545d409466280ffdd7af7042", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x53444835ec580000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x1addd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000053444835ec580000000000000000000000000000000000000000000000000309e409ae8a60ad6e60" + }, + "subtraces": 4, + "trace_address": [], + "transaction_hash": "0xcba28c7a8fa8ef6d7a073ff10c465eb1706c490cbdb8e7c0ec49ef13c62031bc", + "transaction_position": 195, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1d50a", + "input": "0x0902f1ac", + "to": "0x41fcf9e248e2be21c5debe8f010080335dcb0d40", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000000005f1475fb7b934e9c3000000000000000000000000000000000000000000003ab8adef206f49023f13000000000000000000000000000000000000000000000000000000005f6be2ab" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xcba28c7a8fa8ef6d7a073ff10c465eb1706c490cbdb8e7c0ec49ef13c62031bc", + "transaction_position": 195, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1ac53", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x53444835ec580000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x5892", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xcba28c7a8fa8ef6d7a073ff10c465eb1706c490cbdb8e7c0ec49ef13c62031bc", + "transaction_position": 195, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x14bd4", + "input": "0xa9059cbb00000000000000000000000041fcf9e248e2be21c5debe8f010080335dcb0d4000000000000000000000000000000000000000000000000053444835ec580000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0xcba28c7a8fa8ef6d7a073ff10c465eb1706c490cbdb8e7c0ec49ef13c62031bc", + "transaction_position": 195, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1152e", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000309e409ae8a60ad6e600000000000000000000000004d76ba909c924fa3c221084d3eac2718c5ba7ae700000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x41fcf9e248e2be21c5debe8f010080335dcb0d40", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0xdb92", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 3 + ], + "transaction_hash": "0xcba28c7a8fa8ef6d7a073ff10c465eb1706c490cbdb8e7c0ec49ef13c62031bc", + "transaction_position": 195, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x41fcf9e248e2be21c5debe8f010080335dcb0d40", + "callType": "call", + "gas": "0xe8d6", + "input": "0xa9059cbb0000000000000000000000004d76ba909c924fa3c221084d3eac2718c5ba7ae7000000000000000000000000000000000000000000000309e409ae8a60ad6e60", + "to": "0xcb8d1260f9c92a3a545d409466280ffdd7af7042", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x398f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0xcba28c7a8fa8ef6d7a073ff10c465eb1706c490cbdb8e7c0ec49ef13c62031bc", + "transaction_position": 195, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x41fcf9e248e2be21c5debe8f010080335dcb0d40", + "callType": "staticcall", + "gas": "0xa937", + "input": "0x70a0823100000000000000000000000041fcf9e248e2be21c5debe8f010080335dcb0d40", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000000006448ba7eda58ce9c3" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0xcba28c7a8fa8ef6d7a073ff10c465eb1706c490cbdb8e7c0ec49ef13c62031bc", + "transaction_position": 195, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x41fcf9e248e2be21c5debe8f010080335dcb0d40", + "callType": "staticcall", + "gas": "0x9e45", + "input": "0x70a0823100000000000000000000000041fcf9e248e2be21c5debe8f010080335dcb0d40", + "to": "0xcb8d1260f9c92a3a545d409466280ffdd7af7042", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x4c2", + "output": "0x0000000000000000000000000000000000000000000037aec9e571e4e854d0b3" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0xcba28c7a8fa8ef6d7a073ff10c465eb1706c490cbdb8e7c0ec49ef13c62031bc", + "transaction_position": 195, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x3073ca162b2ba228b913fcbdcbd275c08bb8c408", + "callType": "call", + "gas": "0x6916", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x042afd3869a47e2d5d42cc787d5c9e19df32185f", + "value": "0x0" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x57be", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x9174bf6580f95802a9794c0964a55d79f44f8b18f480cee3fcf39905d0720b00", + "transaction_position": 196, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x674238181d4bda0e504461276674b4c196de7e8d", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xc2a75aea69b9d92e97aee109b76fa9cb09a384ac", + "value": "0x470de4df8200000" + }, + "block_hash": "0xb84b9cc2b12251b2c88edbdd781b82ae57bd9bc1a1f61a865b8ba103ae89751a", + "block_number": 10921991, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xf9b3e50a311aa87490eb9f15556a1223d8d11ebd1b2db28b55c66a1d63405f7f", + "transaction_position": 197, + "type": "call", + "error": null + } + ], + "receipts": [ + { + "block_number": 10921991, + "transaction_hash": "0x708bd389fc5e2cb917f3ccf61e4822d771334fa4a76315d59098aac634c83f5d", + "transaction_index": 0, + "gas_used": 1, + "effective_gas_price": 555000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xe3d1e9f3220f979ede68f3593a58f4cf1b1d36ce609082d76b9a7e57a84c0731", + "transaction_index": 1, + "gas_used": 0, + "effective_gas_price": 509501191787, + "cumulative_gas_used": 1, + "to": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85" + }, + { + "block_number": 10921991, + "transaction_hash": "0xc35915e955b54ac0f03e85e66c7b8f2944c582c4432b3640cefc06cb15e26333", + "transaction_index": 2, + "gas_used": 0, + "effective_gas_price": 509501191787, + "cumulative_gas_used": 1, + "to": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85" + }, + { + "block_number": 10921991, + "transaction_hash": "0xe0bb109209c597eafd0d69152b2729c939fb0fcdc8cca04f88e4a9f68e30b5cc", + "transaction_index": 3, + "gas_used": 18446744073709551615, + "effective_gas_price": 498515990013, + "cumulative_gas_used": 0, + "to": "0x77f5f3dfd95d0b061c9ef47c4f4ca4681d807776" + }, + { + "block_number": 10921991, + "transaction_hash": "0x8b3f754c237de8dffeb6a0c25affe5765794f1f674fa76561bc8b191f43590c4", + "transaction_index": 4, + "gas_used": 1, + "effective_gas_price": 450606591269, + "cumulative_gas_used": 1, + "to": "0x00000000553a85582988aa8ad43fb7dda2466bc7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x4abb32386fc236f63c41f3a536418969f7cb96076fa3a4a8707b0c977012fae4", + "transaction_index": 5, + "gas_used": 0, + "effective_gas_price": 412811302822, + "cumulative_gas_used": 1, + "to": "0x00000000553a85582988aa8ad43fb7dda2466bc7" + }, + { + "block_number": 10921991, + "transaction_hash": "0xb4793a59f265654ab1a81306842a02af87eb7ee62d2dc3204b8cb310cf7a98bd", + "transaction_index": 6, + "gas_used": 0, + "effective_gas_price": 402395236899, + "cumulative_gas_used": 1, + "to": "0xa619651c323923ecd5a8e5311771d57ac7e64d87" + }, + { + "block_number": 10921991, + "transaction_hash": "0x5bc2b16a3334d649d2c539fd64232edb8a7470031a7a056e35ea300d6222f8fd", + "transaction_index": 7, + "gas_used": 0, + "effective_gas_price": 258000000000, + "cumulative_gas_used": 1, + "to": "0xd7b9a9b2f665849c4071ad5af77d8c76aa30fb32" + }, + { + "block_number": 10921991, + "transaction_hash": "0xdd2e9e498fcba64fd6a809c83f09bf7bdac820f70b7f661d193a3615e0da116c", + "transaction_index": 8, + "gas_used": 0, + "effective_gas_price": 200000000000, + "cumulative_gas_used": 1, + "to": "0x6b175474e89094c44da98b954eedeac495271d0f" + }, + { + "block_number": 10921991, + "transaction_hash": "0x20877270ec1a2cbeba08a3ba003a7566e540ae9a3b5ee8ddf7b3491ead02ba37", + "transaction_index": 9, + "gas_used": 0, + "effective_gas_price": 198281017017, + "cumulative_gas_used": 1, + "to": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85" + }, + { + "block_number": 10921991, + "transaction_hash": "0x6646f0d27972d5b158d2f297dc01ad8f1b16583b94482ab74a0f1eb6cc758fe8", + "transaction_index": 10, + "gas_used": 18446744073709551615, + "effective_gas_price": 198280917017, + "cumulative_gas_used": 0, + "to": "0xb87c7d5a5ff0092cf427855c1ea9b7708d717292" + }, + { + "block_number": 10921991, + "transaction_hash": "0x3b93581dea3fe8c93b98ba874f85ecf6f5ee8a1c5f8317323e2535c5fde7f4d4", + "transaction_index": 11, + "gas_used": 1, + "effective_gas_price": 190687745356, + "cumulative_gas_used": 1, + "to": "0x0000000000000000000000000000000000000000" + }, + { + "block_number": 10921991, + "transaction_hash": "0x580141f75bed539378c0ec538ff853e91b854f9a8e83ce2cef8c6abc59b37846", + "transaction_index": 12, + "gas_used": 0, + "effective_gas_price": 183700000233, + "cumulative_gas_used": 1, + "to": "0xac90e3cbb5756f91d82e27fe697706c405caf09a" + }, + { + "block_number": 10921991, + "transaction_hash": "0x0b6d3b20c6204236464bf478b61d7a8c6155375638cad6d6c8c679a3bb4b07e8", + "transaction_index": 13, + "gas_used": 0, + "effective_gas_price": 132418548001, + "cumulative_gas_used": 1, + "to": "0xfe56a0dbdad44dd14e4d560632cc842c8a13642b" + }, + { + "block_number": 10921991, + "transaction_hash": "0x7f9d68ec3bc988f971e2313b5c9abb21d5392b0c45254aea09696be048bffc6c", + "transaction_index": 14, + "gas_used": 0, + "effective_gas_price": 131418548001, + "cumulative_gas_used": 1, + "to": "0xfe56a0dbdad44dd14e4d560632cc842c8a13642b" + }, + { + "block_number": 10921991, + "transaction_hash": "0xb3543822df391687607f6e5bba3253861b192c9e5d96128205863e8861016615", + "transaction_index": 15, + "gas_used": 0, + "effective_gas_price": 130000000000, + "cumulative_gas_used": 1, + "to": "0xc6635074d5cf8c47585fab0b3ebf15c56fc6af53" + }, + { + "block_number": 10921991, + "transaction_hash": "0x4f70155548f01a297595f220120afd444288162c531950d7a3084c552b29d64a", + "transaction_index": 16, + "gas_used": 0, + "effective_gas_price": 127000000000, + "cumulative_gas_used": 1, + "to": "0xe775f3f32cf6535670cb15bc67093db2feb4fc84" + }, + { + "block_number": 10921991, + "transaction_hash": "0xcd57bab161f9e6a92b4ab2c7bd842a1f9195305fb48ecc482f9d2772f76ba8ac", + "transaction_index": 17, + "gas_used": 0, + "effective_gas_price": 124689049262, + "cumulative_gas_used": 1, + "to": "0xc16c51bb5fd93765ea53e79388aaa54759552d32" + }, + { + "block_number": 10921991, + "transaction_hash": "0xe0f2334d5ff56e3cca78176f1906e06ec9617b540cba6fa184a06f4d97eabbab", + "transaction_index": 18, + "gas_used": 0, + "effective_gas_price": 109500000000, + "cumulative_gas_used": 1, + "to": "0x465af0c2508b90475e9a0f0dccbaac3d7fcf2cf1" + }, + { + "block_number": 10921991, + "transaction_hash": "0xe0d40f6a6803e93e4c02ace23ea0a14be5159bcdff472a94814173b23d532c13", + "transaction_index": 19, + "gas_used": 0, + "effective_gas_price": 105820000000, + "cumulative_gas_used": 1, + "to": "0xeff9782fc2f4f20043bbf936cd9ffa42da6e9c27" + }, + { + "block_number": 10921991, + "transaction_hash": "0x9e0de4d65c2db4bbd254adec3c16b9ee5518960e4b26c9bcf27f01e32e709187", + "transaction_index": 20, + "gas_used": 0, + "effective_gas_price": 100000000000, + "cumulative_gas_used": 1, + "to": "0xd18d7139e2f1ceece44c01e7adb06cb20716d66b" + }, + { + "block_number": 10921991, + "transaction_hash": "0xaeb4f12ef5f452c9312dc3748a73e70740b2f46aa744aeaa162387ed4847f959", + "transaction_index": 21, + "gas_used": 0, + "effective_gas_price": 100000000000, + "cumulative_gas_used": 1, + "to": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39" + }, + { + "block_number": 10921991, + "transaction_hash": "0x29eca67a5a4c043bc043b7c78c8e26cda4b471805024e067f8a63936e3d526aa", + "transaction_index": 22, + "gas_used": 0, + "effective_gas_price": 100000000000, + "cumulative_gas_used": 1, + "to": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39" + }, + { + "block_number": 10921991, + "transaction_hash": "0x516c1126419ffc13a1a63237005f5e2aa49e3a2ca6331fec78744f671a0d8ed1", + "transaction_index": 23, + "gas_used": 0, + "effective_gas_price": 100000000000, + "cumulative_gas_used": 1, + "to": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39" + }, + { + "block_number": 10921991, + "transaction_hash": "0xe8fd53ca680e729bb16624dc5003de14180f6ca9fb936044ade416c6c70d114d", + "transaction_index": 24, + "gas_used": 0, + "effective_gas_price": 100000000000, + "cumulative_gas_used": 1, + "to": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39" + }, + { + "block_number": 10921991, + "transaction_hash": "0xb4a542d1db4a48668753ade47a5124f728ab65bbc2d1b97fc9904196b94f1f3e", + "transaction_index": 25, + "gas_used": 0, + "effective_gas_price": 97500000000, + "cumulative_gas_used": 1, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + { + "block_number": 10921991, + "transaction_hash": "0xacdcf9084b71a6e27805962ddc19ee52fc54f05e1b3ee73533b24030fa7cab11", + "transaction_index": 26, + "gas_used": 0, + "effective_gas_price": 95000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xecc74d6f418d911c6fa439430eb77dd93914cd367eb6aafa4ee7cdd351142e5c", + "transaction_index": 27, + "gas_used": 0, + "effective_gas_price": 94000000000, + "cumulative_gas_used": 1, + "to": "0xe99a894a69d7c2e3c92e61b64c505a6a57d2bc07" + }, + { + "block_number": 10921991, + "transaction_hash": "0x8bb4ea1b49ccd84d3b0f3c770345c880094a9a31fdef5e1658409fa5a42e7cd7", + "transaction_index": 28, + "gas_used": 0, + "effective_gas_price": 94000000000, + "cumulative_gas_used": 1, + "to": "0xe99a894a69d7c2e3c92e61b64c505a6a57d2bc07" + }, + { + "block_number": 10921991, + "transaction_hash": "0x39f2933de115f685a0ba6ffb1592705b6f143b142cbba604135d9082959200a0", + "transaction_index": 29, + "gas_used": 0, + "effective_gas_price": 94000000000, + "cumulative_gas_used": 1, + "to": "0x48915685c7b2e45dec99e7d40df7331646dd1856" + }, + { + "block_number": 10921991, + "transaction_hash": "0x06774eed956a8cdb85fbefe77f2591b14e45b2302f73b4499fd037443dfa601a", + "transaction_index": 30, + "gas_used": 0, + "effective_gas_price": 94000000000, + "cumulative_gas_used": 1, + "to": "0xe99a894a69d7c2e3c92e61b64c505a6a57d2bc07" + }, + { + "block_number": 10921991, + "transaction_hash": "0x4eb5eaff4d169325b730adc140ee8988fafba07d3cd34efc771e081b314fa27d", + "transaction_index": 31, + "gas_used": 0, + "effective_gas_price": 93000000000, + "cumulative_gas_used": 1, + "to": "0x6781a0f84c7e9e846dcb84a9a5bd49333067b104" + }, + { + "block_number": 10921991, + "transaction_hash": "0xa2608d548c78af7edf57e6f6e410a7fb23ad7d817f624b40317eedd7b79dd663", + "transaction_index": 32, + "gas_used": 0, + "effective_gas_price": 93000000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x708e501f7a71d590f322c922ee93ef80fd876a2f0a4202739ae7d17fa3f402e6", + "transaction_index": 33, + "gas_used": 0, + "effective_gas_price": 93000000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0xafca14cdee254c334352b2b66481de2fd7c732651863338d93fed6e7d66a46e0", + "transaction_index": 34, + "gas_used": 0, + "effective_gas_price": 92000000000, + "cumulative_gas_used": 1, + "to": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8" + }, + { + "block_number": 10921991, + "transaction_hash": "0x3fd108e0f6005033fcc0b679a553c23463bb956663878621a01e9ba708bf5384", + "transaction_index": 35, + "gas_used": 0, + "effective_gas_price": 92000000000, + "cumulative_gas_used": 1, + "to": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce" + }, + { + "block_number": 10921991, + "transaction_hash": "0x003a04f032b3d71932b247c1334caf90cf3b47b9c28ba7d8860f665cb669feef", + "transaction_index": 36, + "gas_used": 18446744073709551615, + "effective_gas_price": 92000000000, + "cumulative_gas_used": 0, + "to": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f" + }, + { + "block_number": 10921991, + "transaction_hash": "0x75fce30de3f3d31f8fe45fe4ece3605ec9b3c6de8a77b1750b30f6bed6e4246f", + "transaction_index": 37, + "gas_used": 1, + "effective_gas_price": 92000000000, + "cumulative_gas_used": 1, + "to": "0x11111254369792b2ca5d084ab5eea397ca8fa48b" + }, + { + "block_number": 10921991, + "transaction_hash": "0x7d3364ff6d36c102a2bba82d425e9635ca49b8cd5cda546553ca251295dca39d", + "transaction_index": 38, + "gas_used": 0, + "effective_gas_price": 92000000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x7ac97d885be687317f3949cf57fd672c10290998215cf9fc820cebc322733e2c", + "transaction_index": 39, + "gas_used": 0, + "effective_gas_price": 92000000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0xf8e60f8cb0e45c6f43921d0b7efb183c18fa0601b851c7c1da79d81dfc0f0b00", + "transaction_index": 40, + "gas_used": 0, + "effective_gas_price": 92000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xf74eaa8a2dd8f9907e6b2ca84f1a7bef0ed52bba71b9e045ba9c70e7ad8ddbd3", + "transaction_index": 41, + "gas_used": 0, + "effective_gas_price": 91250000000, + "cumulative_gas_used": 1, + "to": "0x0d188cec4a7374b77d959e869ac260bc5ab8322d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xb80c8df4ffde56a7f546178771cdb118631f123b9678f6c947cf975efaf92d29", + "transaction_index": 42, + "gas_used": 0, + "effective_gas_price": 90090099769, + "cumulative_gas_used": 1, + "to": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85" + }, + { + "block_number": 10921991, + "transaction_hash": "0x0fbd5e9a65ec7c0660ce0c238eea8ca484d23b4cb8faec211ddb025f49d1f463", + "transaction_index": 43, + "gas_used": 0, + "effective_gas_price": 90090099769, + "cumulative_gas_used": 1, + "to": "0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85" + }, + { + "block_number": 10921991, + "transaction_hash": "0xad2943350bfc4c06f54f0231c981260e6b459d8527cd53880a4e0dbabbc868a1", + "transaction_index": 44, + "gas_used": 0, + "effective_gas_price": 89000000000, + "cumulative_gas_used": 1, + "to": "0x558ec3152e2eb2174905cd19aea4e34a23de9ad6" + }, + { + "block_number": 10921991, + "transaction_hash": "0xa160e6cf82437a947df9e07bf51acf996fd2eb78cc225389d15e065fc4c4ac3f", + "transaction_index": 45, + "gas_used": 0, + "effective_gas_price": 87975460344, + "cumulative_gas_used": 1, + "to": "0x0f8aa39a58adcc3df98d826ac798ab837cc0833c" + }, + { + "block_number": 10921991, + "transaction_hash": "0x99ff74b678033f9e0f5ce82f167f4b31ac7627eb01c42cd87f7ed05efa1bd484", + "transaction_index": 46, + "gas_used": 0, + "effective_gas_price": 87975460344, + "cumulative_gas_used": 1, + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + { + "block_number": 10921991, + "transaction_hash": "0x67d7a67a8da3b58e8967bb3ee2863bed5b020a487c567599a2c76a4474477010", + "transaction_index": 47, + "gas_used": 0, + "effective_gas_price": 87600000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0xbcebc2fb3975c5d6083d55b49d426c4185f2030938e27487ddf857d9f076ebeb", + "transaction_index": 48, + "gas_used": 0, + "effective_gas_price": 87600000000, + "cumulative_gas_used": 1, + "to": "0xa15ef0101ea50e2bf6a35f0c0186f63d514c6263" + }, + { + "block_number": 10921991, + "transaction_hash": "0x18fd639f8f32ad32c40393dbbdca688b478a8be849b00c8ce841701fe0e8d76c", + "transaction_index": 49, + "gas_used": 0, + "effective_gas_price": 86000000000, + "cumulative_gas_used": 1, + "to": "0xfe1a8a2e87bebca57f853c1d53f99fcc104bf732" + }, + { + "block_number": 10921991, + "transaction_hash": "0x95c0222848750c5a8a7391f989538886997a1c749f87781a7c2df882268c19ad", + "transaction_index": 50, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x72a9d0f197ce3aa9eb8fcd921626c21b8afeccd2fd69c4f284e3fe6910083684", + "transaction_index": 51, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e" + }, + { + "block_number": 10921991, + "transaction_hash": "0x9751c61b14f80ef1ff093c35133790e93560088357a2330f8c40c65ead58be03", + "transaction_index": 52, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x4df2198fbea8d0d3c89b5d5f0798ee417d32646939eec8f3d81869d299644412", + "transaction_index": 53, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e" + }, + { + "block_number": 10921991, + "transaction_hash": "0x2d4c0b205c7b4bc4cd3c2af00234ec16fae3beca07979fec69b55b57778a98f0", + "transaction_index": 54, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0xa480190bce9987a548f3afb09874e2f501d3e79c" + }, + { + "block_number": 10921991, + "transaction_hash": "0xb4c56134a6ba4691082ee856f04c0c080b5c0cdff4dc8a7aede3e26791e9dcde", + "transaction_index": 55, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e" + }, + { + "block_number": 10921991, + "transaction_hash": "0xea75036aedf0a392fe699ff656632d76a4af00da27ea75b10c6f8c76c890dd22", + "transaction_index": 56, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e" + }, + { + "block_number": 10921991, + "transaction_hash": "0xab97af61a74b5734c68607065d614bf1126e7ec99214c5fcca09b378a5ecfc56", + "transaction_index": 57, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x767203a405b557cac224ec47a0ff3a4155d2ffad" + }, + { + "block_number": 10921991, + "transaction_hash": "0xfed6e422118038664b060660898a863bfd5a7ee23ec414de70976e7d753844e6", + "transaction_index": 58, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + { + "block_number": 10921991, + "transaction_hash": "0xf5ff645a03d292c0074b89aac5d5366f03e025efcc622a666786d4ac4beb15a3", + "transaction_index": 59, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x035065526b13deac91453ef2c2f386e3d32ffa3a" + }, + { + "block_number": 10921991, + "transaction_hash": "0x5d39a03493374ac701b9d0748c3815dc9ff6e2ce64a21c06d7e0974db2c091a8", + "transaction_index": 60, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x29df6b4985db427bd317466f691de0da5f6a3d1f" + }, + { + "block_number": 10921991, + "transaction_hash": "0x4ff172ad263077c8a14d7e8e27b4b7333dcf420b8d1e6b3794cbb2ce608ab571", + "transaction_index": 61, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984" + }, + { + "block_number": 10921991, + "transaction_hash": "0xa1620fb46a800b9eea6a00cbd774a8eae7ebac28779989aef404c9ee30779a0a", + "transaction_index": 62, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x6c84f201e1ea124aaae3c3c1da04908387baf1f3" + }, + { + "block_number": 10921991, + "transaction_hash": "0x05b69342c4d9b7d397af7bdd3821b7dd2ba43876b905dc82b5f0ed82bbf319ca", + "transaction_index": 63, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x04fa0d235c4abf4bcf4787af4cf447de572ef828" + }, + { + "block_number": 10921991, + "transaction_hash": "0xdb700f116257ded67852e10c8edfeb72a6241b25aae7158c3e1e1485e5621a37", + "transaction_index": 64, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4" + }, + { + "block_number": 10921991, + "transaction_hash": "0x8e82264227fa8033725a171cf4127a9428d3b99daaa1a483b37ef53ee5194f0f", + "transaction_index": 65, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4" + }, + { + "block_number": 10921991, + "transaction_hash": "0x3b06130e6637a76ef1821c3c81f845dca37bdac0078a6d384dd4a8994212849c", + "transaction_index": 66, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4" + }, + { + "block_number": 10921991, + "transaction_hash": "0xe0946483b9ac83699ab0399db50bc1abd5c0e367b264a2c345d0ccdea578c617", + "transaction_index": 67, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4" + }, + { + "block_number": 10921991, + "transaction_hash": "0xaf61f524492246a33ebf4678a4f7e20cd198c337a63e4b97d8f518ad7ea9405c", + "transaction_index": 68, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x0635e7362e13215d6dcc0e63a0007eebecc408e4" + }, + { + "block_number": 10921991, + "transaction_hash": "0xded9164e9dcf0102169541a165d0bccbeb404d8628963f2e07b87032052e7b81", + "transaction_index": 69, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x774f9eaee89d448c25bb2c049c2669fcb2f61ef1a32d80afe86efcf667befba1", + "transaction_index": 70, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984" + }, + { + "block_number": 10921991, + "transaction_hash": "0xf1f0d77aa621e5e2a740a6a4a9ee43a5a88371c5b6ec85a5c7461eed14509e56", + "transaction_index": 71, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0x5d76408a111ada8e367eb6e54451d869482a96da" + }, + { + "block_number": 10921991, + "transaction_hash": "0x53084fe9c209c459ab9f9a0c7a8ce6a8b2c3387ac8af85b298ed56a53c08d047", + "transaction_index": 72, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0xd4dc6fd56fd0b0c7f1a7748dd9749c2a24f2cb7b" + }, + { + "block_number": 10921991, + "transaction_hash": "0xca682d40914d63f863d39b8b9b0f87fc8fb7d45ecfb6d84441c45037e74e9c66", + "transaction_index": 73, + "gas_used": 0, + "effective_gas_price": 83000000000, + "cumulative_gas_used": 1, + "to": "0xe9e9d5b98bfc9a83d162422626421a171d520fef" + }, + { + "block_number": 10921991, + "transaction_hash": "0xf69de8f2a6503256ca3cd9b63a3c1199481b5f6462ba357eb50c80c2b1ca1e7f", + "transaction_index": 74, + "gas_used": 18446744073709551615, + "effective_gas_price": 82582499789, + "cumulative_gas_used": 0, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x58a35489474df16443987cd512bd98ff42b9ddb7e3959aa05f150f152720cefc", + "transaction_index": 75, + "gas_used": 1, + "effective_gas_price": 82582499789, + "cumulative_gas_used": 1, + "to": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce" + }, + { + "block_number": 10921991, + "transaction_hash": "0xdd69116515355534ed757a00afe3563283411671cb059bb38c55b02cd30ee97d", + "transaction_index": 76, + "gas_used": 0, + "effective_gas_price": 82125000002, + "cumulative_gas_used": 1, + "to": "0xfb80bfa19cae9e00f28b0f7e1023109deeb10483" + }, + { + "block_number": 10921991, + "transaction_hash": "0x7543c5c83f921d0cd056b4dac104f86827b5fcdb4634889f8182e4bf1d21df67", + "transaction_index": 77, + "gas_used": 0, + "effective_gas_price": 82000000000, + "cumulative_gas_used": 1, + "to": "0x7ee8ab2a8d890c000acc87bf6e22e2ad383e23ce" + }, + { + "block_number": 10921991, + "transaction_hash": "0x50f9bd0b64d27145ed1b1eb889dcddcd42df2f57547e331f9d3420363d577f53", + "transaction_index": 78, + "gas_used": 0, + "effective_gas_price": 82000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x46286f2b703b744414bf1cb4f52434b01f1c4a9c80fc2c779c5747c611329abb", + "transaction_index": 79, + "gas_used": 0, + "effective_gas_price": 82000000000, + "cumulative_gas_used": 1, + "to": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8" + }, + { + "block_number": 10921991, + "transaction_hash": "0x2dc7eadf33ec83797b8939a890d299e5731cce755e5cbc58770d6657de1eb662", + "transaction_index": 80, + "gas_used": 0, + "effective_gas_price": 82000000000, + "cumulative_gas_used": 1, + "to": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66" + }, + { + "block_number": 10921991, + "transaction_hash": "0x53d60e640b902f253a8ae75e4ca77e9624d57a50d9705d6a3a746edd82f8d459", + "transaction_index": 81, + "gas_used": 0, + "effective_gas_price": 82000000000, + "cumulative_gas_used": 1, + "to": "0x3930f8809fd21dc3ec725a92f16d5468ebf27e88" + }, + { + "block_number": 10921991, + "transaction_hash": "0x91f05531e66858fbc09ddc3e04cc0fc083148be397bf9220a8839b6604ddeb66", + "transaction_index": 82, + "gas_used": 0, + "effective_gas_price": 81000000000, + "cumulative_gas_used": 1, + "to": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984" + }, + { + "block_number": 10921991, + "transaction_hash": "0xbefdb05a1d08b22e5821dd5b3443f0d7dec045b5f36f42c4eb8fde7318c056ae", + "transaction_index": 83, + "gas_used": 0, + "effective_gas_price": 81000000000, + "cumulative_gas_used": 1, + "to": "0x3f382dbd960e3a9bbceae22651e88158d2791550" + }, + { + "block_number": 10921991, + "transaction_hash": "0x4f731d24bdf636c53e307a27a64e876de83391b20b99ec07123f816d2df98235", + "transaction_index": 84, + "gas_used": 0, + "effective_gas_price": 80400000000, + "cumulative_gas_used": 1, + "to": "0x7a9d706b2a3b54f7cf3b5f2fcf94c5e2b3d7b24b" + }, + { + "block_number": 10921991, + "transaction_hash": "0x783315cee057dda5d23a5e95d318dfbb207d0e04253d39cc047d59d5d9a65daa", + "transaction_index": 85, + "gas_used": 0, + "effective_gas_price": 80400000000, + "cumulative_gas_used": 1, + "to": "0x8cfb1d4269f0daa003cdea567ac8f76c0647764a" + }, + { + "block_number": 10921991, + "transaction_hash": "0x066907b818782b2ab57aa9330d01a9932786ed587862045ee4b7cf437cbe39b4", + "transaction_index": 86, + "gas_used": 0, + "effective_gas_price": 80400000000, + "cumulative_gas_used": 1, + "to": "0x4565300c576431e5228e8aa32642d5739cf9247d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x3f8dde500a4355c128bf499c654b0e05fe03b5fff93b08c1ada0dac40e1fb37e", + "transaction_index": 87, + "gas_used": 0, + "effective_gas_price": 80400000000, + "cumulative_gas_used": 1, + "to": "0x180486507e7e20490fc0228efd182989e0bd61cc" + }, + { + "block_number": 10921991, + "transaction_hash": "0x8ead25d41f782a691fdc4b75469ddb88ae6b0f4c1f014ba8f15b6cfa745cb180", + "transaction_index": 88, + "gas_used": 0, + "effective_gas_price": 80400000000, + "cumulative_gas_used": 1, + "to": "0x64fd0abd4d8f5a0a7502c0078d959e57ca1207ab" + }, + { + "block_number": 10921991, + "transaction_hash": "0x2697f8f97b7a8fa856a931aaf8b4d4b1ea2340873705f6602274452609fee3fe", + "transaction_index": 89, + "gas_used": 0, + "effective_gas_price": 80400000000, + "cumulative_gas_used": 1, + "to": "0xf5a3d443fccd7ee567000e43b23b0e98d96445ce" + }, + { + "block_number": 10921991, + "transaction_hash": "0xe6c0e3ef0436cb032e1ef292141f4fc4dcd47a75a2559602133114952190e76b", + "transaction_index": 90, + "gas_used": 0, + "effective_gas_price": 80399999999, + "cumulative_gas_used": 1, + "to": "0xf2d9e54f0e317b8ac94825b2543908e7552fe9c7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x9353046bbece779d6194bb6b73c6dfbe4b1ce5c6693e695323d49c23ba53ac8a", + "transaction_index": 91, + "gas_used": 0, + "effective_gas_price": 80300000000, + "cumulative_gas_used": 1, + "to": "0x469b2379badaf80d2856923912b87a26a1bc02b7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x2d78078a01149a0d0a921bd521ba0a8b6f653e83660ca95e3ee52dac3490eaf0", + "transaction_index": 92, + "gas_used": 0, + "effective_gas_price": 80300000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x447296c4bc7058467411e811f1e50ddf17a3f9fda31a80cf82c61973e2e59c23", + "transaction_index": 93, + "gas_used": 0, + "effective_gas_price": 80300000000, + "cumulative_gas_used": 1, + "to": "0x8fa87484cc6e0df0f98087047bfd8cbff1fecd1a" + }, + { + "block_number": 10921991, + "transaction_hash": "0x80380024c396ea85304c994771dbf572145d76716d31eb1f734641a61090cc7e", + "transaction_index": 94, + "gas_used": 0, + "effective_gas_price": 80300000000, + "cumulative_gas_used": 1, + "to": "0x91a19bc2b92ffb867cd5bd691346d6847cc2a842" + }, + { + "block_number": 10921991, + "transaction_hash": "0xd6709ace0c1f27476187019f58a190a7c2e94ea6285986fb2124e0bae5285bfb", + "transaction_index": 95, + "gas_used": 0, + "effective_gas_price": 80300000000, + "cumulative_gas_used": 1, + "to": "0x466912baa9430a4a460b141ee8c580d817441449" + }, + { + "block_number": 10921991, + "transaction_hash": "0xaf18b3ceb458b30d7a570daf53e8f32f1b0d39684dd807fd4b6ccb7212b8c018", + "transaction_index": 96, + "gas_used": 0, + "effective_gas_price": 80300000000, + "cumulative_gas_used": 1, + "to": "0xf3a4101f94831d404f2fbab0d333fad42d79e06d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xea5bc1f234f7d53c397045fbdf9382a0abf7ce26f098ba8cc92324187e0684ac", + "transaction_index": 97, + "gas_used": 0, + "effective_gas_price": 80300000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x996762b28091b9d3deefeac29deb770828cde15645f64dc4b18592b412e151fd", + "transaction_index": 98, + "gas_used": 0, + "effective_gas_price": 80300000000, + "cumulative_gas_used": 1, + "to": "0xe1f922d47e415ead0819894999667fd7c1b2bf16" + }, + { + "block_number": 10921991, + "transaction_hash": "0xf1e8f13819d2a76e3415eb5cb8bf3200d77cae9ccf3f6ba8bc1de9c92bee63be", + "transaction_index": 99, + "gas_used": 0, + "effective_gas_price": 80300000000, + "cumulative_gas_used": 1, + "to": "0xd7f7a061cf539c090156c3816412588e7113a176" + }, + { + "block_number": 10921991, + "transaction_hash": "0x6e970e7a5b8017be707c3e7c47c030ceaea12e48510cb6424f8a473ad3490bb7", + "transaction_index": 100, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x886ac8a5e4f80a52d464a43d5fd1f6fa2377c3bf" + }, + { + "block_number": 10921991, + "transaction_hash": "0x21c5e93fbb93b7eddc740d251100026d8848b4ac07234986652282ce59f7b278", + "transaction_index": 101, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x4a54f198d08882258d364d595e3902f343e3ac74954a58662727dfe5ba9d027d", + "transaction_index": 102, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x4316952cc65994c44ad61e72ed30fad159ed762e" + }, + { + "block_number": 10921991, + "transaction_hash": "0x3199242d96635126113f92ff6c79300b0aca3bbececcb0cc6015e52339880714", + "transaction_index": 103, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x8e66faee6e40555f140acb32a3c1e8167ba99877" + }, + { + "block_number": 10921991, + "transaction_hash": "0x69f6b799678ac94ff01c4267e32725bc02e22bdca86da7f5183d1f8f8e9c8fcf", + "transaction_index": 104, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x1a17adeecf2d3c6635125f30d5bd3593674b4528" + }, + { + "block_number": 10921991, + "transaction_hash": "0x000284ee1dc5b5884e531f631910823ca865e79af5c61388b6588ad13b9b1825", + "transaction_index": 105, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x9d86b1b2554ec410eccffbf111a6994910111340" + }, + { + "block_number": 10921991, + "transaction_hash": "0xbfc92ce884044abe083878c19132fd23241fa09175ba7003e86ac3beb374271f", + "transaction_index": 106, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x4fab46250598907f8323706a5029ac228040fbaa" + }, + { + "block_number": 10921991, + "transaction_hash": "0x9e124b66ca502df7b2fdc162fedf149e508dd8622ec4f21ac1777a16aee3652f", + "transaction_index": 107, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x37a6f7019fb0f9967a6eafa9ef80a631444d3245" + }, + { + "block_number": 10921991, + "transaction_hash": "0x526c135fa544fac4bb711e1c2f1d00b69780a9bb8044ab274e0165aa9b0caf4e", + "transaction_index": 108, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0xc41da469cd94d2924433446611eba7841a01726d5ed6cf10a3d7d03ac2b530aa", + "transaction_index": 109, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0xbcf935d206ca32929e1b887a07ed240f0d8ccd22" + }, + { + "block_number": 10921991, + "transaction_hash": "0x794e27c399f52d3be45f63a29399747acfc1244545f1bfcda1d86704171ff58d", + "transaction_index": 110, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x37a6f7019fb0f9967a6eafa9ef80a631444d3245" + }, + { + "block_number": 10921991, + "transaction_hash": "0xd3e81681f63fb50fa32070bd1fe49d564293d88fa2468ef15b0e817c8e950e28", + "transaction_index": 111, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x0c531fa74c38aaa5588ffe499a043bc68575ebad" + }, + { + "block_number": 10921991, + "transaction_hash": "0x201454ba2b83344cb65438cc8e93a18bdf19a644a853eb4a51cc442358356308", + "transaction_index": 112, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x19770235170b723992233a7eed8447e1f27c065bd959bffa9f873e415a3e8821", + "transaction_index": 113, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd" + }, + { + "block_number": 10921991, + "transaction_hash": "0x92db4ae17fa506b9e16c85ec2d98c601e2aa94893b7a15a7191f016828a616f2", + "transaction_index": 114, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x5befbb272290dd5b8521d4a938f6c4757742c430" + }, + { + "block_number": 10921991, + "transaction_hash": "0x332bab853b613d5445dd4b69bef35330433f6e0c57b818fce1ea6fbfdc74f239", + "transaction_index": 115, + "gas_used": 18446744073709551615, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 0, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xd9f867d7450b4046de6ac06e8d43f4523b14b347c9fdeb1c5aab943c5215ec13", + "transaction_index": 116, + "gas_used": 1, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xbab835727e492a82495afb97af9a1dd2a2bb57ae105e840f013941d4ba8d20e9", + "transaction_index": 117, + "gas_used": 0, + "effective_gas_price": 80000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x13e77405f87de514759d176564716d341cc176f7db276a58836c4a4cdff949c6", + "transaction_index": 118, + "gas_used": 0, + "effective_gas_price": 79000000000, + "cumulative_gas_used": 1, + "to": "0x4e15361fd6b4bb609fa63c81a2be19d873717870" + }, + { + "block_number": 10921991, + "transaction_hash": "0x3d13bc752dbc14f9d4a86e9bec1cf77d77a8945dc79e246dc3d0dcfd9ab0cb2b", + "transaction_index": 119, + "gas_used": 0, + "effective_gas_price": 78000000000, + "cumulative_gas_used": 1, + "to": "0xcce8d59affdd93be338fc77fa0a298c2cb65da59" + }, + { + "block_number": 10921991, + "transaction_hash": "0xd620e4dead830048f17ac4d3446a0fa9f394bbd54fb31bf2a04c1857a3af686f", + "transaction_index": 120, + "gas_used": 0, + "effective_gas_price": 77000001561, + "cumulative_gas_used": 1, + "to": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2" + }, + { + "block_number": 10921991, + "transaction_hash": "0x08dc17763bb9fbe95238ed2ef265b8d3a30d335cdd62eecd2653b725cbe6da64", + "transaction_index": 121, + "gas_used": 0, + "effective_gas_price": 77000001459, + "cumulative_gas_used": 1, + "to": "0xd1ceeeeee83f8bcf3bedad437202b6154e9f5405" + }, + { + "block_number": 10921991, + "transaction_hash": "0xfc6b2591687ef437b387943edf8c4c0f06cec078e86fe4ccb2ec135091d1740b", + "transaction_index": 122, + "gas_used": 0, + "effective_gas_price": 77000000000, + "cumulative_gas_used": 1, + "to": "0xca1207647ff814039530d7d35df0e1dd2e91fa84" + }, + { + "block_number": 10921991, + "transaction_hash": "0xbe2d1193cc01138bc62749c0b7687b15aa52b3d0609c03a11451e2342098ecb8", + "transaction_index": 123, + "gas_used": 0, + "effective_gas_price": 77000000000, + "cumulative_gas_used": 1, + "to": "0xca1207647ff814039530d7d35df0e1dd2e91fa84" + }, + { + "block_number": 10921991, + "transaction_hash": "0x987fbefd3be69040508e74ebf255ee7549f8086954f64dc73d39737fcaf789fb", + "transaction_index": 124, + "gas_used": 0, + "effective_gas_price": 76090000000, + "cumulative_gas_used": 1, + "to": "0x829aa8e3455d0d6f18ed46121a64268ca0782465" + }, + { + "block_number": 10921991, + "transaction_hash": "0x8bb69626d581955598943b67518a9b45e53ff8c096b56506d2d1887a982a7466", + "transaction_index": 125, + "gas_used": 0, + "effective_gas_price": 76000001459, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x13e07985deb8fbe59f192062cb06c0c026b6721c441f52ff28b86fbf44ca6f79", + "transaction_index": 126, + "gas_used": 0, + "effective_gas_price": 76000001459, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0xce7720cae6393bf63472f14888b4330ef4a88b4a08d175596765b75cd761e719", + "transaction_index": 127, + "gas_used": 0, + "effective_gas_price": 76000000000, + "cumulative_gas_used": 1, + "to": "0x514910771af9ca656af840dff83e8264ecf986ca" + }, + { + "block_number": 10921991, + "transaction_hash": "0x1638eef95ea9f68d2acc3092d3a0bcd450deef0d25ccdb2a36198df79fe36bd5", + "transaction_index": 128, + "gas_used": 0, + "effective_gas_price": 75900000233, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x7d1bee77a81394967af380b2f541b595bebe089e722693903d334f8768e85d7f", + "transaction_index": 129, + "gas_used": 0, + "effective_gas_price": 75900000233, + "cumulative_gas_used": 1, + "to": "0x3f382dbd960e3a9bbceae22651e88158d2791550" + }, + { + "block_number": 10921991, + "transaction_hash": "0xac24ac76e1f96bab8fad61567a79aeb5b11dab71ce6937a28fc97a3d3bff8b4c", + "transaction_index": 130, + "gas_used": 0, + "effective_gas_price": 75900000233, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x390dd9a5161844112bb66edb187e366533cc2c9c7b77e85f8b964e7b55147327", + "transaction_index": 131, + "gas_used": 0, + "effective_gas_price": 75074999808, + "cumulative_gas_used": 1, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + { + "block_number": 10921991, + "transaction_hash": "0xc7b6ec527a4a28fb180c9ce9b40868e68d7e423f0fc2bf84108ab6b85b39832a", + "transaction_index": 132, + "gas_used": 0, + "effective_gas_price": 75000001459, + "cumulative_gas_used": 1, + "to": "0x2a69cc67f659e1d634fc92abba8de6a193403a0b" + }, + { + "block_number": 10921991, + "transaction_hash": "0x294ccd0b61a490653e1fd1f27eb02f57bd0e606cad18bb35987b9ad10bf0366b", + "transaction_index": 133, + "gas_used": 0, + "effective_gas_price": 75000001459, + "cumulative_gas_used": 1, + "to": "0x2a69cc67f659e1d634fc92abba8de6a193403a0b" + }, + { + "block_number": 10921991, + "transaction_hash": "0xdd3ce0abef2a5f2f135c7625fbb85eff7bbf1688f52dbf3e7874515e4ddeff6f", + "transaction_index": 134, + "gas_used": 0, + "effective_gas_price": 75000000000, + "cumulative_gas_used": 1, + "to": "0x85aeace84a130bc1accce2a9f4f933f6765b0b9b" + }, + { + "block_number": 10921991, + "transaction_hash": "0x9e4fe8540c07cb34b6db35cada620b11461de26731ab7e46a010d804954fe3cc", + "transaction_index": 135, + "gas_used": 0, + "effective_gas_price": 75000000000, + "cumulative_gas_used": 1, + "to": "0xb4722fd211680151ce4e238b00ccbe684d059708" + }, + { + "block_number": 10921991, + "transaction_hash": "0xf689950e95133e3b37459ab3624a6592f7d22a1da1d3972c35b4c686424ad220", + "transaction_index": 136, + "gas_used": 0, + "effective_gas_price": 75000000000, + "cumulative_gas_used": 1, + "to": "0x0d8775f648430679a709e98d2b0cb6250d2887ef" + }, + { + "block_number": 10921991, + "transaction_hash": "0x7488379b2a307807ea2657ff193225b2409f06cb4bb22c1d88a94dcca60bf50d", + "transaction_index": 137, + "gas_used": 18446744073709551615, + "effective_gas_price": 75000000000, + "cumulative_gas_used": 0, + "to": "0x7e9e431a0b8c4d532c745b1043c7fa29a48d4fba" + }, + { + "block_number": 10921991, + "transaction_hash": "0x6a7fc1ba67c331db4dd89e8f33ee8ba220496784e42af358496f0ece279d4d62", + "transaction_index": 138, + "gas_used": 1, + "effective_gas_price": 74000001459, + "cumulative_gas_used": 1, + "to": "0x3ebcf7f093b5b0f9a005be0b503dfdb982a042a1" + }, + { + "block_number": 10921991, + "transaction_hash": "0x5632ab025fcf2c167358b1f76b4af97f9c8f9224263c7f210d7518ffef8dc05e", + "transaction_index": 139, + "gas_used": 0, + "effective_gas_price": 74000001459, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x0692d68ea00f94144820d190c47909766ec8488ba217844c9808ba3ad5eb10b3", + "transaction_index": 140, + "gas_used": 0, + "effective_gas_price": 74000001459, + "cumulative_gas_used": 1, + "to": "0x791963328239fa7bd763d5e275afd6707f1d7861" + }, + { + "block_number": 10921991, + "transaction_hash": "0xddacfa70bcbc2e3bca00c0c4398fb8a0f8f88ffb8f850fe1bba73881f17da15c", + "transaction_index": 141, + "gas_used": 0, + "effective_gas_price": 74000001459, + "cumulative_gas_used": 1, + "to": "0x2e4d380052c2db43cbed951e511db84aaa1b3c6e" + }, + { + "block_number": 10921991, + "transaction_hash": "0x485ed926a3a9ea5956a33d9daa1941c9332c1efbbc60e444335a3e508e787e15", + "transaction_index": 142, + "gas_used": 0, + "effective_gas_price": 74000001459, + "cumulative_gas_used": 1, + "to": "0x75202a27c4d5285f0a2428560b954f17489189b7" + }, + { + "block_number": 10921991, + "transaction_hash": "0xb5e017dc98ed514a198d29d9aa1fdbdac95fca4ca2b9239c07c96b1ad2a27f6c", + "transaction_index": 143, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x50dbdcf2232618d7ff9707206ae775256bb68e4cde71e20c629ec8f5b01e68f3", + "transaction_index": 144, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0x51dbda9c53da4806ac116097862ffa73caff7df1" + }, + { + "block_number": 10921991, + "transaction_hash": "0x16cb6ef1c313376e2bcd48da6d89d31afad902525b1a39082b777dfa79deba33", + "transaction_index": 145, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x0c9aad8afb31d66492c8988e0402d90bf787cf8e3c0c47da5e39d83235d33c46", + "transaction_index": 146, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0x23b88d66fa8df792fa1d607b559414c0fda61b6a" + }, + { + "block_number": 10921991, + "transaction_hash": "0x539154f50b41095a69d99a7e531a409ce6711230bdded84513b625e50008e27f", + "transaction_index": 147, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0x69ae0b74d23a741a25a6e997de6418f374a0cf4d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x69e1524be311eb441b1c7111bcb7a303bf1c1863dc42d48a27cdbbbaea276114", + "transaction_index": 148, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + { + "block_number": 10921991, + "transaction_hash": "0xf6e9aa8e675bf22538e5f435cae677e8a8fac1b844c6d568fc74fb82e5b7eeab", + "transaction_index": 149, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0xc90569e2c148691f426484d450cddb43d958f7ad402ed6ae0dc0647243c8b131", + "transaction_index": 150, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0x69ae0b74d23a741a25a6e997de6418f374a0cf4d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x030f0876122bf9d2ebc9637568f3f02ab5968cf66338f5abed535a5b21cc0e36", + "transaction_index": 151, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" + }, + { + "block_number": 10921991, + "transaction_hash": "0xa88b17e7804065a9afd888ec54b40dd0988086979c8b65cbcc7c63f2beb493bc", + "transaction_index": 152, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0x69ae0b74d23a741a25a6e997de6418f374a0cf4d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x085e0aaf3cca64dd7e9e8fda3210b40d2d3f2ce41cde094af8986ad0df4c72eb", + "transaction_index": 153, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0xcd915f504c29de63d6c35776013c18021cd4ae9925a1db7e015125bdd5e108c2", + "transaction_index": 154, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xef6d52940a818478956e10020ece697c2c127fea54713cbc2058bbf95a3d4fa1", + "transaction_index": 155, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x037cff14db0ba83c1fda9af9f6961ee5ddaad0e59bfb57658e5366961a6376f1", + "transaction_index": 156, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xe4f1f55cbf2b0a2e69e480d72c8b008f36286614ccfba26726e6bbd5c2accac9", + "transaction_index": 157, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0xf42e50d39b68751c2ac8251ecb6a205c402647d2" + }, + { + "block_number": 10921991, + "transaction_hash": "0x0d1fc181c30c2732a4c8f625d55c9a0bbc952bacbd66264bf2bab35f8bdbea26", + "transaction_index": 158, + "gas_used": 0, + "effective_gas_price": 74000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xa379d8bc56786567e729cc9589c001c29d74f4443263c924a4a777f1007f4aa1", + "transaction_index": 159, + "gas_used": 0, + "effective_gas_price": 73000001235, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0xff29b7d49444cbcb9a55c397190e09e42ebfcbdad9f02008b631ab0f9a828cb0", + "transaction_index": 160, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x1a64d8ae05ace2f163fb065f656b4dcba27caeccb05e4d3c3d9d41b8bb8ec9e3", + "transaction_index": 161, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66" + }, + { + "block_number": 10921991, + "transaction_hash": "0x83bc3657af694672f484072fca63648064427b292400f386109ce487e4fbe095", + "transaction_index": 162, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x88723d2dde5b7b88f0e7d49d8c2d26224adcfe98" + }, + { + "block_number": 10921991, + "transaction_hash": "0x562ef93582c930b94ef3f28b315c88b7bd81ba707ccfbc225ccc27199dff48b7", + "transaction_index": 163, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39" + }, + { + "block_number": 10921991, + "transaction_hash": "0x72634d8956a0c930b7a0b69920f20fddd1e84360137d69db768c42ec4c497ef4", + "transaction_index": 164, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0xbd17b1ce622d73bd438b9e658aca5996dc394b0d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x89c4487ab7d4e3b963a8d0f491afa6ff66a17f459be197489358942357735816", + "transaction_index": 165, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x1d53a13d78766c0db6ef73ec0ae1138ea2b6f5d4" + }, + { + "block_number": 10921991, + "transaction_hash": "0x8213591141619e9a2000eab737b259de5f36877db9f89549535043285ca9438d", + "transaction_index": 166, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0xee650cebbcaa74865ed55ad54a444ef2e8cce0f36de79f064f5b875696cb1333", + "transaction_index": 167, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x1f7f6e83fe7f5e9225fe440fb377e662a2859ae6" + }, + { + "block_number": 10921991, + "transaction_hash": "0x234234a62aaf46b67ada21ab191d0b24d9f997dfe78a3d92d7e647443f223ea1", + "transaction_index": 168, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x2205d2f559ef91580090011aa4e0ef68ec33da44" + }, + { + "block_number": 10921991, + "transaction_hash": "0x18ccbeb75795d799681c5793cdf45639561ba132290e4955ea0cdbe48655b05e", + "transaction_index": 169, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x2c988c3974ad7e604e276ae0294a7228def67974" + }, + { + "block_number": 10921991, + "transaction_hash": "0x70766b0380f4a7d2fa2e64457d60724c99103c4865f97f40c052287dec871a50", + "transaction_index": 170, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + { + "block_number": 10921991, + "transaction_hash": "0x21de503843c8ad425454085e7273ceb1fc5dc534350a12dae9e09a3840fe56c7", + "transaction_index": 171, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x37545b8f2b7a65667e12e574d8fe5a2fde39891f011365c9cbf6d86681f92004", + "transaction_index": 172, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x8af4bf8677106cebbedf46bfd7e757cdaf68c3d7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x1521c4008e0c810532a9a132d9920bacb52a7a9af3797b1144eb638ff0aa28a3", + "transaction_index": 173, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x345308aefab67028a4b8446890d4db018881ee237e960506436e4f48745b8d82", + "transaction_index": 174, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x6b175474e89094c44da98b954eedeac495271d0f" + }, + { + "block_number": 10921991, + "transaction_hash": "0x05eee02949040a340ff28c2c558f5a91d17e0ea5861db37de404aee67da40c9d", + "transaction_index": 175, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0xd55bd2c12b30075b325bc35aef0b46363b3818f8" + }, + { + "block_number": 10921991, + "transaction_hash": "0xa80a693a0c2e494f818e3fda9b1ff4c6c0612f179fefb488b6d2e3dd2ede16dc", + "transaction_index": 176, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8" + }, + { + "block_number": 10921991, + "transaction_hash": "0x6deb53d8bfb524f8c6a5381c4f6c65419ee8da843bdf2ebcd8f0e9bb7df35116", + "transaction_index": 177, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xc916d9d5a6e3ef116126d4cfda84dc4b1af4e90d6c73553d75923ff8a908173a", + "transaction_index": 178, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0x5b9ca858d653c17720ac9253e9401c233e0e92f1da7c23571922ca355c105d0b", + "transaction_index": 179, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10921991, + "transaction_hash": "0xd9f834f32e74a735653d5e48054f5f311e553db7ce6aa24a9a3826fddb3e4530", + "transaction_index": 180, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0xcc30be6f85b97bd3e9b8c582d0e28aa6a7b7485e" + }, + { + "block_number": 10921991, + "transaction_hash": "0x36191b21db16ef709b8bced661757dabf821e2aa632fda541593c37f5c62f359", + "transaction_index": 181, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0xcd4954d843cc5d7762799e450b05d84f5ce9a1d5" + }, + { + "block_number": 10921991, + "transaction_hash": "0xb84de3c333d820eb1c86b971e19d554a3e18ab998a6a1ab5ff6ac4efae7ee566", + "transaction_index": 182, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x6560f7209cb51ada2ca28de1756ee8cd13ac8a4a" + }, + { + "block_number": 10921991, + "transaction_hash": "0xd7395e26bb67b740593aa48b43877652f88ad6cb44f6ecfe09ec8623e3fc4760", + "transaction_index": 183, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xea9ca7b646ac93e2d5766fb0b57da2332e67fa3c0b3216cece0ce41c21117259", + "transaction_index": 184, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x5cfd4ee2886cf42c716be1e20847bda15547c693" + }, + { + "block_number": 10921991, + "transaction_hash": "0x72b4a9a7dbbc70e0854552116d6c7d0687c23fddb55cdfc775744ea1848d6cd4", + "transaction_index": 185, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xf9039e41c7349da4267954e1e425231946617b01e7c7dee26551d940a0988c19", + "transaction_index": 186, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xdd1c45110834c6ee14257a85af9c124bba83706693d5f6a41975d4c807d90eb1", + "transaction_index": 187, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x7ecdae008d1f677ac84b5b392ee83923b318800e799d9476491b3f284ffd1de7", + "transaction_index": 188, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x03bb2b430b354d1a911088228c834a6d0ac824fb053da4618413820a4217ed36", + "transaction_index": 189, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x77fd7b16bbb7bf9b71e40dae962f729ebad0943443ec909556c5c536fb170ad8", + "transaction_index": 190, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x13a0efa983f852fdf4ec4dfef56898deb25fb5e61fc3ac05851174fc7d22fa46", + "transaction_index": 191, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x06012c8cf97bead5deae237070f9587f8e7a266d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x1a3a1ea2911a25b4cf69d9bbb96992882948c2d6f178484a1d3bcec08eb7ec79", + "transaction_index": 192, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x0aeee23d16084d763e7a65577020c1f3d18804f2" + }, + { + "block_number": 10921991, + "transaction_hash": "0x4cea26f3ecd3fa51651dad3702f24f120943fc1c2aab7e179fd43faed92db4ed", + "transaction_index": 193, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0xe89fc0c9a81bc25954884fb747c93df9e269d1555e36bdfaa7a5f0906a294006", + "transaction_index": 194, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x9a54fe35d41bc7c8f7071abf0ccd952505e29ceb" + }, + { + "block_number": 10921991, + "transaction_hash": "0xcba28c7a8fa8ef6d7a073ff10c465eb1706c490cbdb8e7c0ec49ef13c62031bc", + "transaction_index": 195, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10921991, + "transaction_hash": "0x9174bf6580f95802a9794c0964a55d79f44f8b18f480cee3fcf39905d0720b00", + "transaction_index": 196, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0x042afd3869a47e2d5d42cc787d5c9e19df32185f" + }, + { + "block_number": 10921991, + "transaction_hash": "0xf9b3e50a311aa87490eb9f15556a1223d8d11ebd1b2db28b55c66a1d63405f7f", + "transaction_index": 197, + "gas_used": 0, + "effective_gas_price": 73000000000, + "cumulative_gas_used": 1, + "to": "0xc2a75aea69b9d92e97aee109b76fa9cb09a384ac" + } + ] +} \ No newline at end of file diff --git a/tests/test_block.py b/tests/test_block.py new file mode 100644 index 00000000..6e55f884 --- /dev/null +++ b/tests/test_block.py @@ -0,0 +1,65 @@ +from unittest.mock import MagicMock, patch + +import pytest + +from mev_inspect.block import _find_or_fetch_miner_address +from tests.utils import load_test_block + + +@pytest.fixture +def mocked_web3(): + with patch("mev_inspect.block.Web3") as mock_web3: + yield mock_web3 + + +@pytest.mark.asyncio +# pylint: disable=redefined-outer-name +async def test_eth1_block_miner(mocked_web3): + # Create a mock Web3 instance + mock_web3_instance = mocked_web3.return_value + + # Set up the mock for web3.eth.get_block + mock_eth = mock_web3_instance.eth + mock_eth.get_block.return_value = { + "miner": "0x4a536c1f6a5d5a9c1aeca9f6d04fbbf5f0d8f4e3" + } + + # Load a sample block and remove the miner + block_number = 10921991 + block = load_test_block(block_number) + block.miner = None + + # Test that the miner is fetched + miner_address = await _find_or_fetch_miner_address( + w3=mock_web3_instance, traces=block.traces, block_number=block_number + ) # Use 'await' + + # this is within the traces object + assert miner_address == "0x52bc44d5378309ee2abf1539bf71de1b7d7be3b5" + + +@pytest.mark.asyncio +# pylint: disable=redefined-outer-name +async def test_eth2_block_miner(mocked_web3): + # Create a mock Web3 instance + mock_web3_instance = mocked_web3.return_value + + # Create a coroutine function to mock w3.eth.get_block + # pylint: disable=unused-argument + async def mock_get_block(block_number): + return {"miner": "0x4a536c1f6a5d5a9c1aeca9f6d04fbbf5f0d8f4e3"} + + # Mock w3.eth.get_block with the coroutine function + mock_web3_instance.eth.get_block = MagicMock(side_effect=mock_get_block) + + # Load a sample block and remove the miner + block_number = 10921990 + block = load_test_block(block_number) + block.miner = None + + # Test that the miner is fetched + miner_address = await _find_or_fetch_miner_address( + w3=mock_web3_instance, traces=block.traces, block_number=block_number + ) # Use 'await' + + assert miner_address == "0x4a536c1f6a5d5a9c1aeca9f6d04fbbf5f0d8f4e3" diff --git a/tests/utils.py b/tests/utils.py index ec843d59..4ba537d3 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -2,8 +2,6 @@ import os from typing import Dict, List -from pydantic import parse_file_as - from mev_inspect.schemas.blocks import Block from mev_inspect.schemas.sandwiches import Sandwich @@ -14,7 +12,10 @@ def load_test_sandwiches(block_number: int) -> List[Sandwich]: sandwiches_path = f"{TEST_SANDWICHES_DIRECTORY}/{block_number}.json" - return parse_file_as(List[Sandwich], sandwiches_path) + + with open(sandwiches_path, "r") as file: + sandwiches_data = json.load(file) + return [Sandwich(**sandwich) for sandwich in sandwiches_data] def load_test_block(block_number: int) -> Block: